func bytes.IndexByte
23 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 {
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, ':')
golang.org/x/sys/unix
syscall_unix.go#L91: i := bytes.IndexByte(n, 0)
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')