func bytes.IndexByte

47 uses

	bytes (current package)
		buffer.go#L446: 	i := IndexByte(b.buf[b.off:], delim)
		bytes.go#L97: func IndexByte(b []byte, c byte) int {
		bytes.go#L143: 		return IndexByte(s, byte(r))
		bytes.go#L166: 				o := IndexByte(s[i+1:], b[last])
		bytes.go#L1318: 		return IndexByte(s, sep[0])
		bytes.go#L1340: 				o := IndexByte(s[i+1:t], c0)
		bytes.go#L1369: 			o := IndexByte(s[i+1:t], c0)
		iter.go#L22: 			if i := IndexByte(s, '\n'); i >= 0 {

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

	crypto/internal/fips140/rsa
		pkcs1v22.go#L201: 		psLen := bytes.IndexByte(db, 0x01)

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

	github.com/jackc/pgx/v5/pgconn
		auth_scram.go#L251: 	idx := bytes.IndexByte(buf, ',')
		auth_scram.go#L263: 	idx = bytes.IndexByte(buf, ',')

	github.com/jackc/pgx/v5/pgproto3
		authentication_sasl.go#L39: 		idx := bytes.IndexByte(authMechanisms, 0)
		bind.go#L31: 	idx := bytes.IndexByte(src, 0)
		bind.go#L38: 	idx = bytes.IndexByte(src[rp:], 0)
		close.go#L27: 	idx := bytes.IndexByte(src[rp:], 0)
		command_complete.go#L18: 	idx := bytes.IndexByte(src, 0)
		copy_fail.go#L22: 	idx := bytes.IndexByte(src, 0)
		describe.go#L27: 	idx := bytes.IndexByte(src[rp:], 0)
		query.go#L22: 	i := bytes.IndexByte(src, 0)
		row_description.go#L70: 		idx := bytes.IndexByte(src[rp:], 0)
		sasl_initial_response.go#L27: 	idx := bytes.IndexByte(src, 0)
		startup_message.go#L43: 		idx := bytes.IndexByte(src[rp:], 0)
		startup_message.go#L50: 		idx = bytes.IndexByte(src[rp:], 0)

	github.com/jackc/pgx/v5/pgtype
		inet.go#L184: 	if bytes.IndexByte(src, '/') == -1 {
		tsvector.go#L213: 		nullIndex := bytes.IndexByte(src[rp:], 0x00)

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

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

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

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

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

	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#L54: 		i := k + bytes.IndexByte(s[k:], '<')
		transition.go#L244: 			if len(s) > 0 && bytes.IndexByte(tagEndSeparators, s[0]) != -1 {

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

	net/http/internal
		chunked.go#L92: 		return bytes.IndexByte(peek, '\n') >= 0
		chunked.go#L173: 	if idx := bytes.IndexByte(p, '\r'); idx == -1 {

	net/textproto
		reader.go#L610: 	if bytes.IndexByte(line, ':') < 0 {

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

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