Home
last modified time | relevance | path

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

1234

/external/u-boot/lib/lzma/
Dhistory.txt1 HISTORY of the LZMA SDK
11 - The BUG in LZMA SDK 9.* was fixed: LZMA2 codec didn't work,
51 - The bug in ANSI-C LZMA Decoder was fixed:
55 - LZMA SDK is placed in the public domain.
66 LZMA Encoder in fast compression mode could access memory outside of
72 - ANSI-C LZMA Decoder was rewritten for speed optimizations.
73 - ANSI-C LZMA Encoder was included to LZMA SDK.
74 - C++ LZMA code now is just wrapper over ANSI-C code.
79 - Speed optimizations in Ñ++ LZMA Decoder.
90 was included to LZMA SDK.
[all …]
Dlzma.txt1 LZMA SDK 9.20
4 LZMA SDK provides the documentation, samples, header files, libraries,
5 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
11 LZMA is an improved version of famous LZ77 compression algorithm.
21 LZMA SDK is written and placed in the public domain by Igor Pavlov.
23 Some code in LZMA SDK is based on public domain code from another developers:
28 LZMA SDK Contents
31 LZMA SDK includes:
[all …]
DREADME.txt2 The original source cames from the LZMA SDK web page:
20 function that wraps the complex LzmaDecode() function from the LZMA SDK. The
25 library directly from U-BOOT code without touching the original LZMA SDK's
/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()
/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/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/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/libpng/
DANNOUNCE10 libpng-1.6.34.tar.xz (LZMA-compressed, recommended)
16 lpng1634.7z (LZMA-compressed, recommended)
/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/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/elfutils/libdwfl/
Dlzma.c3 #define LZMA macro
/external/lzma/CPP/7zip/Bundles/LzmaCon/
Dresource.rc3 MY_VERSION_INFO_APP("LZMA", "lzma")

1234