/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | Compression.cpp | 58 Error compression::decompress(DebugCompressionType T, ArrayRef<uint8_t> Input, in decompress() function in compression 62 return zlib::decompress(Input, Output, UncompressedSize); in decompress() 64 return zstd::decompress(Input, Output, UncompressedSize); in decompress() 69 Error compression::decompress(compression::Format F, ArrayRef<uint8_t> Input, in decompress() function in compression 74 return zlib::decompress(Input, Output, UncompressedSize); in decompress() 76 return zstd::decompress(Input, Output, UncompressedSize); in decompress() 81 Error compression::decompress(DebugCompressionType T, ArrayRef<uint8_t> Input, in decompress() function in compression 84 return decompress(formatFor(T), Input, Output, UncompressedSize); in decompress() 123 Error zlib::decompress(ArrayRef<uint8_t> Input, uint8_t *Output, in decompress() function in zlib 135 Error zlib::decompress(ArrayRef<uint8_t> Input, in decompress() function in zlib [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | Compression.h | 47 Error decompress(ArrayRef<uint8_t> Input, uint8_t *Output, 50 Error decompress(ArrayRef<uint8_t> Input, SmallVectorImpl<uint8_t> &Output, 68 Error decompress(ArrayRef<uint8_t> Input, uint8_t *Output, 71 Error decompress(ArrayRef<uint8_t> Input, SmallVectorImpl<uint8_t> &Output, 120 Error decompress(DebugCompressionType T, ArrayRef<uint8_t> Input, 122 Error decompress(Format F, ArrayRef<uint8_t> Input, 124 Error decompress(DebugCompressionType T, ArrayRef<uint8_t> Input,
|
/freebsd/sys/contrib/xz-embedded/userspace/ |
H A D | boottest.c | 45 ret = decompress(in, in_size, NULL, NULL, out, NULL, &error); in test_buf_to_buf() 56 ret = decompress(in, in_size, NULL, &flush, NULL, &in_used, &error); in test_buf_to_cb() 63 ret = decompress(NULL, 0, &fill, &flush, NULL, NULL, &error); in test_cb_to_cb() 75 ret = decompress(in, 0, &fill, NULL, out, &in_used, &error); in test_cb_to_buf()
|
/freebsd/sys/contrib/openzfs/lib/libzstd/ |
H A D | Makefile.am | 28 module/zstd/lib/decompress/huf_decompress.c \ 29 module/zstd/lib/decompress/zstd_ddict.c \ 30 module/zstd/lib/decompress/zstd_decompress.c \ 31 module/zstd/lib/decompress/zstd_decompress_block.c \
|
/freebsd/sys/contrib/zstd/lib/ |
H A D | BUCK | 9 ':decompress', 26 name='decompress', 30 ('decompress', '*_impl.h'), 32 srcs=glob(['decompress/zstd*.c']), 117 'decompress/huf_decompress.c',
|
H A D | libzstd.mk | 127 ZSTD_DECOMPRESS_FILES := $(sort $(wildcard $(LIBZSTD)/decompress/*.c)) 132 ZSTD_DECOMPRESS_AMD64_ASM_FILES := $(sort $(wildcard $(LIBZSTD)/decompress/*_amd64.S)) 201 ZSTD_SUBDIR := $(LIBZSTD)/common $(LIBZSTD)/compress $(LIBZSTD)/decompress $(LIBZSTD)/dictBuilder $…
|
/freebsd/usr.bin/compress/ |
H A D | compress.c | 50 static void decompress(const char *, const char *, int); 113 (void)decompress("/dev/stdin", "/dev/stdout", bits); in main() 151 decompress("/dev/stdin", "/dev/stdout", bits); in main() 165 decompress(newname, in main() 174 decompress(*argv, in main() 273 decompress(const char *in, const char *out, int bits) in decompress() function
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zdb/ |
H A D | zdb_display_block.ksh | 90 log_fail "zdb -R :bd (block 0 display/decompress) failed" 98 log_fail "zdb -R :db80 (block 1 display/decompress) failed" 106 log_fail "zdb -R :b80d (block 1 display/decompress) failed"
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | Decompressor.h | 35 return decompress({(uint8_t *)Out.data(), (size_t)DecompressedSize}); in resizeAndDecompress() 39 Error decompress(MutableArrayRef<uint8_t> Output);
|
/freebsd/sys/contrib/zstd/examples/ |
H A D | simple_decompression.c | 16 static void decompress(const char* fname) in decompress() function 60 decompress(argv[1]); in main()
|
H A D | dictionary_decompression.c | 30 static void decompress(const char* fname, const ZSTD_DDict* ddict) in decompress() function 94 for (u=1; u<argc-1; u++) decompress(argv[u], dictPtr); in main()
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | Decompressor.cpp | 66 Error Decompressor::decompress(MutableArrayRef<uint8_t> Output) { in decompress() function in Decompressor 67 return compression::decompress(CompressionType, in decompress()
|
/freebsd/usr.bin/gzip/ |
H A D | gzexe | 61 decompress () { 165 elif ! decompress "$1"; then
|
/freebsd/sys/contrib/zstd/programs/ |
H A D | README.md | 10 - `zstd-decompress` : version of CLI which can only decompress zstd format 23 - __ZSTD_LEGACY_SUPPORT__ : `zstd` can decompress files compressed by older versions of `zstd`. 34 - __HAVE_ZLIB__ : `zstd` can compress and decompress files in `.gz` format. 44 - __HAVE_LZMA__ : `zstd` can compress and decompress files in `.xz` and `.lzma` formats. 54 - __HAVE_LZ4__ : `zstd` can compress and decompress files in `.lz4` formats. 73 The resulting binary will only be able to decompress files. 75 A corresponding `Makefile` target using this ability is `zstd-decompress`. 98 - `zcat` : will decompress and output target file using any of the supported formats. `gzcat` and `… 103 - `unzstd` and `unlz4` will decompress any of the supported format. 124 3. Decompress with the dictionary: `zstd --decompress FILE.zst -D dictionaryName` [all …]
|
/freebsd/sys/cddl/contrib/opensolaris/uts/common/sys/ |
H A D | compress.h | 39 extern size_t decompress(void *, void *, size_t, size_t);
|
/freebsd/sys/opencrypto/ |
H A D | xform_comp.h | 44 uint32_t (*decompress) (uint8_t *, uint32_t, uint8_t **); member
|
/freebsd/sys/geom/uzip/ |
H A D | g_uzip_dapi.h | 35 g_uzip_dapi_decompress_t decompress; member
|
H A D | g_uzip_zlib.c | 107 zp->pub.decompress = &g_uzip_zlib_decompress; in g_uzip_zlib_ctor()
|
H A D | g_uzip_lzma.c | 109 lzp->pub.decompress = &g_uzip_lzma_decompress; in g_uzip_lzma_ctor()
|
/freebsd/usr.bin/compress/doc/ |
H A D | revision.log | 11 * used by decompress: tab_suffix[1<<BITS], stack[8000]. Updated USERMEM 32 * Integrate decompress() stack speedups (from early pointer mods by McKie). 70 * from VAX to PDP sites. Also sped up decompress() [fwrite->putc] and
|
/freebsd/lib/libbz2/ |
H A D | Makefile | 7 SRCS= bzlib.c blocksort.c compress.c crctable.c decompress.c \
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/fault/ |
H A D | decompress_fault.ksh | 51 log_must zinject -a -t data -e decompress -f 20 $mntpt/testfile.0
|
/freebsd/lib/libzstd/ |
H A D | Makefile | 50 ${ZSTDDIR}/lib/decompress ${ZSTDDIR}/lib/deprecated \
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | Opts.td | 24 def decompress : FF<"decompress", "Dump decompressed section content when used with -x or -p">; 143 def : F<"z", "Alias for --decompress">, Alias<decompress>;
|
/freebsd/usr.sbin/ppp/ |
H A D | pred.c | 101 decompress(struct pred1_state *state, u_char *source, u_char *dest, int len) in decompress() function 236 len1 = decompress(state, cp, pp, olen - 4); in Pred1Input()
|