const math.MaxUint32

29 uses

	math (current package)
		const.go#L55: 	MaxUint32 = 1<<32 - 1           // 4294967295

	math/big
		float.go#L99: 	MaxPrec = math.MaxUint32 // largest (theoretically) supported precision; likely memory-limited

	github.com/andybalholm/brotli
		backward_references_hq.go#L522: 	nodes[index].u.next = math.MaxUint32
		backward_references_hq.go#L540: 	for i = 0; offset != math.MaxUint32; i++ {
		block_splitter_command.go#L189: var clusterBlocksCommand_kInvalidIndex uint32 = math.MaxUint32
		block_splitter_distance.go#L189: var clusterBlocksDistance_kInvalidIndex uint32 = math.MaxUint32
		block_splitter_literal.go#L189: var clusterBlocksLiteral_kInvalidIndex uint32 = math.MaxUint32
		cluster_distance.go#L215: var histogramReindexDistance_kInvalidIndex uint32 = math.MaxUint32
		cluster_literal.go#L215: var histogramReindexLiteral_kInvalidIndex uint32 = math.MaxUint32
		encode.go#L538: 	s.remaining_metadata_bytes_ = math.MaxUint32
		encode.go#L1098: 				s.remaining_metadata_bytes_ = math.MaxUint32
		encode.go#L1140: 	if s.remaining_metadata_bytes_ != math.MaxUint32 {
		entropy_encode.go#L133: 	initHuffmanTree(&sentinel, math.MaxUint32, -1, -1)

	github.com/gotd/td/session/tdesktop
		file.go#L169: 	if uint64(length) > uint64(math.MaxUint32) {

	github.com/klauspost/compress/zstd
		frameenc.go#L127: 	if int64(total) > math.MaxUint32 {
		fse_encoder.go#L637: 		return math.MaxUint32
		fse_encoder.go#L641: 		return math.MaxUint32
		fse_encoder.go#L651: 			return math.MaxUint32
		fse_encoder.go#L655: 			return math.MaxUint32

	github.com/refraction-networking/utls
		u_quic_transport_parameters.go#L265: 	max := big.NewInt(math.MaxUint32)
		u_quic_transport_parameters.go#L271: 	return uint32(randVal.Uint64()&math.MaxUint32) | 0x0a0a0a0a // all GREASE versions are in 0x?a?a?a?a

	go.opentelemetry.io/otel/trace
		auto.go#L114: 			span.DroppedLinks = uint32(min(n, math.MaxUint32)) // nolint: gosec  // Bounds checked.
		auto.go#L119: 			span.DroppedLinks = uint32(min(n, math.MaxUint32)) // nolint: gosec  // Bounds checked.
		auto.go#L229: 			s.span.DroppedAttrs += uint32(min(n, math.MaxUint32)) // nolint: gosec  // Bounds checked.
		auto.go#L270: 			out = uint32(min(int64(n), math.MaxUint32)) // nolint: gosec  // Bounds checked.

	net/http
		h2_bundle.go#L1120: 	http2setDefault(&conf.MaxConcurrentStreams, 1, math.MaxUint32, http2defaultMaxStreams)
		h2_bundle.go#L1121: 	http2setDefault(&conf.MaxEncoderHeaderTableSize, 1, math.MaxUint32, http2initialHeaderTableSize)
		h2_bundle.go#L1122: 	http2setDefault(&conf.MaxDecoderHeaderTableSize, 1, math.MaxUint32, http2initialHeaderTableSize)
		h2_bundle.go#L4430: 		clientMaxStreams:            math.MaxUint32, // Section 6.5.2: "Initially, there is no limit to this value"