archive/zip.FileHeader.UncompressedSize (field)

12 uses

	archive/zip (current package)
		reader.go#L285: 	f.UncompressedSize = b.uint32()
		reader.go#L287: 	f.UncompressedSize64 = uint64(f.UncompressedSize)
		reader.go#L320: 	needUSize := f.UncompressedSize == ^uint32(0)
		struct.go#L133: 	UncompressedSize   uint32 // Deprecated: Use UncompressedSize64 instead.
		struct.go#L155: 	return int64(fi.fh.UncompressedSize)
		struct.go#L186: 		fh.UncompressedSize = uint32max
		struct.go#L188: 		fh.UncompressedSize = uint32(fh.UncompressedSize64)
		writer.go#L119: 			b.uint32(h.UncompressedSize)
		writer.go#L342: 		fh.UncompressedSize = 0
		writer.go#L470: 		fh.UncompressedSize = uint32max
		writer.go#L474: 		fh.UncompressedSize = uint32(fh.UncompressedSize64)
		writer.go#L496: 		b.uint32(fh.UncompressedSize)