Searched refs:NCountSize (Results 1 - 2 of 2) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | zstd_compress_sequences.c | 280 { size_t const NCountSize = FSE_writeNCount(op, (size_t)(oend - op), wksp->norm, max, tableLog); /* overflow protected */ in ZSTD_buildCTable() local 281 FORWARD_IF_ERROR(NCountSize, "FSE_writeNCount failed"); in ZSTD_buildCTable() 283 return NCountSize; in ZSTD_buildCTable()
|
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | compress.c | 672 size_t const NCountSize = FSE_writeNCount(op, oend - op, norm, max, tableLog); /* overflow protected */ in ZSTD_compressSequences_internal() local 673 if (FSE_isError(NCountSize)) in ZSTD_compressSequences_internal() 674 return NCountSize; in ZSTD_compressSequences_internal() 675 op += NCountSize; in ZSTD_compressSequences_internal() 704 size_t const NCountSize = FSE_writeNCount(op, oend - op, norm, max, tableLog); /* overflow protected */ in ZSTD_compressSequences_internal() local 705 if (FSE_isError(NCountSize)) in ZSTD_compressSequences_internal() 706 return NCountSize; in ZSTD_compressSequences_internal() 707 op += NCountSize; in ZSTD_compressSequences_internal() 736 size_t const NCountSize = FSE_writeNCount(op, oend - op, norm, max, tableLog); /* overflow protected */ in ZSTD_compressSequences_internal() local 737 if (FSE_isError(NCountSize)) in ZSTD_compressSequences_internal() [all...] |
Completed in 6 milliseconds