const unicode/utf8.RuneSelf

89 uses

	unicode/utf8 (current package)
		utf8.go#L17: 	RuneSelf  = 0x80         // characters below RuneSelf are represented as themselves in a single byte.
		utf8.go#L162: 		if b < RuneSelf {
		utf8.go#L223: 	if s != "" && s[0] < RuneSelf {
		utf8.go#L286: 	if r < RuneSelf {
		utf8.go#L323: 	if r < RuneSelf {
		utf8.go#L438: 		if c := p[n]; c >= RuneSelf {
		utf8.go#L478: 		if p0 < RuneSelf {
		utf8.go#L525: 		if s0 < RuneSelf {

	bufio
		bufio.go#L717: 	if uint32(r) < utf8.RuneSelf {
		scan.go#L318: 	if data[0] < utf8.RuneSelf {

	bytes
		buffer.go#L319: 	if uint32(r) < utf8.RuneSelf {
		buffer.go#L398: 	if c < utf8.RuneSelf {
		bytes.go#L142: 	case 0 <= r && r < utf8.RuneSelf:
		bytes.go#L228: 		if r >= utf8.RuneSelf {
		bytes.go#L244: 		if r >= utf8.RuneSelf {
		bytes.go#L262: 		if r < utf8.RuneSelf {
		bytes.go#L316: 		if r >= utf8.RuneSelf {
		bytes.go#L331: 		if cr >= utf8.RuneSelf {
		bytes.go#L345: 		if r < utf8.RuneSelf {
		bytes.go#L472: 	if setBits >= utf8.RuneSelf {
		bytes.go#L693: 		if c >= utf8.RuneSelf {
		bytes.go#L724: 		if c >= utf8.RuneSelf {
		bytes.go#L776: 		if c < utf8.RuneSelf {
		bytes.go#L859: 	if i >= 0 && s[i] >= utf8.RuneSelf {
		bytes.go#L927: 		if r >= utf8.RuneSelf {
		bytes.go#L953: 		if c >= utf8.RuneSelf {
		bytes.go#L988: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		bytes.go#L1007: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		bytes.go#L1062: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		bytes.go#L1091: 		if r >= utf8.RuneSelf {
		bytes.go#L1107: 		if c >= utf8.RuneSelf {
		bytes.go#L1119: 			if c >= utf8.RuneSelf {
		bytes.go#L1212: 		if sr|tr >= utf8.RuneSelf {
		bytes.go#L1256: 		if tr < utf8.RuneSelf {
		iter.go#L90: 			if r >= utf8.RuneSelf {
		reader.go#L93: 	if c := r.s[r.i]; c < utf8.RuneSelf {

	encoding/asn1
		asn1.go#L453: 		if b >= utf8.RuneSelf {
		marshal.go#L644: 				if r >= utf8.RuneSelf || !isPrintable(byte(r), rejectAsterisk, rejectAmpersand) {

	encoding/json
		decode.go#L1288: 		case c < utf8.RuneSelf:
		encode.go#L1003: 		if b := src[i]; b < utf8.RuneSelf {
		fold.go#L25: 		if c := in[i]; c < utf8.RuneSelf {
		tables.go#L17: var safeSet = [utf8.RuneSelf]bool{
		tables.go#L123: var htmlSafeSet = [utf8.RuneSelf]bool{

	fmt
		scan.go#L341: 	if r.buf[0] < utf8.RuneSelf { // fast check for common ASCII case

	github.com/go-faster/jx
		w_str_escape.go#L16: var htmlSafeSet = [utf8.RuneSelf]bool{
		w_str_escape.go#L135: 		if c >= utf8.RuneSelf || !(htmlSafeSet[c]) {
		w_str_escape.go#L150: 		if b := v[i]; b < utf8.RuneSelf {

	go.opentelemetry.io/otel/attribute
		value.go#L921: 		if c := s[i]; c < utf8.RuneSelf {

	go.opentelemetry.io/otel/trace
		auto.go#L418: 		if c < utf8.RuneSelf {

	mime
		encodedword.go#L325: 			if c >= utf8.RuneSelf {

	net/http
		http.go#L142: 		if s[i] >= utf8.RuneSelf {
		http.go#L154: 		if s[i] >= utf8.RuneSelf {

	reflect
		type.go#L2200: 	return 'a' <= ch && ch <= 'z' || 'A' <= ch && ch <= 'Z' || ch == '_' || ch >= utf8.RuneSelf && unicode.IsLetter(ch)

	strconv
		quote.go#L71: 		if r < utf8.RuneSelf && IsPrint(r) {
		quote.go#L265: 	case c >= utf8.RuneSelf:
		quote.go#L465: 				if r < utf8.RuneSelf || !multibyte {

	strings
		iter.go#L90: 			if r >= utf8.RuneSelf {
		strings.go#L130: 	case 0 <= r && r < utf8.RuneSelf:
		strings.go#L209: 		if r >= utf8.RuneSelf {
		strings.go#L242: 		if rc >= utf8.RuneSelf {
		strings.go#L262: 		if rc >= utf8.RuneSelf {
		strings.go#L399: 	if setBits >= utf8.RuneSelf {
		strings.go#L579: 			if r < utf8.RuneSelf {
		strings.go#L691: 		if c >= utf8.RuneSelf {
		strings.go#L731: 		if c >= utf8.RuneSelf {
		strings.go#L815: 		if c < utf8.RuneSelf {
		strings.go#L967: 		if c >= utf8.RuneSelf {
		strings.go#L986: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		strings.go#L1003: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		strings.go#L1048: 	if len(cutset) == 1 && cutset[0] < utf8.RuneSelf {
		strings.go#L1077: 		if r >= utf8.RuneSelf {
		strings.go#L1094: 		if c >= utf8.RuneSelf {
		strings.go#L1106: 			if c >= utf8.RuneSelf {
		strings.go#L1193: 		if sr|tr >= utf8.RuneSelf {
		strings.go#L1240: 		if tr < utf8.RuneSelf {

	vendor/golang.org/x/net/http/httpguts
		httplex.go#L96: 	return r < utf8.RuneSelf && isTokenTable[byte(r)]
		httplex.go#L158: 		if b >= utf8.RuneSelf {
		httplex.go#L315: 		if s[i] >= utf8.RuneSelf {

	vendor/golang.org/x/net/http/httpproxy
		proxy.go#L317: 		if s[i] >= utf8.RuneSelf {

	vendor/golang.org/x/net/idna
		idna10.0.0.go#L764: 		if s[i] >= utf8.RuneSelf {

	vendor/golang.org/x/text/secure/bidirule
		bidirule.go#L261: 		if s[n] < utf8.RuneSelf {
		bidirule.go#L303: 		if s[n] < utf8.RuneSelf {

	vendor/golang.org/x/text/transform
		transform.go#L509: 		if r = rune(src[0]); r < utf8.RuneSelf {

	vendor/golang.org/x/text/unicode/norm
		input.go#L41: 		for ; p < max && in.str[p] < utf8.RuneSelf; p++ {
		input.go#L44: 		for ; p < max && in.bytes[p] < utf8.RuneSelf; p++ {
		iter.go#L135: 	if i.rb.src.bytes[p] < utf8.RuneSelf {
		iter.go#L152: 	if i.rb.src.str[p] < utf8.RuneSelf {
		iter.go#L236: 			} else if i.rb.src._byte(i.p) < utf8.RuneSelf {
		iter.go#L392: 		} else if i.rb.src._byte(i.p) < utf8.RuneSelf {