const math.MaxUint32
22 uses
math (current package)
const.go#L55: MaxUint32 = 1<<32 - 1
math/big
float.go#L99: MaxPrec = math.MaxUint32 // largest (theoretically) supported precision; likely memory-limited
github.com/vmihailenco/msgpack/v5
encode_number.go#L118: if n <= math.MaxUint32 {
intern.go#L92: if uint64(idx) <= math.MaxUint32 {
go.pact.im/x/crypt
argon2.go#L107: if n <= 0 || n > math.MaxUint32 {
golang.org/x/net/http2
server.go#L420: clientMaxStreams: math.MaxUint32, // Section 6.5.2: "Initially, there is no limit to this value"
google.golang.org/grpc
rpc_util.go#L600: if uint(len(b)) > math.MaxUint32 {
google.golang.org/grpc/internal/transport
http2_client.go#L1223: *maxStreams = math.MaxUint32
http2_client.go#L1312: upperLimit = math.MaxUint32 // Kill all streams after the GoAway ID.
http2_server.go#L174: maxStreams = math.MaxUint32
http2_server.go#L1362: if err := t.framer.fr.WriteGoAway(math.MaxUint32, http2.ErrCodeNo, []byte{}); err != nil {
google.golang.org/protobuf/internal/impl
codec_gen.go#L1026: *p.Int32() = int32(protowire.DecodeZigZag(v & math.MaxUint32))
codec_gen.go#L1106: **vp = int32(protowire.DecodeZigZag(v & math.MaxUint32))
codec_gen.go#L1161: s = append(s, int32(protowire.DecodeZigZag(v&math.MaxUint32)))
codec_gen.go#L1185: *sp = append(*sp, int32(protowire.DecodeZigZag(v&math.MaxUint32)))
codec_gen.go#L1267: return protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))), out, nil
codec_gen.go#L1321: list.Append(protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))))
codec_gen.go#L1344: list.Append(protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))))
google.golang.org/protobuf/proto
decode_gen.go#L59: return protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))), n, nil
decode_gen.go#L283: list.Append(protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))))
decode_gen.go#L294: list.Append(protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))))
net/http
h2_bundle.go#L4093: clientMaxStreams: math.MaxUint32, // Section 6.5.2: "Initially, there is no limit to this value"