Symbol: compress
crypto/openssl/crypto/comp/c_zlib.c
230
if (compress(out, &out_size, in, ilen) != Z_OK)
crypto/openssl/crypto/comp/c_zstd.c
466
} compress;
crypto/openssl/crypto/comp/c_zstd.c
534
ctx->compress.state = ZSTD_createCStream();
crypto/openssl/crypto/comp/c_zstd.c
536
ctx->compress.state = ZSTD_createCStream_advanced(zstd_mem_funcs);
crypto/openssl/crypto/comp/c_zstd.c
538
if (ctx->compress.state == NULL)
crypto/openssl/crypto/comp/c_zstd.c
540
ZSTD_initCStream(ctx->compress.state, ZSTD_CLEVEL_DEFAULT);
crypto/openssl/crypto/comp/c_zstd.c
541
ctx->compress.bufsize = ZSTD_CStreamInSize();
crypto/openssl/crypto/comp/c_zstd.c
550
ZSTD_freeCStream(ctx->compress.state);
crypto/openssl/crypto/comp/c_zstd.c
566
ZSTD_freeCStream(ctx->compress.state);
crypto/openssl/crypto/comp/c_zstd.c
567
OPENSSL_free(ctx->compress.outbuf.dst);
crypto/openssl/crypto/comp/c_zstd.c
653
if (ctx->compress.outbuf.dst == NULL) {
crypto/openssl/crypto/comp/c_zstd.c
654
ctx->compress.outbuf.dst = OPENSSL_malloc(ctx->compress.bufsize);
crypto/openssl/crypto/comp/c_zstd.c
655
if (ctx->compress.outbuf.dst == NULL) {
crypto/openssl/crypto/comp/c_zstd.c
659
ctx->compress.outbuf.size = ctx->compress.bufsize;
crypto/openssl/crypto/comp/c_zstd.c
660
ctx->compress.outbuf.pos = 0;
crypto/openssl/crypto/comp/c_zstd.c
661
ctx->compress.write_pos = 0;
crypto/openssl/crypto/comp/c_zstd.c
669
while (ctx->compress.write_pos < ctx->compress.outbuf.pos) {
crypto/openssl/crypto/comp/c_zstd.c
670
ret = BIO_write(next, (unsigned char *)ctx->compress.outbuf.dst + ctx->compress.write_pos,
crypto/openssl/crypto/comp/c_zstd.c
671
ctx->compress.outbuf.pos - ctx->compress.write_pos);
crypto/openssl/crypto/comp/c_zstd.c
678
ctx->compress.write_pos += ret;
crypto/openssl/crypto/comp/c_zstd.c
686
ctx->compress.outbuf.pos = 0;
crypto/openssl/crypto/comp/c_zstd.c
687
ctx->compress.outbuf.size = ctx->compress.bufsize;
crypto/openssl/crypto/comp/c_zstd.c
688
ctx->compress.write_pos = 0;
crypto/openssl/crypto/comp/c_zstd.c
690
zret = ZSTD_compressStream2(ctx->compress.state, &ctx->compress.outbuf, &inBuf, ZSTD_e_end);
crypto/openssl/crypto/comp/c_zstd.c
711
if (ctx->compress.outbuf.dst == NULL)
crypto/openssl/crypto/comp/c_zstd.c
716
ctx->compress.outbuf.pos = 0;
crypto/openssl/crypto/comp/c_zstd.c
717
ctx->compress.outbuf.size = ctx->compress.bufsize;
crypto/openssl/crypto/comp/c_zstd.c
718
ctx->compress.write_pos = 0;
crypto/openssl/crypto/comp/c_zstd.c
721
while (ctx->compress.write_pos < ctx->compress.outbuf.pos) {
crypto/openssl/crypto/comp/c_zstd.c
722
ret = BIO_write(next, (unsigned char *)ctx->compress.outbuf.dst + ctx->compress.write_pos,
crypto/openssl/crypto/comp/c_zstd.c
723
ctx->compress.outbuf.pos - ctx->compress.write_pos);
crypto/openssl/crypto/comp/c_zstd.c
728
ctx->compress.write_pos += ret;
crypto/openssl/crypto/comp/c_zstd.c
732
ctx->compress.outbuf.pos = 0;
crypto/openssl/crypto/comp/c_zstd.c
733
ctx->compress.outbuf.size = ctx->compress.bufsize;
crypto/openssl/crypto/comp/c_zstd.c
734
ctx->compress.write_pos = 0;
crypto/openssl/crypto/comp/c_zstd.c
736
zret = ZSTD_flushStream(ctx->compress.state, &ctx->compress.outbuf);
crypto/openssl/crypto/comp/c_zstd.c
761
ctx->compress.write_pos = 0;
crypto/openssl/crypto/comp/c_zstd.c
762
ctx->compress.bufsize = 0;
crypto/openssl/crypto/comp/c_zstd.c
776
obs = ctx->compress.bufsize;
crypto/openssl/crypto/comp/c_zstd.c
799
if (obs > 0 && obs != ctx->compress.bufsize) {
crypto/openssl/crypto/comp/c_zstd.c
800
if (ctx->compress.outbuf.dst != NULL) {
crypto/openssl/crypto/comp/c_zstd.c
801
tmp = OPENSSL_realloc(ctx->compress.outbuf.dst, obs);
crypto/openssl/crypto/comp/c_zstd.c
804
ctx->compress.outbuf.dst = tmp;
crypto/openssl/crypto/comp/c_zstd.c
806
ctx->compress.bufsize = obs;
crypto/openssl/crypto/comp/c_zstd.c
818
if (ctx->compress.outbuf.pos < ctx->compress.outbuf.size)
crypto/openssl/crypto/comp/comp_lib.c
68
if (ctx->meth->compress == NULL) {
crypto/openssl/crypto/comp/comp_lib.c
71
ret = ctx->meth->compress(ctx, out, olen, in, ilen);
crypto/openssl/crypto/comp/comp_local.h
15
ossl_ssize_t (*compress)(COMP_CTX *ctx,
crypto/openssl/crypto/ml_kem/ml_kem.c
1182
s->c[i] = compress(s->c[i], bits);
sbin/savecore/savecore.c
1041
if (compress && verbose)
sbin/savecore/savecore.c
1045
compress = false;
sbin/savecore/savecore.c
109
static bool checkfor, compress, uncompress, clear, force, keep; /* flags */
sbin/savecore/savecore.c
1152
if (compress)
sbin/savecore/savecore.c
1171
if (compress)
sbin/savecore/savecore.c
1214
isencrypted ? "encrypted " : "", compress ? "compressed " : "",
sbin/savecore/savecore.c
1223
!(compress || iscompressed || isencrypted),
sbin/savecore/savecore.c
1250
if ((iscompressed && !uncompress) || compress) {
sbin/savecore/savecore.c
1437
checkfor = compress = clear = force = keep = livecore = false;
sbin/savecore/savecore.c
1484
compress = true;
sbin/savecore/savecore.c
1488
compress = true;
sbin/savecore/savecore.c
1497
if (clear && (compress || keep))
sbin/savecore/savecore.c
1501
if (compress && uncompress)
sbin/savecore/savecore.c
874
if (compress)
sbin/savecore/savecore.c
893
compress ? "compressed " : "", savedir, corename);
sbin/savecore/savecore.c
905
if (compress)
sys/kern/coredump_vnode.c
305
int compress, int signum, struct vnode **vpp, char **namep)
sys/kern/coredump_vnode.c
374
if (compress == COMPRESS_GZIP)
sys/kern/coredump_vnode.c
376
else if (compress == COMPRESS_ZSTD)
sys/netgraph/ng_deflate.c
198
priv->compress = 1;
sys/netgraph/ng_deflate.c
200
priv->compress = 0;
sys/netgraph/ng_deflate.c
240
if (priv->compress)
sys/netgraph/ng_deflate.c
253
if (priv->compress) {
sys/netgraph/ng_deflate.c
335
if (priv->compress) {
sys/netgraph/ng_deflate.c
374
if (priv->compress)
sys/netgraph/ng_deflate.c
396
if (priv->compress)
sys/netgraph/ng_deflate.c
70
u_char compress; /* compress/decompress flag */
sys/netgraph/ng_deflate.c
711
if (priv->compress)
sys/netgraph/ng_pred1.c
214
priv->compress = 1;
sys/netgraph/ng_pred1.c
216
priv->compress = 0;
sys/netgraph/ng_pred1.c
311
if (priv->compress) {
sys/netgraph/ng_pred1.c
79
u_char compress; /* compress/decompress flag */
sys/netinet/libalias/alias_nbt.c
255
int compress;
sys/netinet/libalias/alias_nbt.c
271
compress = 1;
sys/netinet/libalias/alias_nbt.c
273
compress = 0;
sys/netinet/libalias/alias_nbt.c
285
if (compress == 1) {
sys/opencrypto/cryptosoft.c
1205
result = cxf->compress(data, crp->crp_payload_length, &out);
sys/opencrypto/xform_comp.h
43
uint32_t (*compress) (uint8_t *, uint32_t, uint8_t **);
usr.bin/compress/compress.c
110
(void)compress("/dev/stdin", "/dev/stdout", bits);
usr.bin/compress/compress.c
126
compress("/dev/stdin", "/dev/stdout", bits);
usr.bin/compress/compress.c
129
compress(*argv, "/dev/stdout", bits);
usr.bin/compress/compress.c
147
compress(*argv, newname, bits);
usr.bin/compress/compress.c
47
static void compress(const char *, const char *, int);
usr.bin/mkimg/vmdk.c
67
uint16_t compress;
usr.sbin/newsyslog/newsyslog.c
1336
working->compress = COMPRESS_NONE;
usr.sbin/newsyslog/newsyslog.c
1405
working->compress = COMPRESS_BZIP2;
usr.sbin/newsyslog/newsyslog.c
1407
working->compress = compress_type_override;
usr.sbin/newsyslog/newsyslog.c
1430
working->compress = COMPRESS_XZ;
usr.sbin/newsyslog/newsyslog.c
1432
working->compress = compress_type_override;
usr.sbin/newsyslog/newsyslog.c
1437
working->compress = COMPRESS_ZSTD;
usr.sbin/newsyslog/newsyslog.c
1439
working->compress = compress_type_override;
usr.sbin/newsyslog/newsyslog.c
1444
working->compress = COMPRESS_GZIP;
usr.sbin/newsyslog/newsyslog.c
1446
working->compress = compress_type_override;
usr.sbin/newsyslog/newsyslog.c
187
int compress; /* Compression */
usr.sbin/newsyslog/newsyslog.c
1963
if (ent->compress && strlen(logfile_suffix) == 0) {
usr.sbin/newsyslog/newsyslog.c
2026
if (ent->numlogs > 0 && ent->compress > COMPRESS_NONE) {
usr.sbin/newsyslog/newsyslog.c
2150
assert(zwork->zw_conf->compress > COMPRESS_NONE);
usr.sbin/newsyslog/newsyslog.c
2151
assert(zwork->zw_conf->compress < COMPRESS_TYPES);
usr.sbin/newsyslog/newsyslog.c
2152
assert(zwork->zw_conf->compress != COMPRESS_LEGACY);
usr.sbin/newsyslog/newsyslog.c
2163
ct = &compress_type[zwork->zw_conf->compress];
usr.sbin/newsyslog/newsyslog.c
440
tempwork->compress = src_entry->compress;
usr.sbin/newsyslog/newsyslog.c
458
tempwork->compress = COMPRESS_NONE;
usr.sbin/newsyslog/newsyslog.c
557
compress_type[ent->compress].flag);
usr.sbin/newsyslog/newsyslog.c
668
if (ent->compress == COMPRESS_NONE)
usr.sbin/newsyslog/newsyslog.c
672
compression_type_name(ent->compress));
usr.sbin/newsyslog/newsyslog.c
677
compress_type[ent->compress].flag);
usr.sbin/ppp/pred.c
196
len = compress(state, bufp + 2, wp, orglen);