func bytes.IndexByte

79 uses

	bytes (current package)
		buffer.go#L418: 	i := IndexByte(b.buf[b.off:], delim)
		bytes.go#L90: func IndexByte(b []byte, c byte) int {
		bytes.go#L158: 		return IndexByte(s, byte(r))
		bytes.go#L1097: 		return IndexByte(s, sep[0])
		bytes.go#L1119: 				o := IndexByte(s[i+1:t], c0)
		bytes.go#L1148: 			o := IndexByte(s[i+1:t], c0)

	bufio
		bufio.go#L335: 		if i := bytes.IndexByte(b.buf[b.r+s:b.w], delim); i >= 0 {
		scan.go#L354: 	if i := bytes.IndexByte(data, '\n'); i >= 0 {

	cloud.google.com/go/errorreporting
		errors.go#L216: 	lfFirst := bytes.IndexByte(s, '\n')
		errors.go#L227: 		nextLine := bytes.IndexByte(stack, '\n')

	crypto/rsa
		pss.go#L162: 		psLen := bytes.IndexByte(db, 0x01)

	encoding/pem
		pem.go#L39: 	i := bytes.IndexByte(data, '\n')
		pem.go#L117: 		i := bytes.IndexByte(line, ':')

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L2220: 	dot := bytes.IndexByte(result, '.')

	github.com/evanw/esbuild/internal/sourcemap
		sourcemap.go#L119: 		index := bytes.IndexByte(base64, encoded[start])
		sourcemap.go#L157: 		index := bytes.IndexByte(base64, byte(encoded[current]))

	github.com/go-git/go-git/v5/plumbing/object
		object.go#L125: 	space := bytes.IndexByte(b, ' ')

	github.com/go-git/go-git/v5/plumbing/protocol/packp
		updreq_decode.go#L172: 	i := bytes.IndexByte(b, 0)

	github.com/google/licensecheck
		scan.go#L195: 			if i := bytes.IndexByte(text[end:next], '\n'); i >= 0 {

	github.com/google/pprof/profile
		legacy_java_profile.go#L113: 	nextNewLine := bytes.IndexByte(b, byte('\n'))
		legacy_java_profile.go#L159: 		nextNewLine = bytes.IndexByte(b, byte('\n'))
		legacy_java_profile.go#L168: 	nextNewLine := bytes.IndexByte(b, byte('\n'))
		legacy_java_profile.go#L230: 		nextNewLine = bytes.IndexByte(b, byte('\n'))

	github.com/google/safehtml/template
		transition.go#L35: 		i := k + bytes.IndexByte(s[k:], '<')
		transition.go#L228: 			if len(s) > 0 && bytes.IndexByte(tagEndSeparators, s[0]) != -1 {

	github.com/jackc/pgconn
		auth_scram.go#L167: 	idx := bytes.IndexByte(buf, ',')
		auth_scram.go#L179: 	idx = bytes.IndexByte(buf, ',')

	github.com/jackc/pgproto3/v2
		authentication_sasl.go#L34: 		idx := bytes.IndexByte(authMechanisms, 0)
		bind.go#L28: 	idx := bytes.IndexByte(src, 0)
		bind.go#L35: 	idx = bytes.IndexByte(src[rp:], 0)
		close.go#L28: 	idx := bytes.IndexByte(src[rp:], 0)
		command_complete.go#L20: 	idx := bytes.IndexByte(src, 0)
		copy_fail.go#L20: 	idx := bytes.IndexByte(src, 0)
		describe.go#L28: 	idx := bytes.IndexByte(src[rp:], 0)
		query.go#L20: 	i := bytes.IndexByte(src, 0)
		row_description.go#L69: 		idx := bytes.IndexByte(src[rp:], 0)
		sasl_initial_response.go#L27: 	idx := bytes.IndexByte(src, 0)
		startup_message.go#L39: 		idx := bytes.IndexByte(src[rp:], 0)
		startup_message.go#L46: 		idx = bytes.IndexByte(src[rp:], 0)

	github.com/kevinburke/ssh_config
		config.go#L319: 	return bytes.IndexByte(specialBytes, b) >= 0

	github.com/lib/pq
		buf.go#L32: 	i := bytes.IndexByte(*b, 0)
		encode.go#L545: 				i := bytes.IndexByte(s, '\\')

	github.com/russross/blackfriday/v2
		block.go#L731: 		newlinePos := bytes.IndexByte(block.content, '\n')
		block.go#L1564: 		nl := bytes.IndexByte(data[i:], '\n')
		inline.go#L670: 		if bytes.IndexByte(escapeChars, data[1]) < 0 {
		inline.go#L1000: 	i += bytes.IndexByte(data[i:], '>')

	github.com/yuin/goldmark/extension
		linkify.go#L253: 		at := bytes.IndexByte(line, '@')
		linkify.go#L255: 		if m == nil || bytes.IndexByte(line[m[2]:m[3]], '.') < 0 {

	github.com/yuin/goldmark/parser
		fcode_block.go#L58: 			if fenceChar == '`' && bytes.IndexByte(value, '`') > -1 {

	go/build
		build.go#L1516: 		if i := bytes.IndexByte(line, '\n'); i >= 0 {
		build.go#L1560: 		if i := bytes.IndexByte(line, '\n'); i >= 0 {

	golang.org/x/crypto/ssh
		keys.go#L125: 		end := bytes.IndexByte(in, '\n')
		keys.go#L133: 		end = bytes.IndexByte(in, '\r')
		keys.go#L185: 		end := bytes.IndexByte(in, '\n')
		keys.go#L193: 		end = bytes.IndexByte(in, '\r')

	golang.org/x/mod/modfile
		read.go#L928: 		if i := bytes.IndexByte(line, '\n'); i >= 0 {

	golang.org/x/net/http2
		gotrack.go#L58: 	i := bytes.IndexByte(b, ' ')

	golang.org/x/net/trace
		trace.go#L940: 		dot := bytes.IndexByte(b, '.')

	golang.org/x/sys/unix
		syscall.go#L61: 	if i := bytes.IndexByte(s, 0); i != -1 {
		syscall_unix.go#L91: 	i := bytes.IndexByte(n, 0)

	golang.org/x/text/internal/language
		parse.go#L56: 	n := bytes.IndexByte(e.v[:], 0)
		parse.go#L186: 		i := bytes.IndexByte(s.b[s.next:], '-')

	golang.org/x/tools/txtar
		archive.go#L121: 	if i := bytes.IndexByte(data, '\n'); i >= 0 {

	google.golang.org/protobuf/internal/encoding/text
		decode.go#L644: 			if i := bytes.IndexByte(b, '\n'); i >= 0 {

	html/template
		css.go#L59: 	i := bytes.IndexByte(s, '\\')
		css.go#L68: 		i := bytes.IndexByte(s, '\\')
		transition.go#L51: 		i := k + bytes.IndexByte(s[k:], '<')
		transition.go#L236: 			if len(s) > 0 && bytes.IndexByte(tagEndSeparators, s[0]) != -1 {

	net/http
		h2_bundle.go#L2914: 	i := bytes.IndexByte(b, ' ')

	net/http/internal
		chunked.go#L65: 		return bytes.IndexByte(peek, '\n') >= 0
		chunked.go#L162: 	semi := bytes.IndexByte(p, ';')

	net/textproto
		reader.go#L511: 		i := bytes.IndexByte(kv, ':')
		reader.go#L558: 	if bytes.IndexByte(line, ':') < 0 {
		reader.go#L575: 		i := bytes.IndexByte(peek, '\n')

	regexp
		regexp.go#L671: 	if bytes.IndexByte(repl, '$') >= 0 {

	runtime/pprof
		proto.go#L614: 		j := bytes.IndexByte(line, ' ')
		proto.go#L629: 		i := bytes.IndexByte(data, '\n')
		proto.go#L636: 		i = bytes.IndexByte(addr, '-')

	testing
		testing.go#L607: 		end := bytes.IndexByte(b, '\n')