func math/bits.Len32

8 uses

	math/bits (current package)
		bits.go#L34: func LeadingZeros32(x uint32) int { return 32 - Len32(x) }
		bits.go#L304: 		return Len32(uint32(x))
		bits.go#L324: func Len32(x uint32) (n int) {

	google.golang.org/protobuf/internal/encoding/json
		encode.go#L117: 				out = append(out, "0000"[1+(bits.Len32(uint32(r))-1)/4:]...)

	google.golang.org/protobuf/internal/encoding/text
		encode.go#L142: 				out = append(out, "00"[1+(bits.Len32(uint32(r))-1)/4:]...)
		encode.go#L150: 				out = append(out, "0000"[1+(bits.Len32(uint32(r))-1)/4:]...)
		encode.go#L154: 				out = append(out, "00000000"[1+(bits.Len32(uint32(r))-1)/4:]...)

	strconv
		ftoaryu.go#L34: 	if b := bits.Len32(mant); b < 25 {