Home
last modified time | relevance | path

Searched refs:compression (Results 1 – 25 of 34) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_zipfile.py43 def make_test_archive(self, f, compression): argument
45 with zipfile.ZipFile(f, "w", compression) as zipfp:
50 def zip_test(self, f, compression): argument
51 self.make_test_archive(f, compression)
54 with zipfile.ZipFile(f, "r", compression) as zipfp:
112 def zip_open_test(self, f, compression): argument
113 self.make_test_archive(f, compression)
116 with zipfile.ZipFile(f, "r", compression) as zipfp:
158 def zip_random_open_test(self, f, compression): argument
159 self.make_test_archive(f, compression)
[all …]
Dtest_zipfile64.py46 def zipTest(self, f, compression): argument
48 zipfp = zipfile.ZipFile(f, "w", compression, allowZip64=True)
67 zipfp = zipfile.ZipFile(f, "r", compression)
Dtest_zipimport.py60 compression = ZIP_STORED variable in UncompressedZipImportTestCase
74 zinfo.compress_type = self.compression
133 if self.compression != ZIP_DEFLATED:
136 if self.compression != ZIP_STORED:
212 zinfo.compress_type = self.compression
256 zinfo.compress_type = self.compression
287 z.compression = self.compression
387 compression = ZIP_DEFLATED variable in CompressedZipImportTestCase
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/
Dlzma.txt5 and tools you need to develop applications that use LZMA compression.
7 LZMA is default and general compression method of 7z format
8 in 7-Zip compression program (www.7-zip.org). LZMA provides high
9 compression ratio and very fast decompression.
11 LZMA is an improved version of famous LZ77 compression algorithm.
12 It was improved in way of maximum increasing of compression ratio,
87 Compress - files related to compression/decompression
90 RangeCoder - Range Coder (special code of compression/decompression)
91 LZMA - LZMA compression/decompression on C++
92 LZMA_Alone - file->file LZMA compression/decompression
[all …]
Dhistory.txt31 LZMA Encoder in fast compression mode could access memory outside of
228 1996-2001: Development of LZMA compression format
232 2001-08-30: LZMA compression was added to 7-Zip
/device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/
Dlzma.txt5 and tools you need to develop applications that use LZMA compression.
7 LZMA is default and general compression method of 7z format
8 in 7-Zip compression program (www.7-zip.org). LZMA provides high
9 compression ratio and very fast decompression.
11 LZMA is an improved version of famous LZ77 compression algorithm.
12 It was improved in way of maximum increasing of compression ratio,
87 Compress - files related to compression/decompression
90 RangeCoder - Range Coder (special code of compression/decompression)
91 LZMA - LZMA compression/decompression on C++
92 LZMA_Alone - file->file LZMA compression/decompression
[all …]
Dhistory.txt31 LZMA Encoder in fast compression mode could access memory outside of
228 1996-2001: Development of LZMA compression format
232 2001-08-30: LZMA compression was added to 7-Zip
/device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/
Dlzma.txt5 and tools you need to develop applications that use LZMA compression.
7 LZMA is default and general compression method of 7z format
8 in 7-Zip compression program (www.7-zip.org). LZMA provides high
9 compression ratio and very fast decompression.
11 LZMA is an improved version of famous LZ77 compression algorithm.
12 It was improved in way of maximum increasing of compression ratio,
87 Compress - files related to compression/decompression
90 RangeCoder - Range Coder (special code of compression/decompression)
91 LZMA - LZMA compression/decompression on C++
92 LZMA_Alone - file->file LZMA compression/decompression
[all …]
Dhistory.txt31 LZMA Encoder in fast compression mode could access memory outside of
228 1996-2001: Development of LZMA compression format
232 2001-08-30: LZMA compression was added to 7-Zip
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SectionExtractionDxe/
DSectionExtractionDxe.uni4 …n Protocol required to load modules from firmware volumes that may use compression, signing, or en…
20 …n Protocol required to load modules from firmware volumes that may use compression, signing, or en…
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
DREADME3 zlib 1.2.8 is a general purpose data compression library. All the code is
9 All functions of the compression library are documented in the file zlib.h
13 test/minigzip.c. The compression library itself is composed of all source
39 http://java.sun.com/developer/technicalArticles/Programming/compression/ .
Dalgorithm.txt47 match, thus speeding up the whole process. If compression ratio is more
51 The lazy match evaluation is not performed for the fastest compression
54 when the match is not too long. This degrades the compression ratio
107 compression in the first place.) For the less frequent long symbols, there
108 will be two lookups. If you had a compression method with really long
DFAQ217 can significantly degrade compression. Alternatively, you can scan a
311 Probably not. Look in the comp.compression FAQ for pointers to various
319 compression. For PKZIP compatible "encryption", look at
341 they have not documented it as they have previous compression formats. In
342 any case, the compression improvements are so modest compared to other more
DChangeLog449 - Defer compression of gzprintf() result until need to
655 - Add the deflateTune() function to adjust internal compression parameters
910 - Improve setting of zlib format compression level flags
931 write more than 4095 bytes before compression
1076 compression ratio on some files. This also allows inlining _tr_tally for
1083 - compile with -DFASTEST to get compression code optimized for speed only
1118 - added compress2() to allow setting the compression level
1160 - Fix a deflate bug occurring only with compression level 0 (thanks to
1187 - pass params -f (filtered data), -h (huffman only), -1 to -9 (compression
1195 - Allow compilation of gzio with -DNO_DEFLATE to avoid the compression code.
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SectionExtractionPei/
DSectionExtractionPei.uni20 …action PPI required to load modules from firmware volumes that may use compression, signing, or en…
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
DINDEX7 algorithm.txt description of the (de)compression algorithm
Dalgorithm.txt47 match, thus speeding up the whole process. If compression ratio is more
51 The lazy match evaluation is not performed for the fastest compression
54 when the match is not too long. This degrades the compression ratio
107 compression in the first place.) For the less frequent long symbols, there
108 will be two lookups. If you had a compression method with really long
DChangeLog38 - Add the deflateTune() function to adjust internal compression parameters
293 - Improve setting of zlib format compression level flags
314 write more than 4095 bytes before compression
459 compression ratio on some files. This also allows inlining _tr_tally for
466 - compile with -DFASTEST to get compression code optimized for speed only
501 - added compress2() to allow setting the compression level
543 - Fix a deflate bug occurring only with compression level 0 (thanks to
570 - pass params -f (filtered data), -h (huffman only), -1 to -9 (compression
578 - Allow compilation of gzio with -DNO_DEFLATE to avoid the compression code.
672 - allow compression level 0 (no compression)
[all …]
DREADME3 zlib 1.2.3 is a general purpose data compression library. All the code is
10 All functions of the compression library are documented in the file zlib.h
14 compression library itself is composed of all source files except example.c and
DFAQ216 often, since it can significantly degrade compression.
303 Probably not. Look in the comp.compression FAQ for pointers to various
310 use GnuPG, http://www.gnupg.org/ , which already includes zlib compression.
332 they have not documented it as they have previous compression formats.
333 In any case, the compression improvements are so modest compared to other
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
Ddlg1.txt23 Where level is the compression level used. 0 indica-
24 tions no compression, 1 removes all unused characters
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dzipfile.py669 def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=False): argument
674 if compression == ZIP_STORED:
676 elif compression == ZIP_DEFLATED:
688 self.compression = compression # Method of compression
1046 zinfo.compress_type = self.compression
1113 zinfo.compress_type = self.compression
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dzipfile.py726 def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=False): argument
731 if compression == ZIP_STORED:
733 elif compression == ZIP_DEFLATED:
745 self.compression = compression # Method of compression
1138 zinfo.compress_type = self.compression
1214 zinfo.compress_type = self.compression
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Darchive_util.py163 compression=zipfile.ZIP_DEFLATED)
/device/linaro/bootloader/edk2/CorebootPayloadPkg/
DBuildAndIntegrationInstructions.txt65 3) Select the option of "Use LZMA compression for payloads".

12