func strings.IndexByte

20 uses

	strings (current package)
		iter.go#L22: 			if i := IndexByte(s, '\n'); i >= 0 {
		strings.go#L119: func IndexByte(s string, c byte) int {
		strings.go#L131: 		return IndexByte(s, byte(r))
		strings.go#L151: 				o := IndexByte(s[i+1:], rs[last])

	crypto/x509
		constraints.go#L618: 	firstDotInd := strings.IndexByte(dnsName, '.')

	go.uber.org/multierr
		error.go#L288: 		idx := strings.IndexByte(s, '\n')

	golang.org/x/sys/cpu
		cpu.go#L280: 		i := strings.IndexByte(env, ',')
		cpu.go#L289: 		i = strings.IndexByte(field, '=')

	net/http
		pattern.go#L111: 	i := strings.IndexByte(rest, '/')
		pattern.go#L117: 	if j := strings.IndexByte(p.host, '{'); j >= 0 {
		pattern.go#L140: 		i := strings.IndexByte(rest, '/')
		pattern.go#L146: 		if i := strings.IndexByte(seg, '{'); i < 0 {
		routing_tree.go#L210: 	i := strings.IndexByte(path, '/')

	net/http/internal/httpcommon
		httpcommon.go#L341: 						p := strings.IndexByte(v, ';')
		httpcommon.go#L590: 	if strings.IndexByte(rp.Authority, '@') != -1 && (rp.Scheme == "http" || rp.Scheme == "https") {

	vendor/golang.org/x/net/http/httpguts
		httplex.go#L135: 	for comma := strings.IndexByte(v, ','); comma != -1; comma = strings.IndexByte(v, ',') {

	vendor/golang.org/x/net/idna
		idna10.0.0.go#L568: 	p := strings.IndexByte(l.orig[l.curStart:], '.')

	vendor/golang.org/x/sys/cpu
		cpu.go#L275: 		i := strings.IndexByte(env, ',')
		cpu.go#L284: 		i = strings.IndexByte(field, '=')