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

  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
LZMA2OutputStream.java 17 import org.tukaani.xz.lzma.LZMAEncoder;
27 private final LZMAEncoder lzma; field in class:LZMA2OutputStream
64 lzma = LZMAEncoder.getInstance(rc,
70 lz = lzma.getLZEncoder();
103 if (lzma.encodeForLZMA2())
114 int uncompressedSize = lzma.getUncompressedSize();
124 lzma.reset();
125 uncompressedSize = lzma.getUncompressedSize();
131 lzma.resetUncompressedSize();
190 lzma.encodeForLZMA2()
    [all...]
LZMAInputStream.java 18 import org.tukaani.xz.lzma.LZMADecoder;
21 * Decompresses legacy .lzma files and raw LZMA streams (no .lzma header).
29 * the end of the LZMA stream.
41 * LZMA allows dictionaries up to one byte less than 4 GiB. This
52 private LZMADecoder lzma; field in class:LZMAInputStream
68 * the given dictionary size and LZMA properties byte (lc, lp, and pb).
70 * @param dictSize LZMA dictionary size as bytes, should be
74 * @param propsByte LZMA properties byte that encodes the value
    [all...]
LZMA2InputStream.java 18 import org.tukaani.xz.lzma.LZMADecoder;
51 private LZMADecoder lzma; field in class:LZMA2InputStream
86 // Round dictionary size upward to a multiple of 16. This way LZMA
87 // can use LZDecoder.getPos() for calculating LZMA's posMask.
230 lzma.decode();
286 lzma.reset();
314 lzma = new LZMADecoder(lz, rc, lc, lp, pb);
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
Optimum.java 11 package org.tukaani.xz.lzma;
40 * Sets to indicate one LZMA symbol (literal, rep, or match).
50 * Sets to indicate two LZMA symbols of which the first one is a literal.
61 * Sets to indicate three LZMA symbols of which the second one
LZMAEncoderFast.java 11 package org.tukaani.xz.lzma;
State.java 11 package org.tukaani.xz.lzma;
LZMACoder.java 11 package org.tukaani.xz.lzma;
LZMADecoder.java 11 package org.tukaani.xz.lzma;
40 * Returns true if LZMA end marker was detected. It is encoded as
43 * in the LZMA layer.
LZMAEncoderNormal.java 11 package org.tukaani.xz.lzma;
269 // Get matches for later bytes and optimize the use of LZMA symbols
LZMAEncoder.java 11 package org.tukaani.xz.lzma;
26 * A single LZMA symbol may indicate up to MATCH_LEN_MAX bytes
38 * A single LZMA symbol might use 20 bytes of space even though
148 * Gets the next LZMA symbol.
  /external/python/cpython3/Lib/distutils/tests/
test_archive_util.py 43 import lzma
45 lzma = None variable
82 @unittest.skipUnless(lzma, 'Need lzma support to run')
328 @unittest.skipUnless(lzma, 'Need xz support to run')
  /external/python/cpython3/Lib/test/
test_lzma.py 13 lzma = import_module("lzma") variable
14 from lzma import LZMACompressor, LZMADecompressor, LZMAError, LZMAFile
28 self.assertRaises(ValueError, LZMACompressor, format=lzma.FORMAT_AUTO)
31 LZMACompressor(preset=7, filters=[{"id": lzma.FILTER_LZMA2}])
36 LZMADecompressor(lzma.FORMAT_RAW, filters="zzz")
39 LZMADecompressor(lzma.FORMAT_RAW, memlimit=0x1000000)
43 LZMADecompressor(format=lzma.FORMAT_XZ, filters=FILTERS_RAW_1)
45 LZMADecompressor(format=lzma.FORMAT_ALONE, filters=FILTERS_RAW_1)
66 LZMACompressor(filters=[{"id": lzma.FILTER_LZMA2, "foo": 0}]
    [all...]
test_tarfile.py 25 import lzma
27 lzma = None variable
73 open = lzma.LZMAFile if lzma else None
    [all...]
  /external/python/cpython3/Lib/
zipfile.py 35 import lzma # We may need its compression method
37 lzma = None variable
576 props = lzma._encode_filter_properties({'id': lzma.FILTER_LZMA1})
577 self._comp = lzma.LZMACompressor(lzma.FORMAT_RAW, filters=[
578 lzma._decode_filter_properties(lzma.FILTER_LZMA1, props)
609 self._decomp = lzma.LZMADecompressor(lzma.FORMAT_RAW, filters=
    [all...]
  /external/xz-embedded/linux/lib/xz/
xz_dec_lzma2.c 15 * Range decoder initialization eats the first five bytes of each LZMA chunk.
20 * Minimum number of usable input buffer to safely decode one LZMA symbol.
139 /* Types of the most recently seen LZMA symbols */
149 * LZMA properties or related bit masks (number of literal
231 /* Uncompressed size of LZMA chunk (2 MiB at maximum) */
235 * Compressed size of LZMA chunk or compressed/uncompressed
242 * the first chunk (LZMA or uncompressed).
247 * True if new LZMA properties are needed. This is false
248 * before the first LZMA chunk.
257 * including lzma.pos_mask are in the first 128 bytes on x86-32
266 struct lzma_dec lzma; member in struct:xz_dec_lzma2
    [all...]
  /external/python/cpython3/Lib/test/support/
__init__.py 60 import lzma
62 lzma = None variable
776 requires_lzma = unittest.skipUnless(lzma, 'requires lzma')
    [all...]
  /external/toybox/toys/pending/
xzcat.c 1005 * This enum is used to track which LZMA symbols have occurred most recently
1078 * Match byte is used when the previous LZMA symbol was something else than
1173 * LZMA remembers the four most recent match distances. Reusing these
1422 struct lzma_dec lzma; member in struct:xz_dec_lzma2
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.12/
commons-compress-1.12.jar 
  /prebuilts/devtools/tools/lib/
commons-compress-1.8.1.jar 
  /prebuilts/misc/common/commons-compress/
commons-compress-prebuilt.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.8.1/
commons-compress-1.8.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.9/
commons-compress-1.9.jar 
  /prebuilts/tools/common/offline-m2/org/apache/commons/commons-compress/1.8.1/
commons-compress-1.8.1.jar 

Completed in 755 milliseconds