HomeSort by relevance Sort by last modified time
    Searched refs:lzma (Results 1 - 25 of 37) sorted by null

1 2

  /external/lzma/xz-embedded/
xz_dec_lzma2.c 15 * Range decoder initialization eats the first five bytes of each LZMA chunk.
20 * Minimum number of usable input buffer to safely decode one LZMA symbol.
139 /* Types of the most recently seen LZMA symbols */
149 * LZMA properties or related bit masks (number of literal
231 /* Uncompressed size of LZMA chunk (2 MiB at maximum) */
235 * Compressed size of LZMA chunk or compressed/uncompressed
242 * the first chunk (LZMA or uncompressed).
247 * True if new LZMA properties are needed. This is false
248 * before the first LZMA chunk.
257 * including lzma.pos_mask are in the first 128 bytes on x86-32
266 struct lzma_dec lzma; member in struct:xz_dec_lzma2
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
LZMA2OutputStream.java 17 import org.tukaani.xz.lzma.LZMAEncoder;
27 private final LZMAEncoder lzma; field in class:LZMA2OutputStream
64 lzma = LZMAEncoder.getInstance(rc,
70 lz = lzma.getLZEncoder();
103 if (lzma.encodeForLZMA2())
114 int uncompressedSize = lzma.getUncompressedSize();
124 lzma.reset();
125 uncompressedSize = lzma.getUncompressedSize();
131 lzma.resetUncompressedSize();
190 lzma.encodeForLZMA2()
    [all...]
LZMA2Encoder.java 12 import org.tukaani.xz.lzma.LZMAEncoder;
LZMA2InputStream.java 18 import org.tukaani.xz.lzma.LZMADecoder;
51 private LZMADecoder lzma; field in class:LZMA2InputStream
86 // Round dictionary size upward to a multiple of 16. This way LZMA
87 // can use LZDecoder.getPos() for calculating LZMA's posMask.
230 lzma.decode();
286 lzma.reset();
314 lzma = new LZMADecoder(lz, rc, lc, lp, pb);
LZMAInputStream.java 18 import org.tukaani.xz.lzma.LZMADecoder;
21 * Decompresses legacy .lzma files and raw LZMA streams (no .lzma header).
29 * the end of the LZMA stream.
41 * LZMA allows dictionaries up to one byte less than 4 GiB. This
52 private LZMADecoder lzma; field in class:LZMAInputStream
68 * the given dictionary size and LZMA properties byte (lc, lp, and pb).
70 * @param dictSize LZMA dictionary size as bytes, should be
74 * @param propsByte LZMA properties byte that encodes the value
    [all...]
LZMA2Options.java 15 import org.tukaani.xz.lzma.LZMAEncoder;
  /external/curl/
maketgz 154 # Now make an lzma archive from the tar.gz original
157 lzma="curl-$version.tar.lzma"
158 echo "Generating $lzma"
159 gzip -dc $targz | lzma --best - > $lzma
185 ls -l $targz $bzip2 $zip $lzma
188 echo "gpg -b -a $targz && gpg -b -a $bzip2 && gpg -b -a $zip && gpg -b -a $lzma"
  /external/syslinux/dosutil/
Makefile 29 $(UPX) --ultra-brute --lzma $@ || \
37 $(UPX) --ultra-brute --lzma $@ || \
45 $(UPX) --ultra-brute --lzma $@ || \
  /external/toybox/toys/pending/
xzcat.c 1011 * This enum is used to track which LZMA symbols have occurred most recently
1084 * Match byte is used when the previous LZMA symbol was something else than
1428 struct lzma_dec lzma; member in struct:xz_dec_lzma2
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
Optimum.java 11 package org.tukaani.xz.lzma;
40 * Sets to indicate one LZMA symbol (literal, rep, or match).
50 * Sets to indicate two LZMA symbols of which the first one is a literal.
61 * Sets to indicate three LZMA symbols of which the second one
State.java 11 package org.tukaani.xz.lzma;
LZMACoder.java 11 package org.tukaani.xz.lzma;
LZMADecoder.java 11 package org.tukaani.xz.lzma;
40 * Returns true if LZMA end marker was detected. It is encoded as
43 * in the LZMA layer.
LZMAEncoderFast.java 11 package org.tukaani.xz.lzma;
  /external/linux-kselftest/
.gitignore 30 *.lzma
  /external/lzma/CPP/7zip/Bundles/LzmaCon/
makefile 1 PROG = lzma.exe
  /external/squashfs-tools/squashfs-tools/
lzma_xz_wrapper.c 26 #include <lzma.h>
66 * the LZMA header. 8 bytes is excessively large for squashfs
67 * but this is the standard LZMA header and which is expected by
160 .name = "lzma",
xz_wrapper.c 28 #include <lzma.h>
  /external/syslinux/dos/
Makefile 70 $(UPX) --lzma --ultra-brute $@ || \
  /external/elfutils/libdwfl/
Makefile.am 77 if LZMA
78 libdwfl_a_SOURCES += lzma.c
gzip.c 34 #ifdef LZMA
36 # include <lzma.h>
40 # define MAGIC2 "\x5d\0" /* Raw LZMA format. */
  /external/kmod/libkmod/
libkmod-file.c 30 #include <lzma.h>
  /external/vboot_reference/utility/
bmpblk_util.c 8 #include <lzma.h>
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaAlone.cs 81 System.Console.WriteLine("\nUsage: LZMA <e|d> [<switches>...] inputFile outputFile\n" +
295 Compression.LZMA.Encoder encoder = new Compression.LZMA.Encoder();
325 throw (new Exception("input .lzma is too short"));
326 Compression.LZMA.Decoder decoder = new Compression.LZMA.Decoder();
  /external/libxml2/
xzlib.c 2 * xzlib.c: front end for the transparent suport of lzma compression
3 * at the I/O layer, based on an example file from lzma project
38 #include <lzma.h>
45 #define LOOK 0 /* look for a gzip/lzma header */
48 #define LZMA 3 /* decompress a lzma stream */
50 /* internal lzma file state data structure */
52 int mode; /* see lzma modes above */
63 uint64_t start; /* where the lzma data started, for rewinding */
66 int direct; /* true if last read direct, false if lzma */
    [all...]

Completed in 498 milliseconds

1 2