OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ZSTD_e_flush
(Results
1 - 7
of
7
) sorted by relevancy
/src/external/bsd/zstd/dist/tests/fuzz/
dictionary_stream_round_trip.c
94
ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_flush
);
stream_round_trip.c
82
ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_flush
);
/src/external/bsd/zstd/dist/tests/
fuzzer.c
1186
CHECK_Z(ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_flush
));
1250
CHECK_Z(ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_flush
));
1258
CHECK_Z(ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_flush
));
1702
CHECK_Z( ZSTD_compressStream2(cctx, &outb, &inb,
ZSTD_e_flush
) );
1706
CHECK_Z( ZSTD_compressStream2(cctx, &outb, &inb,
ZSTD_e_flush
) );
1710
CHECK_Z( ZSTD_compressStream2(cctx, &outb, &inb,
ZSTD_e_flush
) );
4297
assert(ZSTD_isError(ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_flush
)));
4456
CHECK_Z(ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_flush
));
4471
CHECK_Z(ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_flush
));
4482
CHECK_Z(ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_flush
));
[
all
...]
zstreamtest.c
1024
CHECK_Z( ZSTD_compressStream2(cctx, &outBuf, &inBuf,
ZSTD_e_flush
) );
1054
CHECK_Z(ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_flush
));
1903
CHECK_Z(ZSTD_compressStream2(zc, &out, &in,
ZSTD_e_flush
));
3132
ZSTD_EndDirective const flush = (FUZ_rand(&lseed) & 15) ? ZSTD_e_continue :
ZSTD_e_flush
;
3149
if (flush ==
ZSTD_e_flush
&& ret == 0)
/src/external/bsd/zstd/dist/lib/
zstd.h
751
* using ZSTD_compressStream2() with
ZSTD_e_flush
. `output->pos` will be updated.
752
* Note that, if `output->size` is too small, a single invocation with
ZSTD_e_flush
might not be enough (return code > 0).
753
* In which case, make some room to receive more compressed data, and call again ZSTD_compressStream2() with
ZSTD_e_flush
.
754
* You must continue calling ZSTD_compressStream2() with
ZSTD_e_flush
until it returns 0, at which point you can change the
756
* note:
ZSTD_e_flush
will flush as much output as possible, meaning when compressing with multiple threads, it will
765
* flush operation is the same, and follows same rules as calling ZSTD_compressStream2() with
ZSTD_e_flush
.
785
ZSTD_e_flush
=1, /* flush any data provided so far,
811
* This is useful for
ZSTD_e_flush
, since in this case more flushes are necessary to empty all buffers.
814
* only ZSTD_e_end or
ZSTD_e_flush
operations are allowed.
870
/*! Equivalent to ZSTD_compressStream2(zcs, output, &emptyInput,
ZSTD_e_flush
). *
[
all
...]
/src/external/bsd/zstd/dist/lib/compress/
zstdmt_compress.c
1886
endOp =
ZSTD_e_flush
;
1905
endOp =
ZSTD_e_flush
;
zstd_compress.c
6175
if ( (flushMode ==
ZSTD_e_flush
)
6189
if ( (flushMode ==
ZSTD_e_flush
)
6523
assert(endOp ==
ZSTD_e_flush
|| endOp == ZSTD_e_end);
7651
return ZSTD_compressStream2(zcs, output, &input,
ZSTD_e_flush
);
Completed in 32 milliseconds
Indexes created Thu Aug 06 00:25:04 UTC 2026