| /src/external/public-domain/xz/dist/build-aux/ |
| version.sh | 19 src/liblzma/api/lzma/version.h \
|
| /src/external/public-domain/xz/dist/src/liblzma/api/lzma/ |
| hardware.h | 4 * \file lzma/hardware.h 6 * \note Never include this file directly. Use <lzma.h> instead. 31 # error Never include this file directly. Use <lzma.h> instead.
|
| delta.h | 4 * \file lzma/delta.h 6 * \note Never include this file directly. Use <lzma.h> instead. 14 # error Never include this file directly. Use <lzma.h> instead.
|
| check.h | 4 * \file lzma/check.h 6 * \note Never include this file directly. Use <lzma.h> instead. 14 # error Never include this file directly. Use <lzma.h> instead.
|
| index_hash.h | 4 * \file lzma/index_hash.h 6 * \note Never include this file directly. Use <lzma.h> instead. 17 # error Never include this file directly. Use <lzma.h> instead.
|
| vli.h | 4 * \file lzma/vli.h 6 * \note Never include this file directly. Use <lzma.h> instead. 25 # error Never include this file directly. Use <lzma.h> instead.
|
| bcj.h | 4 * \file lzma/bcj.h 6 * \note Never include this file directly. Use <lzma.h> instead. 14 # error Never include this file directly. Use <lzma.h> instead.
|
| lzma12.h | 4 * \file lzma/lzma12.h 6 * \note Never include this file directly. Use <lzma.h> instead. 14 # error Never include this file directly. Use <lzma.h> instead. 21 * LZMA1 is the very same thing as what was called just LZMA in LZMA Utils, 22 * 7-Zip, and LZMA SDK. It's called LZMA1 here to prevent developers from 23 * accidentally using LZMA when they actually want LZMA2. 266 * you create a .xz or .lzma file with preset dictionary, it
|
| stream_flags.h | 4 * \file lzma/stream_flags.h 6 * \note Never include this file directly. Use <lzma.h> instead. 14 # error Never include this file directly. Use <lzma.h> instead.
|
| version.h | 4 * \file lzma/version.h 6 * \note Never include this file directly. Use <lzma.h> instead. 14 # error Never include this file directly. Use <lzma.h> instead. 65 * the version number of Igor Pavlov's LZMA SDK.
|
| base.h | 4 * \file lzma/base.h 6 * \note Never include this file directly. Use <lzma.h> instead. 14 # error Never include this file directly. Use <lzma.h> instead. 160 * decode .lzma format file with lzma_stream_decoder,
|
| /src/sys/arch/evbmips/conf/ |
| Makefile.evbmips.inc | 56 .elif ${NEED_UBOOTIMAGE:Mlzma} == "lzma" 57 #TOOL_LZMA?= /usr/pkg/bin/lzma e 59 TOOL_XZ?= xz -F lzma 61 MKUBOOTIMAGEARGS+= -C lzma 63 # echo ${TOOL_LZMA} e $@.bin $@.bin.lzma -d20 -pb4; \ 64 # ${TOOL_LZMA} e $@.bin $@.bin.lzma -d20 -pb4; \ 68 rm -f $@.bin.lzma; \ 71 lzmainfo $@.bin.lzma; \ 72 echo ${TOOL_MKUBOOTIMAGE} ${MKUBOOTIMAGEARGS} $@.bin.lzma $@.ub; \ 73 ${TOOL_MKUBOOTIMAGE} ${MKUBOOTIMAGEARGS} $@.bin.lzma $@.ub) || [all...] |
| /src/external/public-domain/xz/dist/src/liblzma/common/ |
| microlzma_encoder.c | 17 lzma_next_coder lzma; member in struct:__anon366 19 /// LZMA properties byte (lc/lp/pb) 33 // the LZMA properties byte. 47 if (coder->lzma.set_out_limit(coder->lzma.coder, 55 const lzma_ret ret = coder->lzma.code(coder->lzma.coder, allocator, 72 // The LZMA encoder likely read more input than it was able to encode. 85 lzma_next_end(&coder->lzma, allocator); 108 coder->lzma = LZMA_NEXT_CODER_INIT [all...] |
| microlzma_decoder.c | 18 lzma_next_coder lzma; member in struct:__anon365 33 /// LZMA dictionary size as given by the application 63 // in that case the LZMA decoder will try to decode more input even 69 // the available output space to prevent the LZMA decoder from 111 return_if_error(lzma_next_filter_init(&coder->lzma, 114 // Pass one dummy 0x00 byte to the LZMA decoder since that 118 if (coder->lzma.code(coder->lzma.coder, allocator, 127 // The rest is normal LZMA decoding. 128 lzma_ret ret = coder->lzma.code(coder->lzma.coder, allocator [all...] |
| /src/external/public-domain/xz/dist/src/liblzma/lzma/ |
| lzma2_decoder.c | 33 /// LZMA decoder 34 lzma_lz_decoder lzma; member in struct:__anon393 36 /// Uncompressed size of LZMA chunk 44 /// first LZMA chunk. 48 /// first chunk (LZMA or uncompressed). 76 // Dictionary reset implies that next LZMA chunk has 85 // LZMA chunk. The highest five bits of the 108 coder->lzma.reset(coder->lzma.coder, 140 coder->lzma.set_uncompressed(coder->lzma.coder [all...] |
| lzma2_encoder.c | 28 /// LZMA encoder 29 void *lzma; member in struct:__anon394 31 /// LZMA options currently in use. 48 /// Buffer to hold the chunk header and LZMA compressed data 157 coder->lzma, &coder->opt_cur)); 172 // Must flush immediately since the next LZMA symbol 187 // Call the LZMA encoder until the chunk is finished. 188 const lzma_ret ret = lzma_lzma_encode(coder->lzma, mf, 217 // the chunk as LZMA. 266 lzma_free(coder->lzma, allocator) [all...] |
| /src/external/public-domain/xz/dist/src/liblzma/ |
| validate_map.sh | 93 api/lzma/*.h \
|
| /src/external/public-domain/xz/lib/ |
| Makefile | 5 LIB= lzma 10 .PATH: ${XZSRCDIR}/src/liblzma/api ${XZSRCDIR}/src/liblzma/api/lzma 12 filter.h hardware.h index.h index_hash.h lzma.h lzma12.h \ 16 INCSDIR= /usr/include/lzma 29 CPPFLAGS+= -I${XZSRCDIR}/src/liblzma/lzma 72 .PATH: ${XZSRCDIR}/src/liblzma/lzma
|
| /src/usr.bin/gzip/ |
| zdiff | 58 *[._-]lzma)
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_write_set_format_zip.c | 56 #include <lzma.h> 194 * mutandis the library changes. ZIP's LZMA format (id 14), 196 * modified LZMA Alone format requires a bit more 202 } lzma; member in union:zip::__anon7124 251 /* ZIP's LZMA format requires the use of a alas not exposed in LibLZMA 373 } else if (strcmp(val, "lzma") == 0) { 379 "lzma compression not supported"); 424 // Arbitrarily choosing LZMA of the two LZMA methods 663 "lzma compression not supported") [all...] |
| archive_write_add_filter_lrzip.c | 45 enum { lzma = 0, bzip2, gzip, lzo, none, zpaq } compression; enumerator in enum:write_lrzip::__anon7092 140 case lzma:/* default compression */
|
| /src/external/public-domain/xz/dist/tests/ |
| test_files.sh | 162 # .lzma # 165 for I in "$srcdir"/files/good-*.lzma 175 for I in "$srcdir"/files/bad-*.lzma
|
| /src/external/public-domain/xz/dist/doc/examples/ |
| 01_compress_easy.c | 21 #include <lzma.h> 72 // lzma/container.h (src/liblzma/api/lzma/container.h in the source 73 // package or e.g. /usr/include/lzma/container.h depending on the 209 // so it must be an error code. See lzma/base.h 210 // (src/liblzma/api/lzma/base.h in the source package 211 // or e.g. /usr/include/lzma/base.h depending on the
|
| 02_decompress.c | 21 #include <lzma.h> 56 // be combined with bitwise-or. See lzma/container.h 57 // (src/liblzma/api/lzma/container.h in the source package or e.g. 58 // /usr/include/lzma/container.h depending on the install prefix) 68 // lzma/container.h (src/liblzma/api/lzma/container.h in the source 69 // package or e.g. /usr/include/lzma/container.h depending on the 175 // so it must be an error code. See lzma/base.h 176 // (src/liblzma/api/lzma/base.h in the source package 177 // or e.g. /usr/include/lzma/base.h depending on th [all...] |
| 03_compress_custom.c | 21 #include <lzma.h> 30 // are declared in lzma/lzma12.h (src/liblzma/api/lzma/lzma12.h in the 31 // source package or e.g. /usr/include/lzma/lzma12.h depending on 50 // See lzma/lzma12.h for details of all LZMA2 options. 60 // See lzma/filter.h for more information about the lzma_filter
|