/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/common/dist/zlib/ |
compress.c | 1 /* $NetBSD: compress.c,v 1.5 2024/09/22 19:12:27 christos Exp $ */ 3 /* compress.c -- compress a memory buffer 65 int ZEXPORT compress(Bytef *dest, uLongf *destLen, const Bytef *source, function in typeref:typename:int ZEXPORT
|
Makefile.in | 57 OBJG = compress.o uncompr.o gzclose.o gzlib.o gzread.o gzwrite.o 61 PIC_OBJG = compress.lo uncompr.lo gzclose.lo gzlib.lo gzread.lo gzwrite.lo 182 compress.o: $(SRCDIR)compress.c 183 $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)compress.c 246 compress.lo: $(SRCDIR)compress.c 248 $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/compress.o $(SRCDIR)compress.c 249 -@mv objs/compress.o $ [all...] |
zconf.h | 38 # define compress z_compress macro
|
zconf.h.in | 34 # define compress z_compress macro
|
/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/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 in typeref:typename:void [all...] |
/src/common/dist/zlib/contrib/delphi/ |
zlibd32.mak | 21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj 23 OBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzclose.obj+gzlib.obj+gzread.obj 35 compress.obj: compress.c zlib.h zconf.h
|
/src/common/dist/zlib/contrib/pascal/ |
zlibd32.mak | 21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj 23 OBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzclose.obj+gzlib.obj+gzread.obj 35 compress.obj: compress.c zlib.h zconf.h
|
zlibpas.pas | 144 function compress(dest: PChar; var destLen: LongInt; function 177 {$L compress.obj} 190 function compress; external; function
|
/src/common/dist/zlib/contrib/ada/ |
zlib-thin.ads | 160 function compress subprogspec 399 pragma Import (C, compress, "compress");
|
/src/usr.bin/bdes/ |
bdes.c | 118 compress(bits1, buf); \ 181 static void compress(char *, Desbuf); 1054 compress(char *from, Desbuf to) function in typeref:typename:void
|
/src/sys/net/ |
ppp-comp.h | 46 #define DO_BSD_COMPRESS 1 /* by default, include BSD-Compress */ 78 /* Compress a packet */ 79 int (*compress)(void *, PACKETPTR *, PACKETPTR, int, int); member in struct:compressor 145 * Definitions for BSD-Compress. 147 #define CI_BSD_COMPRESS 21 /* config. option for BSD-Compress */ 150 /* Macros for handling the 3rd byte of the BSD-Compress config option. */
|
zlib.h | 81 # define compress z_compress macro 506 - Compress more input starting at next_in and update next_in and avail_in 732 tuned to compress them better. The effect of Z_FILTERED is to force more 916 ZEXTERN int ZEXPORT compress(Bytef *, uLongf *, const Bytef *, uLong); 923 This function can be used to compress a whole file at once if the 925 compress returns Z_OK if success, Z_MEM_ERROR if there was not
|
/src/usr.bin/newsyslog/ |
newsyslog.c | 94 #define CE_PLAIN0 0x10 /* Do not compress zero'th history file */ 120 static struct compressor compress[] = variable in typeref:struct:compressor[] 386 for (ziptype = __arraycount(compress); --ziptype; ) { 387 if (*compress[ziptype].flag == qq) 439 compress[ziptype].flag)); 485 for (j = 0; j < __arraycount(compress); j++) { 488 (void)strlcat(tmp, compress[j].suffix, sizeof(tmp)); 542 for (j = 0; j < (int)__arraycount(compress); j++) { 545 (void)strlcat(file1, compress[j].suffix, 555 * specified, compress it. (This is convenient, but is also neede [all...] |
/src/sbin/savecore/ |
savecore.c | 191 int ch, level, testonly, compress, force, clear, verbose; local in function:main 200 compress = 0; 224 compress = 1; 271 save_core(compress); 644 save_core(int compress) 677 dirname, bounds, compress ? ".gz" : ""); 678 if (compress) { 721 compress ? "compressed " : "", path); 752 dirname, bounds, compress ? ".gz" : ""); 754 compress ? "compressed " : "", path) [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/ |
i915_gpu_error.c | 979 struct i915_vma_compress *compress) 990 if (!vma || !vma->pages || !compress) 999 if (!compress_start(compress)) { 1025 ret = compress_page(compress, 1044 ret = compress_page(compress, 1064 ret = compress_page(compress, s, dst, false); 1074 if (ret || compress_flush(compress, dst)) { 1076 pool_free(&compress->pool, dst->pages[dst->page_count]); 1080 compress_finish(compress); 1336 struct i915_vma_compress *compress) 1794 struct i915_vma_compress *compress; local in function:i915_vma_capture_prepare 1837 struct i915_vma_compress *compress; local in function:i915_gpu_coredump [all...] |
/src/sys/opencrypto/ |
cryptosoft_xform.c | 84 uint32_t (*compress)(uint8_t *, uint32_t, uint8_t **); member in struct:swcr_comp_algo
|
/src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
intel_lrc.c | 2613 /* Compress all the objects attached to the request, slow! */ 2616 struct i915_vma_compress *compress = local in function:execlists_capture_work 2619 intel_engine_coredump_add_vma(gt->engine, vma, compress); 2620 i915_vma_capture_finish(gt, compress); 2697 * of the request. We pass it to our worker who will _slowly_ compress
|
/src/sys/external/isc/libsodium/dist/src/libsodium/ |
Makefile.in | 233 am_libavx2_la_OBJECTS = crypto_generichash/blake2b/ref/libavx2_la-blake2b-compress-avx2.lo \ 274 crypto_generichash/blake2b/ref/blake2b-compress-ref.c \ 431 crypto_generichash/blake2b/ref/libsodium_la-blake2b-compress-ref.lo \ 505 am_libsse41_la_OBJECTS = crypto_generichash/blake2b/ref/libsse41_la-blake2b-compress-sse41.lo 511 am_libssse3_la_OBJECTS = crypto_generichash/blake2b/ref/libssse3_la-blake2b-compress-ssse3.lo \ 822 crypto_generichash/blake2b/ref/blake2b-compress-ref.c \ 939 crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c \ 940 crypto_generichash/blake2b/ref/blake2b-compress-ssse3.h \ 954 crypto_generichash/blake2b/ref/blake2b-compress-sse41.c \ 955 crypto_generichash/blake2b/ref/blake2b-compress-sse41. [all...] |
/src/sys/external/mit/xen-include-public/dist/xen/include/public/ |
sysctl.h | 773 union { /* See TMEM_CLIENT_[COMPRESS,FROZEN] */ 777 compress:1, member in struct:xen_tmem_client::__anon501431f30b0a::__anon501431f30c08
|
/src/sys/dev/stbi/ |
stb_image.c | 3296 int psize=0,i,j,compress=0,width; local in function:bmp_load 3321 compress = get32le(s); 3322 if (compress == 1 || compress == 2) return epuc("BMP RLE", "BMP type not supported: RLE"); 3337 if (compress == 0) { 3348 } else if (compress == 3) {
|