Home
last modified time | relevance | path

Searched refs:propsByte (Results 1 – 3 of 3) sorted by relevance

/external/xz-java/src/org/tukaani/xz/
DLZMAInputStream.java88 public static int getMemoryUsage(int dictSize, byte propsByte) in getMemoryUsage() argument
94 int props = propsByte & 0xFF; in getMemoryUsage()
299 byte propsByte = inData.readByte(); in LZMAInputStream()
315 int memoryNeeded = getMemoryUsage(dictSize, propsByte); in LZMAInputStream()
319 initialize(in, uncompSize, propsByte, dictSize, null, arrayCache); in LZMAInputStream()
368 public LZMAInputStream(InputStream in, long uncompSize, byte propsByte, in LZMAInputStream() argument
370 initialize(in, uncompSize, propsByte, dictSize, null, in LZMAInputStream()
406 public LZMAInputStream(InputStream in, long uncompSize, byte propsByte, in LZMAInputStream() argument
409 initialize(in, uncompSize, propsByte, dictSize, presetDict, in LZMAInputStream()
453 public LZMAInputStream(InputStream in, long uncompSize, byte propsByte, in LZMAInputStream() argument
[all …]
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/
DLZMADecoder.java38 final byte propsByte = coder.properties[0]; in decode()
43 return new LZMAInputStream(in, uncompressedLength, propsByte, dictSize); in decode()
67 final byte propsByte = coder.properties[0]; in getOptionsFromCoder()
68 int props = propsByte & 0xFF; in getOptionsFromCoder()
/external/lzma/C/
DLzma2Enc.c85 Byte propsByte; member
100 p->propsByte = propsEncoded[0]; in Lzma2EncInt_InitStream()
212 outBuf[destPos++] = p->propsByte; in Lzma2EncInt_EncodeSubblock()