HomeSort by relevance Sort by last modified time
    Searched refs:compressedSize (Results 1 - 25 of 28) 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);
  /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;
99 return compressedSize;
202 compressedSize = value;
312 compressedSize = ze.compressedSize;
376 compressedSize = ((long) it.readInt()) & 0xffffffffL;
ZipInputStream.java 199 currentEntry.compressedSize = ((long) Memory.peekInt(hdrBuf, EXTSIZ, ByteOrder.LITTLE_ENDIAN)) & 0xffffffffL;
205 if (currentEntry.compressedSize != inB || currentEntry.size != out) {
ZipOutputStream.java 150 writeLong(out, currentEntry.compressedSize = def.getTotalOut());
283 if (ze.size != ze.compressedSize) {
ZipFile.java 308 rafStream.endOffset = rafStream.offset + entry.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;
  /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;
  /external/lzma/CPP/7zip/UI/Common/
Bench.cpp 495 UInt32 compressedSize;
617 compressedSize = outStreamSpec->Pos;
642 inStreamSpec->Init(outStreamSpec->Buffer, compressedSize);
651 pi->BenchInfo.PackSize += compressedSize;
767 info.PackSize += encoder.compressedSize;
841 info.PackSize += encoder.compressedSize;
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaBench.cs 301 long compressedSize = compressedStream.Position;
323 PrintResults(dictionarySize, decodeTime, kBufferSize, true, (ulong)compressedSize);
329 totalCompressedSize += (ulong)compressedSize;
LzmaAlone.cs 341 long compressedSize = inStream.Length - inStream.Position;
342 decoder.Code(inStream, outStream, compressedSize, outSize, null);
  /external/lzma/CPP/7zip/UI/Console/
List.cpp 183 const UInt64 *size, const UInt64 *compressedSize);
369 const UInt64 *size, const UInt64 *compressedSize)
379 PrintNumberString(fieldInfo.TextAdjustment, fieldInfo.Width, compressedSize);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texgetimage.c 868 GLuint compressedSize;
904 compressedSize = _mesa_format_image_size(texImage->TexFormat,
911 if (clientMemSize < compressedSize) {
919 if ((const GLubyte *) img + compressedSize >
  /external/mesa3d/src/mesa/main/
texgetimage.c 868 GLuint compressedSize;
904 compressedSize = _mesa_format_image_size(texImage->TexFormat,
911 if (clientMemSize < compressedSize) {
919 if ((const GLubyte *) img + compressedSize >
  /frameworks/av/include/media/stagefright/
OMXCodec.h 285 OMX_U32 width, OMX_U32 height, OMX_U32 compressedSize);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
VCSUtils.pm     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
AuditRules.js 91 var compressedSize = 0;
102 compressedSize += size;
    [all...]
  /frameworks/native/opengl/libagl/
texture.cpp     [all...]
  /frameworks/av/media/libstagefright/
OMXCodec.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
pdebuild.jar 

Completed in 447 milliseconds

1 2