Home
last modified time | relevance | path

Searched refs:decodeVLI (Results 1 – 4 of 4) sorted by relevance

/external/xz-java/src/org/tukaani/xz/index/
DIndexHash.java56 long storedRecordCount = DecoderUtil.decodeVLI(inChecked); in validate()
65 long unpaddedSize = DecoderUtil.decodeVLI(inChecked); in validate()
66 long uncompressedSize = DecoderUtil.decodeVLI(inChecked); in validate()
DIndexDecoder.java61 long count = DecoderUtil.decodeVLI(inChecked); in IndexDecoder()
90 long unpaddedSize = DecoderUtil.decodeVLI(inChecked); in IndexDecoder()
91 long uncompressedSize = DecoderUtil.decodeVLI(inChecked); in IndexDecoder()
/external/xz-java/src/org/tukaani/xz/
DBlockInputStream.java88 compressedSizeInHeader = DecoderUtil.decodeVLI(bufStream); in BlockInputStream()
100 uncompressedSizeInHeader = DecoderUtil.decodeVLI(bufStream); in BlockInputStream()
104 filterIDs[i] = DecoderUtil.decodeVLI(bufStream); in BlockInputStream()
106 long filterPropsSize = DecoderUtil.decodeVLI(bufStream); in BlockInputStream()
/external/xz-java/src/org/tukaani/xz/common/
DDecoderUtil.java97 public static long decodeVLI(InputStream in) throws IOException { in decodeVLI() method in DecoderUtil