HomeSort by relevance Sort by last modified time
    Searched refs:compressedSize (Results 1 - 15 of 15) 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 45 long compressedSize = -1, crc = -1, size = -1;
100 return compressedSize;
200 compressedSize = value;
313 compressedSize = ze.compressedSize;
369 compressedSize = ((long) it.readInt()) & 0xffffffffL;
ZipOutputStream.java 158 writeLong(out, currentEntry.compressedSize = def.getTotalOut());
276 if (ze.size == -1 && ze.compressedSize == -1) {
279 if (ze.size != ze.compressedSize && ze.compressedSize != -1 && ze.size != -1) {
318 currentEntry.size = currentEntry.compressedSize;
319 } else if (currentEntry.compressedSize == -1) {
320 currentEntry.compressedSize = currentEntry.size;
ZipInputStream.java 204 currentEntry.compressedSize = ((long) Memory.peekInt(hdrBuf, EXTSIZ, ByteOrder.LITTLE_ENDIAN)) & 0xffffffffL;
210 if (currentEntry.compressedSize != inB || currentEntry.size != out) {
ZipFile.java 267 rafstrm.mLength = rafstrm.mOffset + entry.compressedSize;
  /development/tools/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);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
ArchiveInstaller.java 636 long compressedSize,
654 long incStep = compressedSize / NUM_MONITOR_INC;
735 int percent = (int) (100 * incTotal / compressedSize);
    [all...]
  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/internal/repository/
ArchiveInstallerTest.java 73 long compressedSize,
  /frameworks/base/include/media/stagefright/
OMXCodec.h 266 OMX_U32 width, OMX_U32 height, OMX_U32 compressedSize);
  /external/webkit/Tools/Scripts/
VCSUtils.pm     [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
AuditRules.js 75 var compressedSize = 0;
86 compressedSize += size;
    [all...]
  /frameworks/base/media/libstagefright/
OMXCodec.cpp 712 int32_t compressedSize;
714 kKeyMaxInputSize, &compressedSize);
717 CHECK(compressedSize > 0);
720 setJPEGInputFormat(width, height, (OMX_U32)compressedSize);
    [all...]
  /frameworks/base/opengl/libagl/
texture.cpp     [all...]

Completed in 228 milliseconds