Home
last modified time | relevance | path

Searched refs:lzma (Results 1 - 17 of 17) sorted by relevance

/third_party/python/Lib/test/
H A Dtest_lzma.py18 lzma = import_module("lzma") variable
19 from lzma import LZMACompressor, LZMADecompressor, LZMAError, LZMAFile
33 self.assertRaises(ValueError, LZMACompressor, format=lzma.FORMAT_AUTO)
36 LZMACompressor(preset=7, filters=[{"id": lzma.FILTER_LZMA2}])
41 LZMADecompressor(lzma.FORMAT_RAW, filters="zzz")
44 LZMADecompressor(lzma.FORMAT_RAW, memlimit=0x1000000)
48 LZMADecompressor(format=lzma.FORMAT_XZ, filters=FILTERS_RAW_1)
50 LZMADecompressor(format=lzma.FORMAT_ALONE, filters=FILTERS_RAW_1)
71 LZMACompressor(filters=[{"id": lzma
[all...]
H A Dtest_tarfile.py36 import lzma namespace
38 lzma = None variable
88 open = lzma.LZMAFile if lzma else None
1623 decompressor = lzma.LZMADecompressor if lzma else None
2500 error = tarfile.CompressionError('lzma module is not available'),
2505 "\n- method xz: CompressionError('lzma module is not available')\n",
/third_party/toybox/toys/pending/
H A Dxzcat.c1413 * including lzma.pos_mask are in the first 128 bytes on x86-32,
1422 struct lzma_dec lzma; member
1717 uint32_t low = prev_byte >> (8 - s->lzma.lc); in lzma_literal_probs()
1718 uint32_t high = (s->dict.pos & s->lzma.literal_pos_mask) << s->lzma.lc; in lzma_literal_probs()
1719 return s->lzma.literal[low + high]; in lzma_literal_probs()
1734 if (lzma_state_is_literal(s->lzma.state)) { in lzma_literal()
1738 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1; in lzma_literal()
1757 lzma_state_literal(&s->lzma.state); in lzma_literal()
1760 /* Decode the length of the match into s->lzma
[all...]
/third_party/python/Lib/test/test_zoneinfo/data/
H A Dupdate_test_data.py17 import lzma namespace
87 compressed_zone = lzma.compress(data)
/third_party/python/Lib/distutils/tests/
H A Dtest_archive_util.py45 import lzma namespace
47 lzma = None variable
84 @unittest.skipUnless(lzma, 'Need lzma support to run')
329 @unittest.skipUnless(lzma, 'Need xz support to run')
/third_party/python/Lib/
H A Dzipfile.py35 import lzma # We may need its compression method namespace
37 lzma = None variable
631 props = lzma._encode_filter_properties({'id': lzma.FILTER_LZMA1})
632 self._comp = lzma.LZMACompressor(lzma.FORMAT_RAW, filters=[
633 lzma._decode_filter_properties(lzma.FILTER_LZMA1, props)
664 self._decomp = lzma.LZMADecompressor(lzma
[all...]
H A Dtarfile.py394 import lzma namespace
396 raise CompressionError("lzma module is not available") from None
399 self.cmp = lzma.LZMADecompressor()
400 self.exception = lzma.LZMAError
402 self.cmp = lzma.LZMACompressor()
1786 'r:xz' open for reading with lzma compression
1791 'w:xz' open for writing with lzma compression
1799 'x:xz' create an lzma compressed tarfile, raise an exception
1806 'r|xz' open an lzma compressed stream of tar blocks
1810 'w|xz' open an lzma compresse
[all...]
H A Dshutil.py29 import lzma namespace
30 del lzma
/third_party/lzma/CPP/7zip/Bundles/LzmaCon/
H A Dmakefile1 PROG = lzma.exe
/third_party/elfutils/libdwfl/
H A Dgzip.c38 # include <lzma.h>
/third_party/libunwind/libunwind/src/
H A Delfxx.c34 #include <lzma.h>
/third_party/python/Lib/test/support/
H A D__init__.py485 def requires_lzma(reason='requires lzma'):
487 import lzma namespace
489 lzma = None
490 return unittest.skipUnless(lzma, reason)
/third_party/python/Lib/test/test_zoneinfo/
H A Dtest_zoneinfo.py24 lzma = import_module('lzma') variable
1884 return lzma.decompress(decoded)
/third_party/python/Modules/
H A D_lzmamodule.c16 #include <lzma.h>
/third_party/ffmpeg/
H A Dconfigure308 --disable-lzma disable lzma [autodetect]
1762 lzma
2955 tiff_decoder_suggest="zlib lzma"
6479 enabled lzma && check_lib lzma lzma.h lzma_version_number -llzma
/third_party/ffmpeg/libavcodec/
H A Dtiff.c33 #include <lzma.h>
/third_party/python/
H A Dconfigure19309 for ac_header in lzma.h
19311 ac_fn_c_check_header_compile "$LINENO" "lzma.h" "ac_cv_header_lzma_h" "$ac_includes_default"
19391 for ac_header in lzma.h
19393 ac_fn_c_check_header_compile "$LINENO" "lzma.h" "ac_cv_header_lzma_h" "$ac_includes_default"

Completed in 60 milliseconds