func bytes.IndexByte

15 uses

	bytes (current package)
		buffer.go#L440: 	i := IndexByte(b.buf[b.off:], delim)
		bytes.go#L96: func IndexByte(b []byte, c byte) int {
		bytes.go#L141: 		return IndexByte(s, byte(r))
		bytes.go#L1256: 		return IndexByte(s, sep[0])
		bytes.go#L1278: 				o := IndexByte(s[i+1:t], c0)
		bytes.go#L1307: 			o := IndexByte(s[i+1:t], c0)

	bufio
		bufio.go#L351: 		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/rsa
		pss.go#L162: 		psLen := bytes.IndexByte(db, 0x01)

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

	net/http
		h2_bundle.go#L3139: 	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 {