const math.MaxUint16

13 uses

	math (current package)
		const.go#L54: 	MaxUint16 = 1<<16 - 1

	compress/flate
		huffman_code.go#L57: func maxNode() literalNode { return literalNode{math.MaxUint16, math.MaxInt32} }

	github.com/vmihailenco/msgpack/v5
		encode_map.go#L140: 	if l <= math.MaxUint16 {
		encode_number.go#L115: 	if n <= math.MaxUint16 {
		encode_slice.go#L48: 	if l <= math.MaxUint16 {
		encode_slice.go#L61: 	if l <= math.MaxUint16 {
		encode_slice.go#L95: 	if l <= math.MaxUint16 {
		ext.go#L192: 	if l <= math.MaxUint16 {
		intern.go#L13: 	maxDictLen           = math.MaxUint16
		intern.go#L85: 	if idx <= math.MaxUint16 {

	google.golang.org/protobuf/internal/encoding/text
		encode.go#L146: 			if r <= math.MaxUint16 {

	google.golang.org/protobuf/internal/impl
		legacy_export.go#L67: 	const maxBlockSize = math.MaxUint16

	net/netip
		netip.go#L250: 			if acc > math.MaxUint16 {