| /src/external/cddl/osnet/dist/uts/common/sys/ |
| compress.h | 39 extern size_t decompress(void *, void *, size_t, size_t);
|
| /src/external/bsd/zstd/dist/contrib/pzstd/ |
| Options.h | 30 bool decompress; member in struct:pzstd::Options 47 bool decompress, std::vector<std::string> inputFiles, 51 compressionLevel(compressionLevel), decompress(decompress),
|
| Pzstd.h | 43 if (!options.decompress) { 145 * @param decompress Are we decompressing? 152 bool decompress);
|
| Options.cpp | 81 std::fprintf(stderr, " -d, --decompress : decompression\n"); 104 compressionLevel(kDefaultCompressionLevel), decompress(false), 167 } else if (!std::strcmp(arg, "--decompress")) { 243 decompress = true; 252 decompress = true; 372 if (outputFile == "-" && IS_CONSOLE(stdout) && !(forceStdout && decompress)) { 413 if (decompress) {
|
| Pzstd.cpp | 69 if (!options.decompress) { 83 bytesWritten = writeFile(state, outs, outputFd, options.decompress); 90 bytesWritten = writeFile(state, outs, outputFd, options.decompress); 96 if (!options.decompress) { 421 * Decompress a frame, whose data is streamed into `in`, and stream the output 429 static void decompress( function in namespace:pzstd 453 // Decompress the whole buffer and send it to the output queue 458 // Decompress 486 // Decompress 508 // which means that we can decompress each standard frame in independently [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
| Decompressor.h | 34 return decompress({Out.data(), (size_t)DecompressedSize}); 39 Error decompress(MutableArrayRef<char> Buffer);
|
| /src/external/bsd/zstd/dist/contrib/linux-kernel/ |
| linux.mk | 32 decompress/huf_decompress.o \ 33 decompress/zstd_ddict.o \ 34 decompress/zstd_decompress.o \ 35 decompress/zstd_decompress_block.o \
|
| /src/external/bsd/zstd/dist/examples/ |
| simple_decompression.c | 16 static void decompress(const char* fname) function 32 /* Decompress. 60 decompress(argv[1]);
|
| dictionary_decompression.c | 30 static void decompress(const char* fname, const ZSTD_DDict* ddict) function 57 /* Decompress using the dictionary. 94 for (u=1; u<argc-1; u++) decompress(argv[u], dictPtr);
|
| /src/crypto/external/apache2/openssl/dist/crypto/comp/ |
| c_zstd.c | 460 } decompress; member in struct:__anon78 524 ctx->decompress.state = ZSTD_createDStream(); 526 ctx->decompress.state = ZSTD_createDStream_advanced(zstd_mem_funcs); 528 if (ctx->decompress.state == NULL) 530 ZSTD_initDStream(ctx->decompress.state); 531 ctx->decompress.bufsize = ZSTD_DStreamInSize(); 549 ZSTD_freeDStream(ctx->decompress.state); 564 ZSTD_freeDStream(ctx->decompress.state); 565 OPENSSL_free(ctx->decompress.buffer); 593 if (ctx->decompress.buffer == NULL) [all...] |
| /src/external/bsd/zstd/dist/contrib/linux-kernel/test/ |
| Makefile | 21 LINUX_ZSTD_DECOMPRESS := $(wildcard $(LINUX_ZSTDLIB)/decompress/*.c $(LINUX_ZSTDLIB)/decompress/*.S)
|
| /src/external/bsd/bzip2/dist/ |
| dlltest.c | 73 int decompress = 0;
local 92 decompress = 1;
121 if(decompress){
|
| /src/lib/libbz2/ |
| Makefile | 14 decompress.c bzlib.c
|
| /src/external/bsd/zstd/dist/contrib/premake/ |
| zstd.lua | 41 dir .. 'decompress/**.c', 42 dir .. 'decompress/**.h'
|
| /src/usr.bin/gzip/ |
| gzexe | 48 /bin/echo "$prog: cannot decompress $0" 60 # Decompress a file 61 decompress () { function 72 echo "$prog: cannot decompress $1" 165 elif ! decompress "$1"; then
|
| /src/external/bsd/zstd/dist/contrib/pzstd/test/ |
| RoundTrip.h | 71 options.decompress = false; 77 options.decompress = true;
|
| /src/external/bsd/zstd/dist/tests/gzip/ |
| gzip-env.sh | 32 for badopt in -- -c --stdout -d --decompress -f --force -h --help -k --keep \
|
| /src/external/bsd/zstd/dist/tests/fuzz/ |
| dictionary_loader.c | 48 static size_t decompress(void* result, size_t resultCapacity, function 96 decompress(rBuf, size, cBuf, cSize, src, size, dlm, dct, refPrefix);
|
| Makefile | 82 FUZZ_D_OBJ3 := $(subst $(LIB_SRCDIR)/decompress/,d_lib_decompress_,$(FUZZ_D_OBJ2)) 94 FUZZ_RT_OBJ3 := $(subst $(LIB_SRCDIR)/decompress/,rt_lib_decompress_,$(FUZZ_RT_OBJ2)) 139 rt_lib_decompress_%.o: $(LIB_SRCDIR)/decompress/%.c 142 rt_lib_decompress_%.o: $(LIB_SRCDIR)/decompress/%.S 166 d_lib_decompress_%.o: $(LIB_SRCDIR)/decompress/%.c 169 d_lib_decompress_%.o: $(LIB_SRCDIR)/decompress/%.S
|
| /src/external/public-domain/xz/dist/doc/examples/ |
| 02_decompress.c | 6 /// \brief Decompress .xz files to stdout 34 // decompress files created with "xz -9". Settings requiring more 103 decompress(lzma_stream *strm, const char *inname, FILE *infile, FILE *outfile) function 254 // Try to decompress all files. 271 success &= decompress(&strm, argv[i], infile, stdout);
|
| /src/external/bsd/zstd/dist/contrib/diagnose_corruption/ |
| Makefile | 17 -I$(ZSTDLIBDIR)/decompress
|
| /src/external/gpl3/gcc/dist/gcc/ |
| lto-section-in.cc | 137 size_t *len, bool decompress) 153 if ((!flag_ltrans || decompress) && section_type != LTO_section_lto) 210 size_t len, bool decompress) 219 if (flag_ltrans && !decompress)
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| lto-section-in.cc | 137 size_t *len, bool decompress) 153 if ((!flag_ltrans || decompress) && section_type != LTO_section_lto) 210 size_t len, bool decompress) 219 if (flag_ltrans && !decompress)
|
| /src/usr.bin/compress/ |
| compress.c | 61 static void decompress(const char *, const char *, int); 74 enum {COMPRESS, DECOMPRESS} style = COMPRESS; 84 style = DECOMPRESS; 88 style = DECOMPRESS; 105 style = DECOMPRESS; 127 case DECOMPRESS: 130 (void)decompress("/dev/stdin", "/dev/stdout", bits); 165 case DECOMPRESS: 177 decompress(newname, 188 decompress(*argv 299 decompress(const char *in, const char *out, int bits) function [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Object/ |
| Decompressor.cpp | 95 Error Decompressor::decompress(MutableArrayRef<char> Buffer) { function in class:Decompressor
|