OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bitstreamSize
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/bsd/zstd/dist/lib/compress/
zstd_compress_superblock.c
211
{ size_t const
bitstreamSize
= ZSTD_encodeSequences(
218
FORWARD_IF_ERROR(
bitstreamSize
, "ZSTD_encodeSequences failed");
219
op +=
bitstreamSize
;
229
if (writeEntropy && fseMetadata->lastCountSize && fseMetadata->lastCountSize +
bitstreamSize
< 4) {
230
/* NCountSize >= 2 &&
bitstreamSize
> 0 ==> lastCountSize == 3 */
231
assert(fseMetadata->lastCountSize +
bitstreamSize
== 3);
237
DEBUGLOG(5, "ZSTD_compressSubBlock_sequences (
bitstreamSize
=%zu)",
bitstreamSize
);
zstd_compress.c
2964
{ size_t const
bitstreamSize
= ZSTD_encodeSequences(
2971
FORWARD_IF_ERROR(
bitstreamSize
, "ZSTD_encodeSequences failed");
2972
op +=
bitstreamSize
;
2982
if (lastCountSize && (lastCountSize +
bitstreamSize
) < 4) {
2983
/* lastCountSize >= 2 &&
bitstreamSize
> 0 ==> lastCountSize == 3 */
2984
assert(lastCountSize +
bitstreamSize
== 3);
Completed in 19 milliseconds
Indexes created Fri Apr 24 00:22:58 UTC 2026