Searched refs:uncompressedSize (Results 1 - 18 of 18) sorted by relevance

/external/lzma/Java/Tukaani/src/org/tukaani/xz/index/
H A DIndexBase.java44 void add(long unpaddedSize, long uncompressedSize) throws XZIOException { argument
46 uncompressedSum += uncompressedSize;
48 + Util.getVLISize(uncompressedSize);
H A DBlockInfo.java19 public long uncompressedSize = -1; field in class:BlockInfo
H A DIndexEncoder.java27 public void add(long unpaddedSize, long uncompressedSize) argument
29 super.add(unpaddedSize, uncompressedSize);
30 records.add(new IndexRecord(unpaddedSize, uncompressedSize));
H A DIndexHash.java35 public void add(long unpaddedSize, long uncompressedSize) argument
37 super.add(unpaddedSize, uncompressedSize);
41 buf.putLong(uncompressedSize);
62 long uncompressedSize = DecoderUtil.decodeVLI(inChecked);
65 stored.add(unpaddedSize, uncompressedSize);
H A DIndexDecoder.java91 long uncompressedSize = DecoderUtil.decodeVLI(inChecked);
102 uncompressed[record] = uncompressedSum + uncompressedSize;
104 super.add(unpaddedSize, uncompressedSize);
108 if (largestBlockSize < uncompressedSize)
109 largestBlockSize = uncompressedSize;
217 info.uncompressedSize = uncompressed[pos] - info.uncompressedOffset;
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
H A DLZMA2OutputStream.java114 int uncompressedSize = lzma.getUncompressedSize();
117 assert uncompressedSize > 0 : uncompressedSize;
121 if (compressedSize + 2 < uncompressedSize) {
122 writeLZMA(uncompressedSize, compressedSize);
125 uncompressedSize = lzma.getUncompressedSize();
126 assert uncompressedSize > 0 : uncompressedSize;
127 writeUncompressed(uncompressedSize);
130 pendingSize -= uncompressedSize;
135 writeLZMA(int uncompressedSize, int compressedSize) argument
167 writeUncompressed(int uncompressedSize) argument
[all...]
H A DLZMA2InputStream.java53 private int uncompressedSize = 0; field in class:LZMA2InputStream
218 if (uncompressedSize == 0) {
224 int copySizeMax = Math.min(uncompressedSize, len);
239 uncompressedSize -= copiedSize;
241 if (uncompressedSize == 0)
273 uncompressedSize = (control & 0x1F) << 16;
274 uncompressedSize += in.readUnsignedShort() + 1;
296 uncompressedSize = in.readUnsignedShort() + 1;
340 return uncompressedSize;
H A DBlockOutputStream.java26 private long uncompressedSize = 0; field in class:BlockOutputStream
95 uncompressedSize += len;
123 || uncompressedSize < 0)
132 return uncompressedSize;
H A DSeekableXZInputStream.java110 private long uncompressedSize = 0; field in class:SeekableXZInputStream
416 uncompressedSize += index.getUncompressedSize();
417 if (uncompressedSize < 0)
539 return queriedBlockInfo.uncompressedSize;
754 return uncompressedSize;
841 if (seekPos >= uncompressedSize) {
894 if (pos < 0 || pos >= uncompressedSize)
910 assert info.uncompressedSize > 0;
912 assert pos < info.uncompressedOffset + info.uncompressedSize;
951 curBlockInfo.unpaddedSize, curBlockInfo.uncompressedSize);
[all...]
H A DBlockInputStream.java31 private long uncompressedSize = 0; field in class:BlockInputStream
216 uncompressedSize += ret;
222 || uncompressedSize < 0
224 && uncompressedSize > uncompressedSizeInHeader))
234 if (ret < len || uncompressedSize == uncompressedSizeInHeader) {
257 && uncompressedSizeInHeader != uncompressedSize))
282 return uncompressedSize;
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
H A DLZMAEncoder.java66 private int uncompressedSize = 0; field in class:LZMAEncoder
195 uncompressedSize += readAhead + 1;
200 return uncompressedSize;
204 uncompressedSize = 0;
216 while (uncompressedSize <= LZMA2_UNCOMPRESSED_LIMIT
239 ++uncompressedSize;
240 assert uncompressedSize == 1;
277 uncompressedSize += len;
/external/dng_sdk/source/
H A Ddng_jpeg_image.cpp102 uint32 uncompressedSize = SafeUint32Mult ( local
105 uncompressedBuffer.Reset (fHost.Allocate (uncompressedSize));
H A Ddng_read_image.cpp2227 uint32 uncompressedSize = ComputeBufferSize (pixelType, tileArea.Size(), local
2233 uint32 bufferSize = uncompressedSize;
2304 uncompressedSize))
2319 uncompressedSize))
2329 uLongf dstLen = uncompressedSize;
2359 if (dstLen != uncompressedSize)
2771 uint32 uncompressedSize)
2787 , fUncompressedSize (uncompressedSize)
3035 uint32 uncompressedSize = 0; local
3054 uncompressedSize
2757 dng_read_tiles_task(dng_read_image &readImage, dng_host &host, const dng_ifd &ifd, dng_stream &stream, dng_image &image, dng_jpeg_image *jpegImage, dng_fingerprint *jpegTileDigest, uint32 outerSamples, uint32 innerSamples, uint32 tilesDown, uint32 tilesAcross, uint64 *tileOffset, uint32 *tileByteCount, uint32 compressedSize, uint32 uncompressedSize) argument
[all...]
H A Ddng_image_writer.cpp2682 uint32 uncompressedSize)
2693 return SafeUint32Add (SafeUint32Mult (uncompressedSize, 2), 1024);
2702 return SafeUint32Add (SafeUint32Add (uncompressedSize,
2703 uncompressedSize >> 8), 64);
2716 return SafeUint32Mult (uncompressedSize, 2);
4356 uint32 uncompressedSize)
4368 , fUncompressedSize (uncompressedSize)
4630 uint32 uncompressedSize = SafeUint32Mult(subTileLength, tileRowBytes); local
4634 uint32 compressedSize = CompressedBufferSize (ifd, uncompressedSize);
4667 uncompressedSize);
2681 CompressedBufferSize(const dng_ifd &ifd, uint32 uncompressedSize) argument
4346 dng_write_tiles_task(dng_image_writer &imageWriter, dng_host &host, const dng_ifd &ifd, dng_basic_tag_set &basic, dng_stream &stream, const dng_image &image, uint32 fakeChannels, uint32 tilesDown, uint32 tilesAcross, uint32 compressedSize, uint32 uncompressedSize) argument
[all...]
H A Ddng_image_writer.h1207 uint32 uncompressedSize);
/external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/
H A DZipExtractorTask.java157 long uncompressedSize = getOriginalSize(zip);
159 publishProgress(0, (int) uncompressedSize);
/external/libvncserver/webclients/novnc/include/
H A Djsunzip.js105 var uncompressedSize = this.getInt(fileOffset + 24, 4);
127 'uncompressedSize' : uncompressedSize,
152 return { 'status' : true, 'data' : this.data.slice(fileInfo.localFileContent, fileInfo.localFileContent + fileInfo.uncompressedSize) };
H A Drfb.js1701 var uncompressedSize = this._FBU.width * this._FBU.height * this._fb_depth;
1702 if (uncompressedSize < 12) {
1704 clength = [0, uncompressedSize];

Completed in 1368 milliseconds