archive/zip.FileHeader.CompressedSize64 (field)

10 uses

	archive/zip (current package)
		reader.go#L176: 	size := int64(f.CompressedSize64)
		reader.go#L286: 	f.CompressedSize64 = uint64(f.CompressedSize)
		reader.go#L355: 				f.CompressedSize64 = fieldBuf.uint64()
		struct.go#L134: 	CompressedSize64   uint64
		struct.go#L315: 	return h.CompressedSize64 >= uint32max || h.UncompressedSize64 >= uint32max
		writer.go#L114: 			eb.uint64(h.CompressedSize64)
		writer.go#L341: 		fh.CompressedSize64 = 0
		writer.go#L465: 	fh.CompressedSize64 = uint64(w.compCount.count)
		writer.go#L473: 		fh.CompressedSize = uint32(fh.CompressedSize64)
		writer.go#L492: 		b.uint64(fh.CompressedSize64)