HomeSort by: relevance | last modified time | path
    Searched refs:uncompress (Results 1 - 25 of 96) sorted by relevancy

1 2 3 4

  /src/usr.bin/compress/
Makefile 8 LINKS= ${BINDIR}/compress ${BINDIR}/uncompress
10 MLINKS= compress.1 uncompress.1
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Compression.cpp 63 Error zlib::uncompress(StringRef InputBuffer, char *UncompressedBuffer, function in class:zlib
66 ::uncompress((Bytef *)UncompressedBuffer, (uLongf *)&UncompressedSize,
74 Error zlib::uncompress(StringRef InputBuffer, function in class:zlib
79 uncompress(InputBuffer, UncompressedBuffer.data(), UncompressedSize);
94 Error zlib::uncompress(StringRef InputBuffer, char *UncompressedBuffer,
96 llvm_unreachable("zlib::uncompress is unavailable");
98 Error zlib::uncompress(StringRef InputBuffer,
101 llvm_unreachable("zlib::uncompress is unavailable");
IntEqClasses.cpp 67 void IntEqClasses::uncompress() { function in class:IntEqClasses
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Compression.h 35 Error uncompress(StringRef InputBuffer, char *UncompressedBuffer,
38 Error uncompress(StringRef InputBuffer,
  /src/tests/usr.bin/compress/
t_pr_19722.sh 69 atf_check uncompress file.Z
78 # To uncompress a file, it suffices to specify the basename of the
84 atf_check uncompress file
96 # Before compress.c 1.28 from 2022-05-22, uncompress created an empty
101 -e 'inline:uncompress: file.Z: No such file or directory\n' \
102 uncompress -f file
114 # Before compress.c 1.28 from 2022-05-22, uncompress truncated the
121 -e 'inline:uncompress: file.Z: No such file or directory\n' \
122 uncompress -f file
132 # When trying to uncompress a broken source, the target is create
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
IntEqClasses.h 80 /// uncompress - Change back to the uncompressed representation that allows
82 void uncompress();
  /src/external/gpl3/gcc/dist/contrib/
download_prerequisites 259 uncompress='gzip -d'
262 uncompress='bzip2 -d'
265 uncompress='cat'
269 || ( cd "${directory}" && $uncompress <"${ar}" | tar -xf - ) \
  /src/external/gpl3/gcc.old/dist/contrib/
download_prerequisites 251 uncompress='gzip -d'
254 uncompress='bzip2 -d'
257 uncompress='cat'
261 || ( cd "${directory}" && $uncompress <"${ar}" | tar -xf - ) \
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
zlib.d 9 * $(LREF uncompress) directly.
22 * result = cast(ubyte[]) uncompress(dst);
27 * $(LREF Compress) and $(LREF UnCompress).
35 * UnCompress decmp = new UnCompress;
36 * foreach (chunk; stdin.byChunk(4096).map!(x => decmp.uncompress(x)))
238 void[] uncompress(const(void)[] srcbuf, size_t destlen = 0u, int winbits = 15)
300 result = cast(ubyte[]) uncompress(dst);
314 result = cast(ubyte[]) uncompress(dst);
526 class UnCompress
    [all...]
  /src/sys/arch/pmax/stand/smallnet/
smallnet.c 98 ret = uncompress((Bytef *)kernel_loadaddr, &destlen, kernel_image,
  /src/external/cddl/osnet/dist/uts/common/zmod/
zconf.h 92 #define uncompress zz_uncompress macro
  /src/common/dist/zlib/
uncompr.c 24 uncompress returns Z_OK if success, Z_MEM_ERROR if there was not enough
84 int ZEXPORT uncompress(Bytef *dest, uLongf *destLen, const Bytef *source, function
  /src/usr.bin/gzip/
znew 62 if uncompress -f -c < "$filez" | gzip -f $gzipflags > "$tmp"; then
  /src/external/apache2/llvm/dist/llvm/lib/Object/
Decompressor.cpp 97 return zlib::uncompress(SectionData, Buffer.data(), Size);
  /src/external/bsd/liblzf/dist/
lzf.c 58 static enum { compress, uncompress, lzfcat } mode = compress; enumerator in enum:__anon7242
68 {"uncompress", 0, 0, 'd'},
465 mode = uncompress;
482 mode = uncompress;
509 if ((mode == uncompress || mode == lzfcat) && isatty (0))
  /src/external/gpl3/binutils/dist/zlib/
uncompr.c 22 uncompress returns Z_OK if success, Z_MEM_ERROR if there was not enough
82 int ZEXPORT uncompress(Bytef *dest, uLongf *destLen, const Bytef *source, function
  /src/external/gpl3/binutils.old/dist/zlib/
uncompr.c 22 uncompress returns Z_OK if success, Z_MEM_ERROR if there was not enough
86 int ZEXPORT uncompress (dest, destLen, source, sourceLen) function
  /src/external/gpl3/gdb.old/dist/zlib/
uncompr.c 22 uncompress returns Z_OK if success, Z_MEM_ERROR if there was not enough
86 int ZEXPORT uncompress (dest, destLen, source, sourceLen) function
  /src/external/gpl3/gdb/dist/zlib/
uncompr.c 22 uncompress returns Z_OK if success, Z_MEM_ERROR if there was not enough
82 int ZEXPORT uncompress(Bytef *dest, uLongf *destLen, const Bytef *source, function
  /src/external/public-domain/xz/dist/src/xzdec/
xzdec.c 6 /// \brief Simple single-threaded tool to uncompress .xz or .lzma files
127 { "uncompress", no_argument, NULL, 'd' },
169 uncompress(lzma_stream *strm, FILE *file, const char *filename) function
444 uncompress(&strm, stdin, "(stdin)");
475 uncompress(&strm, src_file, src_name);
  /src/external/bsd/libfido2/dist/src/
compress.c 33 if ((z = uncompress(out->ptr, &olen, in->ptr, ilen)) != Z_OK ||
35 fido_log_debug("%s: uncompress: %d, olen=%lu, out->len=%zu",
  /src/distrib/evbsh3/rom/ramdiskcommon/
ramdiskbin.conf 57 ln compress uncompress
  /src/sys/net/
zlib.h 83 # define uncompress z_uncompress macro
944 ZEXTERN int ZEXPORT uncompress(Bytef *, uLongf *, const Bytef *, uLong);
956 uncompress returns Z_OK if success, Z_MEM_ERROR if there was not
  /src/external/bsd/libarchive/dist/libarchive/test/
test_fuzz.c 49 int uncompress; /* If 1, decompress the file before fuzzing. */ member in struct:files
78 if (filesets[n].uncompress) {
90 skipping("Cannot uncompress fileset");
92 skipping("Cannot uncompress %s", filesets[n].names[0]);
  /src/common/dist/zlib/contrib/pascal/
example.pas 53 * Test compress and uncompress
68 err := uncompress(uncompr, uncomprLen, compr, comprLen);
69 CHECK_ERR(err, 'uncompress');
72 EXIT_ERR('bad uncompress')
74 WriteLn('uncompress(): ', PChar(uncompr));

Completed in 92 milliseconds

1 2 3 4