Home
last modified time | relevance | path

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

/external/lzma/Java/Tukaani/src/org/tukaani/xz/index/
DIndexHash.java53 long storedRecordCount = DecoderUtil.decodeVLI(inChecked); in validate()
61 long unpaddedSize = DecoderUtil.decodeVLI(inChecked); in validate()
62 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/lzma/Java/Tukaani/src/org/tukaani/xz/
DBlockInputStream.java87 compressedSizeInHeader = DecoderUtil.decodeVLI(bufStream); in BlockInputStream()
99 uncompressedSizeInHeader = DecoderUtil.decodeVLI(bufStream); in BlockInputStream()
103 filterIDs[i] = DecoderUtil.decodeVLI(bufStream); in BlockInputStream()
105 long filterPropsSize = DecoderUtil.decodeVLI(bufStream); in BlockInputStream()
/external/lzma/Java/Tukaani/src/org/tukaani/xz/common/
DDecoderUtil.java97 public static long decodeVLI(InputStream in) throws IOException { in decodeVLI() method in DecoderUtil