HomeSort by relevance Sort by last modified time
    Searched refs:compressedSize (Results 1 - 25 of 50) sorted by null

1 2

  /libcore/benchmarks/src/benchmarks/
BufferedZipFileBenchmark.java 31 @Param({"128", "1024", "8192", "65536"}) int compressedSize;
45 while (written < compressedSize) {
47 int toWrite = Math.min(compressedSize - written, data.length);
  /libcore/luni/src/main/java/java/util/zip/
ZipEntry.java 46 long compressedSize = -1;
70 ZipEntry(String name, String comment, long crc, long compressedSize,
76 this.compressedSize = compressedSize;
117 return compressedSize;
217 compressedSize = value;
338 compressedSize = ze.compressedSize;
412 compressedSize = ((long) it.readInt()) & 0xffffffffL;
ZipInputStream.java 194 currentEntry.compressedSize = ((long) Memory.peekInt(hdrBuf, EXTSIZ, ByteOrder.LITTLE_ENDIAN)) & 0xffffffffL;
200 if (currentEntry.compressedSize != inB || currentEntry.size != out) {
ZipOutputStream.java 156 writeLong(out, currentEntry.compressedSize = def.getTotalOut());
285 if (ze.size != ze.compressedSize) {
ZipFile.java 329 rafStream.endOffset = rafStream.offset + entry.compressedSize;
  /system/core/libzipfile/
private.h 15 unsigned int compressedSize;
centraldir.c 89 entry->compressedSize = read_le_int(&p[0x14]);
zipfile.c 124 return uninflate(buf, bufsize, entry->data, entry->compressedSize);
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
IngestObjectInfo.java 26 public IngestObjectInfo(int handle, long dateCreated, int format, int compressedSize) {
30 mCompressedSize = compressedSize;
  /external/lzma/Java/SevenZip/
LzmaBench.java 339 int compressedSize = 0;
350 compressedSize = compressedStream.size();
351 inputCompressedStream = new MyInputStream(compressedBuffer, compressedSize);
353 else if (compressedSize != compressedStream.size())
376 PrintResults(dictionarySize, decodeTime, kBufferSize, true, compressedSize);
382 totalCompressedSize += compressedSize;
  /frameworks/multidex/library/test/src/android/support/multidex/
ZipEntryReader.java 70 long compressedSize = ((long) in.getInt()) & 0xffffffffL;
90 entry.setCompressedSize(compressedSize);
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
TextureUtils.cpp 59 GLsizei compressedSize = etc1_get_encoded_data_size(width, height);
60 SET_ERROR_IF((compressedSize > imageSize), GL_INVALID_VALUE);
  /external/qemu/distrib/sdl-1.2.15/Xcode/
package 248 @ compressedSize = `/usr/bin/du -k -s $pkg | $awk '{print $1}'`
249 @ compressedSize += 3 # add 1KB each for sizes, location, status files
265 echo CompressedSize $compressedSize >> $pkgSizes
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
ExportDialog.java 192 float compressedSize = newArea / factor;
193 compressedSize *= mExportCompressionMargin;
194 float size = compressedSize / 1024.f / 1024.f;