archive/zip.FileHeader.CompressedSize (field)

9 uses

	archive/zip (current package)
		reader.go#L284: 	f.CompressedSize = b.uint32()
		reader.go#L286: 	f.CompressedSize64 = uint64(f.CompressedSize)
		reader.go#L321: 	needCSize := f.CompressedSize == ^uint32(0)
		struct.go#L132: 	CompressedSize     uint32 // Deprecated: Use CompressedSize64 instead.
		writer.go#L118: 			b.uint32(h.CompressedSize)
		writer.go#L340: 		fh.CompressedSize = 0
		writer.go#L469: 		fh.CompressedSize = uint32max
		writer.go#L473: 		fh.CompressedSize = uint32(fh.CompressedSize64)
		writer.go#L495: 		b.uint32(fh.CompressedSize)