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/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/public-domain/xz/dist/doc/examples/
02_decompress.c 4 /// \brief Decompress .xz files to stdout
35 // decompress files created with "xz -9". Settings requiring more
104 decompress(lzma_stream *strm, const char *inname, FILE *infile, FILE *outfile) function
255 // Try to decompress all files.
272 success &= decompress(&strm, argv[i], infile, stdout);
  /src/external/public-domain/xz/dist/tests/
test_bcj_exact_size.c 52 decompress(void) function
94 // Decompress without giving any output space.
110 decompress();
  /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) {
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/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
  /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 85 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/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/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/dist/bfd/
coffgen.c 226 /* Compress/decompress DWARF debug sections. */
234 enum { nothing, compress, decompress } action = nothing; enumerator in enum:__anon17581
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.old/dist/bfd/
coffgen.c 226 /* Compress/decompress DWARF debug sections. */
234 enum { nothing, compress, decompress } action = nothing; enumerator in enum:__anon20321
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/bsd/libarchive/dist/libarchive/
archive_read_support_format_7zip.c 411 static int decompress(struct archive_read *, struct _7zip *,
1665 decompress(struct archive_read *a, struct _7zip *zip, function
3552 r = decompress(a, zip, buff_out, &bytes_out,
archive_read_support_format_xar.c 406 static int decompress(struct archive_read *, const void **,
1026 /* Init decompress library. */
1054 * Decompress contents of file.
1057 if (decompress(a, buff, size, b, used) != ARCHIVE_OK)
1600 decompress(struct archive_read *a, const void **buff, size_t *outbytes, function

Completed in 59 milliseconds

1 2