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

  /system/core/libzipfile/
private.h 15 unsigned int compressedSize;
zipfile.c 125 return uninflate(buf, bufsize, entry->data, entry->compressedSize);
centraldir.c 107 entry->compressedSize = read_le_int(&p[0x14]);
  /libcore/luni/src/main/java/java/util/zip/
ZipEntry.java 43 long compressedSize = -1, crc = -1, size = -1;
98 return compressedSize;
198 compressedSize = value;
311 compressedSize = ze.compressedSize;
375 compressedSize = (hdrBuf[20] & 0xff) | ((hdrBuf[21] & 0xff) << 8)
ZipOutputStream.java 134 writeLong(out, currentEntry.compressedSize = def.getTotalOut());
249 if (ze.size == -1 && ze.compressedSize == -1) {
252 if (ze.size != ze.compressedSize && ze.compressedSize != -1 && ze.size != -1) {
291 currentEntry.size = currentEntry.compressedSize;
292 } else if (currentEntry.compressedSize == -1) {
293 currentEntry.compressedSize = currentEntry.size;
ZipInputStream.java 179 currentEntry.compressedSize = getLong(hdrBuf, EXTSIZ);
185 if (currentEntry.compressedSize != inB || currentEntry.size != out) {
ZipFile.java 275 rafstrm.mLength = rafstrm.mOffset + entry.compressedSize;
  /external/webkit/WebKitTools/Scripts/
VCSUtils.pm 914 my $compressedSize = 0;
924 $compressedSize += $expectedSize;
929 $compressed = substr($compressed, 0, $compressedSize);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
Archive.java 849 long compressedSize,
869 long incStep = compressedSize / NUM_MONITOR_INC;
    [all...]
  /frameworks/base/include/media/stagefright/
OMXCodec.h 216 OMX_U32 width, OMX_U32 height, OMX_U32 compressedSize);
  /external/webkit/WebCore/inspector/front-end/
AuditRules.js 104 var compressedSize = 0
113 compressedSize += size;
130 result.score = 100 * compressedSize / candidateSize;
    [all...]
  /frameworks/base/media/libstagefright/
OMXCodec.cpp 686 int32_t compressedSize;
688 kKeyMaxInputSize, &compressedSize);
691 CHECK(compressedSize > 0);
694 setJPEGInputFormat(width, height, (OMX_U32)compressedSize);
    [all...]
  /frameworks/base/opengl/libagl/
texture.cpp     [all...]

Completed in 1099 milliseconds