func bytes.IndexByte

39 uses

	bytes (current package)
		buffer.go#L419: 	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#L1204: 		return IndexByte(s, sep[0])
		bytes.go#L1226: 				o := IndexByte(s[i+1:t], c0)
		bytes.go#L1255: 			o := IndexByte(s[i+1:t], c0)

	bufio
		bufio.go#L346: 		if i := bytes.IndexByte(b.buf[b.r+s:b.w], delim); i >= 0 {
		scan.go#L355: 	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')

	github.com/aws/aws-sdk-go-v2/internal/sync/singleflight
		singleflight.go#L38: 	if line := bytes.IndexByte(stack[:], '\n'); line >= 0 {

	github.com/aws/smithy-go/internal/sync/singleflight
		singleflight.go#L38: 	if line := bytes.IndexByte(stack[:], '\n'); line >= 0 {

	github.com/go-pg/pg/v10/internal/parser
		parser.go#L73: 	ind := bytes.IndexByte(p.b[p.i:], sep)
		parser.go#L88: 		if ind := bytes.IndexByte(p.b[s:], ')'); ind != -1 {

	github.com/go-pg/pg/v10/internal/pool
		reader_buf.go#L201: 		if i := bytes.IndexByte(b.Bytes(), delim); i >= 0 {
		reader_bytes.go#L64: 	if i := bytes.IndexByte(r.s[r.i:], delim); i >= 0 {

	github.com/go-pg/pg/v10/orm
		format.go#L228: 	if (params == nil && !f.hasParams()) || bytes.IndexByte(query, '?') == -1 {

	github.com/vmihailenco/bufpool
		buffer.go#L355: 	i := bytes.IndexByte(b.buf[b.off:], delim)

	github.com/vmihailenco/tagparser/internal/parser
		parser.go#L72: 	ind := bytes.IndexByte(p.b[p.i:], sep)

	github.com/vmihailenco/tagparser/v2/internal/parser
		parser.go#L72: 	ind := bytes.IndexByte(p.b[p.i:], sep)

	go.pact.im/x/phcformat
		params.go#L45: 	j := bytes.IndexByte([]byte(s), ',')

	go/build
		build.go#L1544: 			if i := bytes.IndexByte(line, '\n'); i >= 0 {
		build.go#L1577: 		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#L60: 	if i := bytes.IndexByte(s, 0); i != -1 {
		syscall_unix.go#L90: 	i := bytes.IndexByte(n, 0)

	golang.org/x/tools/txtar
		archive.go#L121: 	if i := bytes.IndexByte(data, '\n'); i >= 0 {

	google.golang.org/protobuf/internal/encoding/text
		decode.go#L643: 			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#L51: 		i := k + bytes.IndexByte(s[k:], '<')
		transition.go#L236: 			if len(s) > 0 && bytes.IndexByte(tagEndSeparators, s[0]) != -1 {

	mellium.im/sasl
		scram.go#L281: 	idx := bytes.IndexByte(params, ',')

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

	net/http/internal
		chunked.go#L65: 		return bytes.IndexByte(peek, '\n') >= 0

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

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

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