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_end
(Results
1 - 20
of
20
) sorted by relevancy
/src/external/bsd/zstd/dist/tests/
bigdict.c
37
if (end ==
ZSTD_e_end
&& rc == 0)
119
if (compress(cctx, dctx, out, outSize, buffer, dataSize, roundtrip,
ZSTD_e_end
))
largeDictionary.c
37
if (end ==
ZSTD_e_end
&& rc == 0)
117
if (compress(cctx, dctx, out, outSize, buffer, dataSize, roundtrip,
ZSTD_e_end
))
roundTripCrash.c
104
CHECK_Z (ZSTD_compressStream2(cctx, &outBuffer, &inBuffer,
ZSTD_e_end
) );
zstreamtest.c
190
while (din.pos < din.size || (endOp ==
ZSTD_e_end
&& cret == 0)) {
895
CHECK(!(ZSTD_compressStream2(cctx2, &out, &in,
ZSTD_e_end
) == 0), "Not finished");
938
CHECK(!(ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_end
) == 0), "Not finished");
955
size_t const ret = ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_end
);
967
CHECK_Z(ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_end
));
971
{ size_t const ret = ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_end
);
1027
CHECK( ZSTD_compressStream2(cctx, &outBuf, &inBuf,
ZSTD_e_end
) != 0, "compression should be successful and fully flushed");
1057
CHECK(!(ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_end
) == 0), "Not finished");
1175
CHECK_Z(ZSTD_compressStream2(cctx, &outBuff, &inBuff,
ZSTD_e_end
));
1385
CHECK_Z( ZSTD_compressStream2(zc, &outBuff, &inBuff,
ZSTD_e_end
) );
[
all
...]
fullbench.c
390
ZSTD_compressStream2(g_cstream, &buffOut, &buffIn,
ZSTD_e_end
);
409
ZSTD_compressStream2(g_cstream, &buffOut, &buffIn,
ZSTD_e_end
);
439
while(ZSTD_compressStream2(g_cstream, &buffOut, &buffIn,
ZSTD_e_end
)) {}
fuzzer.c
269
while ( ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_end
) ) {}
1190
CHECK_Z(ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_end
));
1251
CHECK_Z(ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_end
));
1259
CHECK_Z(ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_end
));
1501
CHECK_Z(ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_end
));
1510
CHECK_Z(ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_end
));
1671
CHECK_Z( ZSTD_compressStream2(cctx, &outb, &inb,
ZSTD_e_end
) );
1695
CHECK_Z( ZSTD_compressStream2(cctx, &outb, &inb,
ZSTD_e_end
) ); /* will break internal assert if stats_init is not disabled */
1715
CHECK_Z( ZSTD_compressStream2(cctx, &outb, &inb,
ZSTD_e_end
) ); /* will break internal assert if stats_init is not disabled */
3572
size_t const result = ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_end
);
[
all
...]
/src/external/bsd/zstd/dist/examples/
multiple_streaming_compression.c
76
ZSTD_EndDirective const mode = lastChunk ?
ZSTD_e_end
: ZSTD_e_continue;
streaming_compression.c
61
* ZSTD_e_continue. If this is the last chunk, we use
ZSTD_e_end
.
62
* Zstd optimizes the case where the first flush mode is
ZSTD_e_end
,
66
ZSTD_EndDirective const mode = lastChunk ?
ZSTD_e_end
: ZSTD_e_continue;
streaming_compression_thread_pool.c
71
* ZSTD_e_continue. If this is the last chunk, we use
ZSTD_e_end
.
72
* Zstd optimizes the case where the first flush mode is
ZSTD_e_end
,
76
ZSTD_EndDirective const mode = lastChunk ?
ZSTD_e_end
: ZSTD_e_continue;
/src/external/gpl3/binutils/dist/gas/
compress-debug.c
104
size_t ret = ZSTD_compressStream2 (ctx, &ob, &ib,
ZSTD_e_end
);
/src/external/gpl3/binutils.old/dist/gas/
compress-debug.c
104
size_t ret = ZSTD_compressStream2 (ctx, &ob, &ib,
ZSTD_e_end
);
/src/external/bsd/zstd/dist/tests/fuzz/
dictionary_stream_round_trip.c
102
ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_end
);
137
size_t const ret = ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_end
);
stream_round_trip.c
90
ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_end
);
127
size_t const ret = ZSTD_compressStream2(cctx, &out, &in,
ZSTD_e_end
);
/src/external/bsd/zstd/dist/tests/regression/
method.c
423
input.size > 0 ? ZSTD_e_continue :
ZSTD_e_end
;
425
while (in.pos < in.size || (op ==
ZSTD_e_end
&& ret != 0)) {
560
input.size > 0 ? ZSTD_e_continue :
ZSTD_e_end
;
562
while (in.pos < in.size || (op ==
ZSTD_e_end
&& zret != 0)) {
/src/external/bsd/zstd/dist/lib/compress/
zstdmt_compress.c
1406
int const endFrame = (endOp ==
ZSTD_e_end
);
1458
assert(endOp ==
ZSTD_e_end
); /* only possible case : need to end the frame with an empty last block */
1570
if (end ==
ZSTD_e_end
) return !mtctx->frameEnded; /* for
ZSTD_e_end
, question becomes : is frame completed ? instead of : are internal buffers fully flushed ? */
1897
if ((input->pos < input->size) && (endOp ==
ZSTD_e_end
)) {
1911
|| ((endOp ==
ZSTD_e_end
) && (!mtctx->frameEnded)) ) { /* must finish the frame with a zero-size block */
zstd_compress.c
6137
assert((U32)flushMode <= (U32)
ZSTD_e_end
);
6146
if ( (flushMode ==
ZSTD_e_end
)
6208
unsigned const lastBlock = (flushMode ==
ZSTD_e_end
) && (ip==iend);
6226
unsigned const lastBlock = (flushMode ==
ZSTD_e_end
) && (ip + iSize == iend);
6345
* If @endOp ==
ZSTD_e_end
, @inSize becomes pledgedSrcSize.
6366
if (endOp ==
ZSTD_e_end
) cctx->pledgedSrcSizePlusOne = inSize + 1; /* auto-determine pledgedSrcSize */
6456
RETURN_ERROR_IF((U32)endOp > (U32)
ZSTD_e_end
, parameter_outOfBound, "invalid endDirective");
6508
|| (endOp ==
ZSTD_e_end
&& flushMin == 0) ) { /* compression completed */
6523
assert(endOp == ZSTD_e_flush || endOp ==
ZSTD_e_end
);
6584
ZSTD_e_end
);
[
all
...]
/src/crypto/external/apache2/openssl/dist/crypto/comp/
c_zstd.c
690
zret = ZSTD_compressStream2(ctx->compress.state, &ctx->compress.outbuf, &inBuf,
ZSTD_e_end
);
/src/external/bsd/zstd/dist/lib/
zstd.h
475
* (note : a strong exception to this rule is when first invocation of ZSTD_compressStream2() sets
ZSTD_e_end
:
584
* or invoking immediately ZSTD_compressStream2(,,,
ZSTD_e_end
),
762
* Calling ZSTD_compressStream2() with
ZSTD_e_end
instructs to finish a frame.
766
* You must continue calling ZSTD_compressStream2() with
ZSTD_e_end
until it returns 0, at which point you are free to
768
* note:
ZSTD_e_end
will flush as much output as possible, meaning when compressing with multiple threads, it will
789
ZSTD_e_end
=2 /* flush any remaining data _and_ close current frame.
807
* - Exception : if the first call requests a
ZSTD_e_end
directive and provides enough dstCapacity, the function delegates to ZSTD_compress2() which is always blocking.
812
* For
ZSTD_e_end
, @return == 0 when internal buffers are fully flushed and frame is completed.
813
* - after a
ZSTD_e_end
directive, if internal buffer is not fully flushed (@return != 0),
814
* only
ZSTD_e_end
or ZSTD_e_flush operations are allowed
[
all
...]
/src/external/bsd/zstd/dist/programs/
fileio.c
1556
directive =
ZSTD_e_end
;
1560
|| (directive ==
ZSTD_e_end
&& stillToFlush != 0) ) {
1714
} while (directive !=
ZSTD_e_end
);
/src/external/bsd/libarchive/dist/libarchive/
archive_write_set_format_7zip.c
2462
ZSTD_EndDirective mode = (action == ARCHIVE_Z_RUN) ? ZSTD_e_continue :
ZSTD_e_end
;
Completed in 77 milliseconds
Indexes created Fri Jun 12 00:25:51 UTC 2026