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

1 2 3 4

  /src/usr.bin/gzip/
gzexe 82 echo "$prog: cannot compress non-existing file $1"
87 echo "$prog: cannot compress non-regular file $1"
93 echo "$prog: cannot compress $1, I depend on it"
98 echo "$prog: cannot compress $1, it is not executable"
103 echo "$prog: cannot compress $1, it has an s bit set"
108 # Compress a file
109 compress () { function
136 echo "$prog: cannot compress $1"
172 elif ! check "$1" || ! compress "$1"; then
  /src/external/apache2/llvm/dist/llvm/lib/Support/
IntEqClasses.cpp 15 // Once the classes are built, compress() will number them 0 .. M-1 and prevent
26 assert(NumClasses == 0 && "grow() called after compress().");
33 assert(NumClasses == 0 && "join() called after compress().");
54 assert(NumClasses == 0 && "findLeader() called after compress().");
60 void IntEqClasses::compress() { function in class:IntEqClasses
Compression.cpp 49 Error zlib::compress(StringRef InputBuffer, function in class:zlib
90 Error zlib::compress(StringRef InputBuffer,
92 llvm_unreachable("zlib::compress is unavailable");
  /src/external/bsd/zstd/dist/tests/regression/
method.h 48 result_t (*compress)(method_state_t* state, config_t const* config); member in struct:__anon8925
  /src/external/gpl3/binutils/dist/zlib/
compress.c 0 /* compress.c -- compress a memory buffer
63 int ZEXPORT compress(Bytef *dest, uLongf *destLen, const Bytef *source, function
  /src/external/gpl3/binutils.old/dist/zlib/
compress.c 0 /* compress.c -- compress a memory buffer
68 int ZEXPORT compress (dest, destLen, source, sourceLen) function
  /src/external/gpl3/gdb.old/dist/zlib/
compress.c 0 /* compress.c -- compress a memory buffer
68 int ZEXPORT compress (dest, destLen, source, sourceLen) function
  /src/external/gpl3/gdb/dist/zlib/
compress.c 0 /* compress.c -- compress a memory buffer
63 int ZEXPORT compress(Bytef *dest, uLongf *destLen, const Bytef *source, function
  /src/crypto/external/apache2/openssl/dist/crypto/comp/
comp_local.h 15 ossl_ssize_t (*compress)(COMP_CTX *ctx, member in struct:comp_method_st
  /src/crypto/external/bsd/openssl/dist/crypto/comp/
comp_local.h 15 int (*compress) (COMP_CTX *ctx, member in struct:comp_method_st
  /src/crypto/external/bsd/openssl.old/dist/crypto/comp/
comp_local.h 15 int (*compress) (COMP_CTX *ctx, member in struct:comp_method_st
  /src/external/public-domain/xz/dist/doc/examples/
01_compress_easy.c 6 /// \brief Compress from stdin to stdout in multi-call mode
107 compress(lzma_stream *strm, FILE *infile, FILE *outfile) function
274 // Initialize the encoder. If it succeeds, compress from
278 success = compress(&strm, stdin, stdout);
03_compress_custom.c 6 /// \brief Compress in multi-call mode using x86 BCJ and LZMA2
53 // that LZMA2 can compress it better. The x86 BCJ filter doesn't need
104 compress(lzma_stream *strm, FILE *infile, FILE *outfile) function
182 success = compress(&strm, stdin, stdout);
04_compress_easy_mt.c 6 /// \brief Compress in multi-call mode using LZMA2 in multi-threaded mode
117 compress(lzma_stream *strm, FILE *infile, FILE *outfile) function
195 success = compress(&strm, stdin, stdout);
  /src/external/bsd/zstd/dist/tests/fuzz/
dictionary_loader.c 28 static size_t compress(void* compressed, size_t compressedCapacity, function
89 compress(cBuf, cBufSize, src, size, src, size, dlm, dct, refPrefix);
dictionary_stream_round_trip.c 12 * This fuzz target performs a zstd round-trip test (compress & decompress),
59 static size_t compress(uint8_t *dst, size_t capacity, function
69 /* Disable checksum so we can use sizes smaller than compress bound. */
183 size_t const cSize = compress(cBuf, neededBufSize, src, size, dict.buff, dict.size, producer, refPrefix, dictContentType);
stream_round_trip.c 12 * This fuzz target performs a zstd round-trip test (compress & decompress),
59 static size_t compress(uint8_t *dst, size_t capacity, function
186 size_t const cSize = compress(cBuf, neededBufSize, src, size, producer);
  /src/common/dist/zlib/
compress.c 1 /* $NetBSD: compress.c,v 1.6 2026/05/03 16:36:09 christos Exp $ */
3 /* compress.c -- compress a memory buffer
84 int ZEXPORT compress(Bytef *dest, uLongf *destLen, const Bytef *source, function
  /src/external/bsd/zstd/dist/tests/
longmatch.c 21 compress(ZSTD_CStream *ctx, ZSTD_outBuffer out, const void *data, size_t size) function
83 if (compress(ctx, out, srcBuffer, size)) {
90 if (compress(ctx, out, srcBuffer + pos, block)) {
bigdict.c 22 compress(ZSTD_CCtx* cctx, ZSTD_DCtx* dctx, function
109 /* Compress 30 GB */
114 if (compress(cctx, dctx, out, outSize, buffer, dataSize, roundtrip, ZSTD_e_continue))
119 if (compress(cctx, dctx, out, outSize, buffer, dataSize, roundtrip, ZSTD_e_end))
largeDictionary.c 22 compress(ZSTD_CCtx* cctx, ZSTD_DCtx* dctx, function
107 /* Compress 30 GB */
112 if (compress(cctx, dctx, out, outSize, buffer, dataSize, roundtrip, ZSTD_e_continue))
117 if (compress(cctx, dctx, out, outSize, buffer, dataSize, roundtrip, ZSTD_e_end))
  /src/sys/dev/
midi_if.h 101 int compress:1; /* if hw wants channel msgs in compressed form */ member in struct:midi_hw_if_ext
  /src/external/bsd/zstd/dist/examples/
dictionary_compression.c 40 static void compress(const char* fname, const char* oname, const ZSTD_CDict* cdict) function
47 /* Compress using the dictionary.
100 compress(inFilename, outFilename, dictPtr);
  /src/usr.bin/compress/
compress.c 1 /* $NetBSD: compress.c,v 1.29 2022/05/22 21:39:44 rillig Exp $ */
40 static char sccsid[] = "@(#)compress.c 8.2 (Berkeley) 1/7/94";
42 __RCSID("$NetBSD: compress.c,v 1.29 2022/05/22 21:39:44 rillig Exp $");
58 static void compress(const char *, const char *, int);
74 enum {COMPRESS, DECOMPRESS} style = COMPRESS;
85 else if (!strcmp(p, "compress"))
86 style = COMPRESS;
115 usage(style == COMPRESS);
122 case COMPRESS
200 compress(const char *in, const char *out, int bits) function
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/otp/
otp_parse.c 77 compress (OtpKey key, unsigned wn[]) function
150 compress (key, wn);

Completed in 76 milliseconds

1 2 3 4