const archive/zip.uint32max

16 uses

	archive/zip (current package)
		struct.go#L62: 	uint32max = (1 << 32) - 1
		struct.go#L185: 	if fh.UncompressedSize64 > uint32max {
		struct.go#L186: 		fh.UncompressedSize = uint32max
		struct.go#L315: 	return h.CompressedSize64 >= uint32max || h.UncompressedSize64 >= uint32max
		writer.go#L101: 		if h.isZip64() || h.offset >= uint32max {
		writer.go#L105: 			b.uint32(uint32max) // compressed size
		writer.go#L106: 			b.uint32(uint32max) // uncompressed size
		writer.go#L127: 		if h.offset > uint32max {
		writer.go#L128: 			b.uint32(uint32max)
		writer.go#L155: 	if records >= uint16max || size >= uint32max || offset >= uint32max {
		writer.go#L184: 		size = uint32max
		writer.go#L185: 		offset = uint32max
		writer.go#L469: 		fh.CompressedSize = uint32max
		writer.go#L470: 		fh.UncompressedSize = uint32max