Searched refs:decompress (Results 1 - 25 of 55) sorted by relevance

123

/freebsd-current/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dcompress.h39 extern size_t decompress(void *, void *, size_t, size_t);
/freebsd-current/sys/geom/uzip/
H A Dg_uzip_dapi.h35 g_uzip_dapi_decompress_t decompress; member in struct:g_uzip_dapi
H A Dg_uzip_zlib.c107 zp->pub.decompress = &g_uzip_zlib_decompress;
H A Dg_uzip_lzma.c109 lzp->pub.decompress = &g_uzip_lzma_decompress;
H A Dg_uzip_zstd.c74 printf("%s: UZIP(zstd) decompress failed: %s\n", gp_name,
148 sc->guz_pub.decompress = guz_zstd_decompress;
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DCompression.cpp58 Error compression::decompress(DebugCompressionType T, ArrayRef<uint8_t> Input, function in class:compression
62 return zlib::decompress(Input, Output, UncompressedSize);
64 return zstd::decompress(Input, Output, UncompressedSize);
69 Error compression::decompress(compression::Format F, ArrayRef<uint8_t> Input, function in class:compression
74 return zlib::decompress(Input, Output, UncompressedSize);
76 return zstd::decompress(Input, Output, UncompressedSize);
81 Error compression::decompress(DebugCompressionType T, ArrayRef<uint8_t> Input, function in class:compression
84 return decompress(formatFor(T), Input, Output, UncompressedSize);
123 Error zlib::decompress(ArrayRef<uint8_t> Input, uint8_t *Output, function in class:zlib
135 Error zlib::decompress(ArrayRe function in class:zlib
151 Error zlib::decompress(ArrayRef<uint8_t> Input, uint8_t *UncompressedBuffer, function in class:zlib
155 Error zlib::decompress(ArrayRef<uint8_t> Input, function in class:zlib
182 Error zstd::decompress(ArrayRef<uint8_t> Input, uint8_t *Output, function in class:zstd
195 Error zstd::decompress(ArrayRef<uint8_t> Input, function in class:zstd
211 Error zstd::decompress(ArrayRef<uint8_t> Input, uint8_t *Output, function in class:zstd
215 Error zstd::decompress(ArrayRef<uint8_t> Input, function in class:zstd
[all...]
/freebsd-current/sys/contrib/xz-embedded/userspace/
H A Dboottest.c45 ret = decompress(in, in_size, NULL, NULL, out, NULL, &error);
56 ret = decompress(in, in_size, NULL, &flush, NULL, &in_used, &error);
63 ret = decompress(NULL, 0, &fill, &flush, NULL, NULL, &error);
75 ret = decompress(in, 0, &fill, NULL, out, &in_used, &error);
/freebsd-current/sys/opencrypto/
H A Dxform_comp.h44 uint32_t (*decompress) (uint8_t *, uint32_t, uint8_t **); member in struct:comp_algo
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DCompression.h47 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,
117 Error decompress(DebugCompressionType T, ArrayRef<uint8_t> Input,
119 Error decompress(Format F, ArrayRef<uint8_t> Input,
121 Error decompress(DebugCompressionType T, ArrayRef<uint8_t> Input,
/freebsd-current/sys/contrib/openzfs/lib/libzstd/
H A DMakefile.am26 module/zstd/lib/decompress/huf_decompress.c \
27 module/zstd/lib/decompress/zstd_ddict.c \
28 module/zstd/lib/decompress/zstd_decompress.c \
29 module/zstd/lib/decompress/zstd_decompress_block.c \
/freebsd-current/sys/contrib/zstd/examples/
H A Dsimple_decompression.c16 static void decompress(const char* fname) function
60 decompress(argv[1]);
H A Ddictionary_decompression.c30 static void decompress(const char* fname, const ZSTD_DDict* ddict) function
94 for (u=1; u<argc-1; u++) decompress(argv[u], dictPtr);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Object/
H A DDecompressor.h35 return decompress({(uint8_t *)Out.data(), (size_t)DecompressedSize});
39 Error decompress(MutableArrayRef<uint8_t> Output);
/freebsd-current/lib/libbz2/
H A DMakefile8 SRCS= bzlib.c blocksort.c compress.c crctable.c decompress.c \
/freebsd-current/contrib/llvm-project/llvm/lib/Object/
H A DDecompressor.cpp66 Error Decompressor::decompress(MutableArrayRef<uint8_t> Output) { function in class:Decompressor
67 return compression::decompress(CompressionType,
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zdb/
H A Dzdb_display_block.ksh90 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-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/fault/
H A Ddecompress_fault.ksh51 log_must zinject -a -t data -e decompress -f 20 $mntpt/testfile.0
/freebsd-current/usr.bin/gzip/
H A Dgzexe48 /bin/echo "$prog: cannot decompress $0"
61 decompress () {
72 echo "$prog: cannot decompress $1"
165 elif ! decompress "$1"; then
/freebsd-current/usr.bin/compress/
H A Dcompress.c50 static void decompress(const char *, const char *, int);
113 (void)decompress("/dev/stdin", "/dev/stdout", bits);
151 decompress("/dev/stdin", "/dev/stdout", bits);
165 decompress(newname,
174 decompress(*argv,
273 decompress(const char *in, const char *out, int bits) function
/freebsd-current/sys/contrib/xz-embedded/linux/lib/
H A Ddecompress_unxz.c98 * decompression (pre-boot code). <linux/decompress/mm.h> will define
107 # include <linux/decompress/mm.h>
149 * <linux/decompress/mm.h>. vfree() needs to support vfree(NULL)
244 * This function implements the API defined in <linux/decompress/generic.h>.
394 * This macro is used by architecture-specific files to decompress
397 #define decompress unxz macro
/freebsd-current/lib/libzstd/
H A DMakefile51 ${ZSTDDIR}/lib/decompress ${ZSTDDIR}/lib/deprecated \
/freebsd-current/contrib/llvm-project/clang/include/clang/Driver/
H A DOffloadBundler.h121 decompress(const llvm::MemoryBuffer &Input, bool Verbose = false);
/freebsd-current/sys/contrib/zstd/lib/
H A Dlibzstd.mk127 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 $(LIBZSTD)/legacy $(LIBZSTD)/deprecated
/freebsd-current/stand/libsa/zfs/
H A DMakefile.inc8 .PATH: ${OZFS}/module/zstd/lib/decompress
/freebsd-current/usr.sbin/ppp/
H A Dpred.c101 decompress(struct pred1_state *state, u_char *source, u_char *dest, int len) function
236 len1 = decompress(state, cp, pp, olen - 4);

Completed in 340 milliseconds

123