Home
last modified time | relevance | path

Searched refs:compressedSize (Results 1 – 5 of 5) sorted by relevance

/aosp12/build/soong/third_party/zip/
H A Dwriter.go286 compressedSize := uint32(h.CompressedSize64)
287 if compressedSize == 0 {
288 compressedSize = h.CompressedSize
298 compressedSize = uint32max
311 b.uint32(compressedSize)
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
H A DIngestObjectInfo.java26 public IngestObjectInfo(int handle, long dateCreated, int format, int compressedSize) { in IngestObjectInfo() argument
30 mCompressedSize = compressedSize; in IngestObjectInfo()
/aosp12/frameworks/multidex/library/test/src/androidx/multidex/
H A DZipEntryReader.java70 long compressedSize = ((long) in.getInt()) & 0xffffffffL; in readEntry() local
90 entry.setCompressedSize(compressedSize); in readEntry()
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
H A DExportDialog.java192 float compressedSize = newArea / factor; in updateSize() local
193 compressedSize *= mExportCompressionMargin; in updateSize()
194 float size = compressedSize / 1024.f / 1024.f; in updateSize()
/aosp12/packages/modules/adb/client/
H A Dincremental_server.cpp435 int16_t compressedSize = 0; in SendDataBlock() local
437 compressedSize = LZ4_compress_default(raw.data, compressed.data, bytesRead, kCompressBound); in SendDataBlock()
441 if (compressedSize > 0 && compressedSize < kCompressedSizeMax) { in SendDataBlock()
443 blockSize = compressedSize; in SendDataBlock()