func bytes.IndexByte

18 uses

	bytes (current package)
		buffer.go#L458: 	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#L1287: 		return IndexByte(s, sep[0])
		bytes.go#L1309: 				o := IndexByte(s[i+1:t], c0)
		bytes.go#L1338: 			o := IndexByte(s[i+1:t], c0)
		iter.go#L22: 			if i := IndexByte(s, '\n'); i >= 0 {

	bufio
		bufio.go#L352: 		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#L202: 		psLen := bytes.IndexByte(db, 0x01)

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

	github.com/go-faster/jx
		dec_float.go#L309: 	dotPos := bytes.IndexByte(str, '.')

	golang.org/x/sync/singleflight
		singleflight.go#L49: 	if line := bytes.IndexByte(stack[:], '\n'); line >= 0 {

	net/http
		h2_bundle.go#L3369: 	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#L611: 	if bytes.IndexByte(line, ':') < 0 {