HomeSort by relevance Sort by last modified time
    Searched defs:unpaddedSize (Results 1 - 3 of 3) sorted by null

  /external/lzma/Java/Tukaani/src/org/tukaani/xz/index/
BlockInfo.java 18 public long unpaddedSize = -1;
IndexHash.java 35 public void add(long unpaddedSize, long uncompressedSize)
37 super.add(unpaddedSize, uncompressedSize);
40 buf.putLong(unpaddedSize);
61 long unpaddedSize = DecoderUtil.decodeVLI(inChecked);
65 stored.add(unpaddedSize, uncompressedSize);
IndexDecoder.java 90 long unpaddedSize = DecoderUtil.decodeVLI(inChecked);
101 unpadded[record] = blocksSum + unpaddedSize;
104 super.add(unpaddedSize, uncompressedSize);
216 info.unpaddedSize = unpadded[pos] - info.compressedOffset;

Completed in 244 milliseconds