HomeSort by: relevance | last modified time | path
    Searched defs:decompress (Results 1 - 25 of 38) sorted by relevancy

1 2

  /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/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/external/apache2/llvm/dist/llvm/lib/Object/
Decompressor.cpp 95 Error Decompressor::decompress(MutableArrayRef<char> Buffer) { function in class:Decompressor
  /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/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);
stream_round_trip.c 12 * This fuzz target performs a zstd round-trip test (compress & decompress),
139 static size_t decompress(void* dst, size_t dstCapacity, void const* src, size_t srcSize, FUZZ_dataProducer_t* producer) function
187 size_t const rSize = decompress(rBuf, neededBufSize, cBuf, cSize, producer);
  /src/external/bsd/bzip2/dist/
dlltest.c 73 int decompress = 0; local
92 decompress = 1;
121 if(decompress){
  /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.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) {
424 * Decompress a frame, whose data is streamed into `in`, and stream the output
432 static void decompress( function in namespace:pzstd
459 // Decompress the whole buffer and send it to the output queue
464 // Decompress
492 // Decompress
514 // which means that we can decompress each standard frame in independently
    [all...]
  /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/bsd/libfido2/dist/tools/
largeblob.c 351 decompress(const struct blob *plaintext, uint64_t origsiz) function
403 if (decompress(&plaintext, origsiz) < 0)
  /src/external/mit/isl/dist/
isl_scheduler.h 45 * decompress map the original space to the compressed space and
75 isl_pw_multi_aff *decompress; member in struct:isl_sched_node
isl_scheduler.c 500 isl_pw_multi_aff_free(node->decompress);
779 * "decompress" map the original space to the compressed space and
794 __isl_take isl_pw_multi_aff *decompress)
801 node->decompress = decompress;
808 node->decompress = isl_pw_multi_aff_pullback_pw_multi_aff(
809 node->decompress, decompress);
812 if (!node->hull || !node->compress || !node->decompress)
846 isl_pw_multi_aff *decompress, *pma local
1041 isl_pw_multi_aff *decompress; local
    [all...]
  /src/sys/arch/sgimips/stand/undist/
util.c 153 * used by decompress(). The tab_prefix table is the same size and type
204 /* number of bytes getcode has returned since decompress() was called */
211 * Decompress 'input' to 'output'. This routine adapts to the codes in
422 * Decompress from stream 'input' into stream 'output', reading at most
430 decompress(FILE *input, FILE *output, uint32_t maxinput, int *cksum) function
  /src/sys/net/
ppp-comp.h 86 /* Decompress a packet. */
87 int (*decompress)(void *, PACKETPTR, PACKETPTR *); member in struct:compressor
99 * Return values for decompress routine.
  /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/sys/opencrypto/
cryptosoft_xform.c 86 uint32_t (*decompress)(uint8_t *, uint32_t, uint8_t **, int); member in struct:swcr_comp_algo
  /src/crypto/external/apache2/openssl/dist/crypto/ml_kem/
ml_kem.c 1155 static __owur uint16_t decompress(uint16_t x, int bits) function
1194 s->c[i] = decompress(s->c[i], bits);
  /src/external/gpl3/binutils/dist/bfd/
coffgen.c 228 /* Compress/decompress DWARF debug sections. */
236 enum { nothing, compress, decompress } action = nothing; enumerator in enum:__anon9643
240 /* Compressed section. Check if we should decompress. */
242 action = decompress;
261 else if (action == decompress)
267 (_("%pB: unable to decompress section %s"), abfd, name);
  /src/external/gpl3/binutils.old/dist/bfd/
coffgen.c 228 /* Compress/decompress DWARF debug sections. */
236 enum { nothing, compress, decompress } action = nothing; enumerator in enum:__anon11134
240 /* Compressed section. Check if we should decompress. */
242 action = decompress;
261 else if (action == decompress)
267 (_("%pB: unable to decompress section %s"), abfd, name);
  /src/external/gpl3/gdb.old/dist/bfd/
coffgen.c 226 /* Compress/decompress DWARF debug sections. */
234 enum { nothing, compress, decompress } action = nothing; enumerator in enum:__anon10
238 /* Compressed section. Check if we should decompress. */
240 action = decompress;
259 else if (action == decompress)
265 (_("%pB: unable to decompress section %s"), abfd, name);
  /src/external/gpl3/gdb/dist/bfd/
coffgen.c 228 /* Compress/decompress DWARF debug sections. */
236 enum { nothing, compress, decompress } action = nothing; enumerator in enum:__anon12
240 /* Compressed section. Check if we should decompress. */
242 action = decompress;
261 else if (action == decompress)
267 (_("%pB: unable to decompress section %s"), abfd, name);
  /src/external/bsd/zstd/dist/contrib/largeNbDicts/
largeNbDicts.c 639 size_t decompress(const void* src, size_t srcSize, void* dst, size_t dstCapacity, void* payload) function
705 .benchFn = benchCompression ? compress : decompress,
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v03.c 2156 static const decompressionAlgo decompress[3] = { HUF_decompress4X2, HUF_decompress4X4, NULL }; local
2179 return decompress[algoNb](dst, dstSize, cSrc, cSrcSize);
3007 /* Decompress : frame header */
3018 /* Decompress : block header */
3039 /* Decompress : block content */

Completed in 54 milliseconds

1 2