func bytes.IndexByte

29 uses

	bytes (current package)
		buffer.go#L440: 	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#L1311: 		return IndexByte(s, sep[0])
		bytes.go#L1333: 				o := IndexByte(s[i+1:t], c0)
		bytes.go#L1362: 			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#L359: 	if i := bytes.IndexByte(data, '\n'); i >= 0 {

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

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

	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#L58: 	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)

	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#L3302: 	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#L605: 	if bytes.IndexByte(line, ':') < 0 {

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

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