Home
last modified time | relevance | path

Searched full:compressor (Results 1 – 25 of 95) sorted by relevance

1234

/freebsd/sys/sys/
H A Dcompressor.h40 struct compressor;
43 struct compressor *compressor_init(compressor_cb_t cb, int format,
45 int compressor_format(const struct compressor *stream);
46 void compressor_reset(struct compressor *stream);
47 int compressor_write(struct compressor *stream, void *data,
49 int compressor_flush(struct compressor *stream);
50 void compressor_fini(struct compressor *stream);
/freebsd/sys/contrib/zlib/doc/
H A Drfc1950.txt138 the specifications presented here; a compliant compressor must
290 bytes which are initially fed to the compressor without
294 which dictionary has been used by the compressor.
301 0 - compressor used fastest algorithm
302 1 - compressor used fast algorithm
303 2 - compressor used default algorithm
304 3 - compressor used maximum compression, slowest algorithm
345 A compliant compressor must produce streams with correct CMF, FLG
348 the compressor may use only preset dictionaries that are specified
350 preset dictionary feature, the compressor must not set the FDICT
[all …]
H A Drfc1951.txt122 compressor.
159 the specifications presented here; a compliant compressor must
763 A compressor may limit further the ranges of values specified in
766 32K. Similarly, a compressor may limit the size of blocks so that
780 recommended that the implementor of a compressor follow the general
791 specification per se, and a compressor need not follow it in order to
794 The compressor terminates a block when it determines that starting a
796 fills up the compressor's block buffer.
798 The compressor uses a chained hash table to find duplicated strings,
802 compressor examines the hash chain for XYZ. If the chain is empty,
[all …]
H A Drfc1952.txt109 compressor.
147 specifications presented here; a compliant compressor must produce
313 an optional indication, which the compressor may set by
320 this bit, since a compressor always has the option of
379 XFL = 2 - compressor used maximum compression,
381 XFL = 4 - compressor used fastest algorithm
464 A compliant compressor must produce files with correct ID1,
467 OS, 0 for all others). The compressor must set all reserved
/freebsd/sys/kern/
H A Dsubr_compressor.c41 #include <sys/compressor.h>
47 MALLOC_DEFINE(M_COMPRESS, "compressor", "kernel compression subroutines");
57 struct compressor { struct
514 struct compressor *
519 struct compressor *s; in compressor_init()
542 compressor_format(const struct compressor *stream) in compressor_format()
548 compressor_reset(struct compressor *stream) in compressor_reset()
555 compressor_write(struct compressor *stream, void *data, size_t len) in compressor_write()
563 compressor_flush(struct compressor *stream) in compressor_flush()
571 compressor_fini(struct compressor *stream) in compressor_fini()
/freebsd/sys/contrib/zstd/zlibWrapper/examples/
H A Dzwrapbench.c154 const void* dictBuffer, size_t dictBufferSize, BMK_compressor compressor) in BMK_benchMem() argument
235 if (compressor == BMK_ZSTD) { in BMK_benchMem()
261 } else if (compressor == BMK_ZSTD_STREAM) { in BMK_benchMem()
305 …} else if (compressor == BMK_ZWRAP_ZLIB_REUSE || compressor == BMK_ZWRAP_ZSTD_REUSE || compressor in BMK_benchMem()
309 …if (compressor == BMK_ZLIB_REUSE || compressor == BMK_ZWRAP_ZLIB_REUSE) ZWRAP_useZSTDcompression(0… in BMK_benchMem()
349 … if (compressor == BMK_ZLIB || compressor == BMK_ZWRAP_ZLIB) ZWRAP_useZSTDcompression(0); in BMK_benchMem()
404 if (compressor == BMK_ZSTD) { in BMK_benchMem()
425 } else if (compressor == BMK_ZSTD_STREAM) { in BMK_benchMem()
451 …} else if (compressor == BMK_ZWRAP_ZLIB_REUSE || compressor == BMK_ZWRAP_ZSTD_REUSE || compressor in BMK_benchMem()
454 if (compressor == BMK_ZLIB_REUSE) ZWRAP_setDecompressionType(ZWRAP_FORCE_ZLIB); in BMK_benchMem()
[all …]
/freebsd/crypto/openssl/crypto/comp/
H A Dc_zstd.c135 ZSTD_CStream *compressor; member
147 state->compressor = ZSTD_createCStream(); in zstd_stateful_init()
149 state->compressor = ZSTD_createCStream_advanced(zstd_mem_funcs); in zstd_stateful_init()
151 if (state->compressor == NULL) in zstd_stateful_init()
153 ZSTD_initCStream(state->compressor, ZSTD_CLEVEL_DEFAULT); in zstd_stateful_init()
167 ZSTD_freeCStream(state->compressor); in zstd_stateful_init()
178 ZSTD_freeCStream(state->compressor); in zstd_stateful_finish()
207 ret = ZSTD_endStream(state->compressor, &outbuf); in zstd_stateful_compress_block()
221 ret = ZSTD_compressStream2(state->compressor, &outbuf, &inbuf, ZSTD_e_continue); in zstd_stateful_compress_block()
231 ret = ZSTD_flushStream(state->compressor, &outbuf); in zstd_stateful_compress_block()
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dnvidia,tegra210-mbdrc.yaml10 The Multi Band Dynamic Range Compressor (MBDRC) is part of Output
42 dynamic-range-compressor@702d8200 {
H A Dnvidia,tegra210-ope.yaml11 PEQ (Parametric Equalizer) and MBDRC (Multi Band Dynamic Range Compressor)
69 '^dynamic-range-compressor@[0-9a-f]+$':
/freebsd/sys/contrib/device-tree/Bindings/display/exynos/
H A Dexynos-mic.txt1 Device-Tree bindings for Samsung Exynos SoC mobile image compressor (MIC)
3 MIC (mobile image compressor) resides between decon and mipi dsi. Mipi dsi is
/freebsd/sys/contrib/device-tree/Bindings/display/samsung/
H A Dsamsung,exynos5433-mic.yaml7 title: Samsung Exynos5433 SoC Mobile Image Compressor (MIC)
16 MIC (Mobile Image Compressor) resides between DECON and MIPI DSI. MIPI DSI is
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DBitfields.h116 /// `Compressor` is used to manipulate the bits of a (possibly signed) integer
118 /// `Compressor` is specialized on signed-ness so no runtime cost is incurred.
121 struct Compressor { struct
134 template <typename T, unsigned Bits> struct Compressor<T, Bits, false> { argument
160 using C = Compressor<IntegerType, Bitfield::Bits>;
/freebsd/usr.sbin/virtual_oss/virtual_oss/
H A Dvirtual_oss.8177 Enable device compressor in receive direction.
180 Enable output compressor and set knee, attack and decay.
186 gain of the compressor will work.
191 The reasoning behind this is that the compressor should react almost
H A DMakefile5 compressor.c \
/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_bzip2.c134 /* This way, bzip2 compressor supports the same 0..9 in archive_compressor_bzip2_options()
274 "Failed to clean up compressor"); in archive_compressor_bzip2_close()
295 * Utility function to push input data through compressor, writing
329 /* In non-finishing case, did compressor in drive_compressor()
H A Darchive_write_add_filter_gzip.c371 "Failed to clean up compressor"); in archive_compressor_gzip_close()
378 * Utility function to push input data through compressor,
411 /* In non-finishing case, check if compressor in drive_compressor()
/freebsd/sys/contrib/zstd/zlibWrapper/
H A DREADME.md88 During streaming compression the compressor never knows how big is data to compress.
89 …an be improved by providing size of source data to the compressor. By default streaming compressor
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_ldm.h53 * block compressor. The literals section of every sequence is passed to the
54 * secondary block compressor, and those sequences are interspersed with the
H A Dzstd_ldm.c687 /* Loop through each sequence and apply the block compressor to the literals */ in ZSTD_ldm_blockCompress()
699 /* Fill tables for block compressor */ in ZSTD_ldm_blockCompress()
702 /* Run the block compressor */ in ZSTD_ldm_blockCompress()
703 …DEBUGLOG(5, "pos %u : calling block compressor on segment of size %u", (unsigned)(ip-istart), sequ… in ZSTD_ldm_blockCompress()
719 /* Fill the tables for the block compressor */ in ZSTD_ldm_blockCompress()
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_ldm.h54 * block compressor. The literals section of every sequence is passed to the
55 * secondary block compressor, and those sequences are interspersed with the
H A Dzstd_ldm.c583 /* Loop through each sequence and apply the block compressor to the lits */ in ZSTD_ldm_blockCompress()
595 /* Fill tables for block compressor */ in ZSTD_ldm_blockCompress()
598 /* Run the block compressor */ in ZSTD_ldm_blockCompress()
599 …DEBUGLOG(5, "pos %u : calling block compressor on segment of size %u", (unsigned)(ip-istart), sequ… in ZSTD_ldm_blockCompress()
615 /* Fill the tables for the block compressor */ in ZSTD_ldm_blockCompress()
/freebsd/contrib/xz/src/xz/
H A Dxz.1215 the amount of memory that the compressor needed when
767 but with higher compressor and decompressor memory requirements.
825 CompMem contains the compressor memory requirements
854 but compressor memory usage increases a little at preset levels
1294 Single-threaded compressor will give the smallest file size but
1295 only the output from the multi-threaded compressor can be decompressed
1306 will use the multi-threaded compressor
1370 .SS "Custom compressor filter chains"
1827 which makes the compressor determine a reasonable
2715 the compressor memory usage too,
[all …]
/freebsd/release/packages/ucl/
H A Dbzip2-all.ucl1 comment = "A block-sorting data compressor"
/freebsd/sys/dev/zlib/
H A Dzcalloc.c10 MALLOC_DEFINE(M_ZLIB, "zlib", "ZLIB Compressor");
/freebsd/sys/dev/qat/qat_api/common/compression/
H A Ddc_header_footer.c78 /* XFL = 4 - compressor used fastest compression, */ in cpaDcGenerateHeader()
79 /* XFL = 2 - compressor used maximum compression. */ in cpaDcGenerateHeader()

1234