/third_party/python/Lib/test/ |
H A D | test_lzma.py | 18 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 D | test_tarfile.py | 36 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 D | xzcat.c | 1413 * 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 D | update_test_data.py | 17 import lzma namespace 87 compressed_zone = lzma.compress(data)
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_archive_util.py | 45 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 D | zipfile.py | 35 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 D | tarfile.py | 394 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 D | shutil.py | 29 import lzma namespace 30 del lzma
|
/third_party/lzma/CPP/7zip/Bundles/LzmaCon/ |
H A D | makefile | 1 PROG = lzma.exe
|
/third_party/elfutils/libdwfl/ |
H A D | gzip.c | 38 # include <lzma.h>
|
/third_party/libunwind/libunwind/src/ |
H A D | elfxx.c | 34 #include <lzma.h>
|
/third_party/python/Lib/test/support/ |
H A D | __init__.py | 485 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 D | test_zoneinfo.py | 24 lzma = import_module('lzma') variable 1884 return lzma.decompress(decoded)
|
/third_party/python/Modules/ |
H A D | _lzmamodule.c | 16 #include <lzma.h>
|
/third_party/ffmpeg/ |
H A D | configure | 308 --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 D | tiff.c | 33 #include <lzma.h>
|
/third_party/python/ |
H A D | configure | 19309 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"
|