Home
last modified time | relevance | path

Searched refs:LZMA (Results 1 – 25 of 87) sorted by relevance

1234

/external/lzma/DOC/
Dlzma-sdk.txt1 LZMA SDK 18.06
4 LZMA SDK provides the documentation, samples, header files,
6 use 7z / LZMA / LZMA2 / XZ compression.
8 LZMA is an improved version of famous LZ77 compression algorithm.
13 LZMA2 is a LZMA based compression method. LZMA2 provides better
14 multithreading support for compression than LZMA and some other improvements.
18 7z format supports different compression methods: LZMA, LZMA2 and others.
30 LZMA SDK is written and placed in the public domain by Igor Pavlov.
32 Some code in LZMA SDK is based on public domain code from another developers:
37 original LZMA SDK code, either in source code form or as a compiled binary, for
[all …]
Dlzma-history.txt1 HISTORY of the LZMA SDK
6 - The speed for LZMA/LZMA2 compressing was increased by 3-10%,
20 - The speed for LZMA/LZMA2 compressing was increased
33 - Asm\x86\LzmaDecOpt.asm: new optimized LZMA decoder written in asm
34 for x64 with about 30% higher speed than main version of LZMA decoder written in C.
35 - The speed for single-thread LZMA/LZMA2 decoder written in C was increased by 3%.
124 - The BUG in LZMA / LZMA2 encoding code was fixed.
128 - LZMA : LzmaEnc_MemEncode(), LzmaEncode() : LZMA encoding functions
130 That BUG is not related to LZMA encoder version that works via streams.
159 - SFX mudules were added to LZMA SDK
[all …]
Dlzma.txt1 LZMA compression
5 This file describes LZMA encoding and decoding functions written in C language.
7 LZMA is an improved version of famous LZ77 compression algorithm.
12 Note: you can read also LZMA Specification (lzma-specification.txt from LZMA SDK)
14 Also you can look source code for LZMA encoding and decoding:
18 LZMA compressed file format
21 0 1 Special LZMA properties (lc,lp, pb in encoded form)
28 ANSI-C LZMA Decoder
31 Please note that interfaces for ANSI-C code were changed in LZMA SDK 4.58.
32 If you want to use old interfaces you can download previous version of LZMA SDK
[all …]
Dlzma-specification.txt1 LZMA specification (DRAFT version)
7 This specification defines the format of LZMA compressed data and lzma file format.
26 The lzma file contains the raw LZMA stream and the header with related properties.
34 0 1 LZMA model properties (lc, lp, pb) in encoded form
37 13 Compressed data (LZMA stream)
39 LZMA properties:
48 The following code encodes LZMA properties:
57 the LZMA decoder must set the dictionary size variable to (1 << 12).
69 throw "Incorrect LZMA properties";
86 equal to ((2^64) - 1), the LZMA stream decoding must be finished after
[all …]
D7zC.txt4 7z ANSI-C provides 7z/LZMA decoding.
7 LZMA is default and general compression method of 7z format
8 in 7-Zip compression program (www.7-zip.org). LZMA provides high
15 7z ANSI-C Decoder is part of the LZMA SDK.
16 LZMA SDK is written and placed in the public domain by Igor Pavlov.
49 - It supports only LZMA and Copy (no compression) methods with BCJ or BCJ2 filters.
165 - Memory for LZMA decompressing structures
DMethods.txt50 01 - LZMA
90 0E - LZMA (LZMA-zip)
Dinstaller.txt6 7-Zip for installers is part of LZMA SDK.
7 LZMA SDK is written and placed in the public domain by Igor Pavlov.
17 7zr.exe supports only format with these codecs: LZMA, LZMA2, BCJ, BCJ2, ARM, Copy.
109 Small SFX modules support this codecs: LZMA, LZMA2, BCJ, BCJ2, ARM, COPY
/external/lzma/
DNOTICE1 LZMA SDK is written and placed in the public domain by Igor Pavlov.
3 Some code in LZMA SDK is based on public domain code from another developers:
7 You can copy, modify, distribute and perform LZMA SDK code, even for commercial purposes,
10 LZMA SDK code is compatible with open source licenses, for example, you can
/external/lzma/CS/7zip/Compress/LzmaAlone/
DLzmaAlone.csproj54 <Compile Include="..\LZMA\LzmaBase.cs">
55 <Link>LZMA\LzmaBase.cs</Link>
57 <Compile Include="..\LZMA\LzmaDecoder.cs">
58 <Link>LZMA\LzmaDecoder.cs</Link>
60 <Compile Include="..\LZMA\LzmaEncoder.cs">
61 <Link>LZMA\LzmaEncoder.cs</Link>
DLzmaAlone.cs295 Compression.LZMA.Encoder encoder = new Compression.LZMA.Encoder(); in Main2()
326 Compression.LZMA.Decoder decoder = new Compression.LZMA.Decoder(); in Main2()
DLzmaBench.cs252 Compression.LZMA.Encoder encoder = new Compression.LZMA.Encoder(); in LzmaBenchmark()
253 Compression.LZMA.Decoder decoder = new Compression.LZMA.Decoder(); in LzmaBenchmark()
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/sevenz/
DSevenZMethodConfigurationTest.java34 Assert.assertNotNull(new SevenZMethodConfiguration(SevenZMethod.LZMA, in shouldAllowLZMA2OptionsForLZMA()
41 Assert.assertNotNull(new SevenZMethodConfiguration(SevenZMethod.LZMA, 42) in shouldAllowNumberForLZMA()
72 new SevenZMethodConfiguration(SevenZMethod.LZMA, ""); in shouldNotAllowStringOptionsForLZMA()
DSevenZFileTest.java126 test7zUnarchive(getFile("bla.7z"), SevenZMethod.LZMA); in test7zUnarchive()
142 test7zUnarchive(getFile("bla.encrypted.7z"), SevenZMethod.LZMA, // stack LZMA + AES in test7zDecryptUnarchive()
150 test7zUnarchive(getFile("bla.encrypted.7z"), SevenZMethod.LZMA, // stack LZMA + AES in test7zDecryptUnarchiveUsingCharArrayPassword()
/external/lzma/C/Util/LzmaLib/
Dresource.rc3 MY_VERSION_INFO_DLL("LZMA library", "LZMA")
/external/lzma/Java/SevenZip/
DLzmaAlone.java203 SevenZip.Compression.LZMA.Encoder encoder = new SevenZip.Compression.LZMA.Encoder(); in main()
231 SevenZip.Compression.LZMA.Decoder decoder = new SevenZip.Compression.LZMA.Decoder(); in main()
DLzmaBench.java303 SevenZip.Compression.LZMA.Encoder encoder = new SevenZip.Compression.LZMA.Encoder(); in LzmaBenchmark()
304 SevenZip.Compression.LZMA.Decoder decoder = new SevenZip.Compression.LZMA.Decoder(); in LzmaBenchmark()
/external/apache-commons-compress/
DNOTICE.txt8 were derived from the LZMA SDK, version 9.20 (C/ and CPP/7zip/),
11 "LZMA SDK is placed in the public domain." (http://www.7-zip.org/sdk.html)
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/
DCompressorStreamFactory.java148 public static final String LZMA = "lzma"; field in CompressorStreamFactory
331 return LZMA;
514 return LZMA;
609 if (LZMA.equalsIgnoreCase(name)) {
701 if (LZMA.equalsIgnoreCase(name)) {
761 …return Sets.newHashSet(GZIP, BROTLI, BZIP2, XZ, LZMA, PACK200, DEFLATE, SNAPPY_RAW, SNAPPY_FRAMED,…
767 …return Sets.newHashSet(GZIP, BZIP2, XZ, LZMA, PACK200, DEFLATE, SNAPPY_FRAMED, LZ4_BLOCK, LZ4_FRAM…
/external/libpng/
DANNOUNCE12 * libpng-1.6.37.tar.xz (LZMA-compressed, recommended)
17 * lp1637.7z (LZMA-compressed, recommended)
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/
DSevenZTestCase.java60 testSevenZArchiveCreation(SevenZMethod.LZMA); in testSevenZArchiveCreationUsingLZMA()
122 singleByteReadConsistentlyReturnsMinusOneAtEof(SevenZMethod.LZMA); in singleByteReadConsistentlyReturnsMinusOneAtEofUsingLZMA()
165 multiByteReadConsistentlyReturnsMinusOneAtEof(SevenZMethod.LZMA); in multiByteReadConsistentlyReturnsMinusOneAtEofUsingLZMA()
/external/xz-java/
DNEWS41 * Add LZMAOutputStream for encoding to raw LZMA (i.e. LZMA1) streams
53 * Add LZMAInputStream for decoding .lzma files and raw LZMA streams.
77 objects in the LZMA encoder.
/external/elfutils/libdwfl/
Dlzma.c3 #define LZMA macro
/external/lzma/CPP/7zip/Bundles/LzmaCon/
Dresource.rc3 MY_VERSION_INFO_APP("LZMA", "lzma")
/external/lzma/CPP/7zip/Compress/
DLzmaRegister.cpp16 REGISTER_CODEC_E(LZMA,
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/
DSevenZMethod.java40 LZMA(new byte[] { (byte)0x03, (byte)0x01, (byte)0x01 }), enumConstant

1234