Searched refs:FSE_writeNCount (Results 1 - 10 of 10) sorted by relevance

/freebsd-current/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress_sequences.c64 return FSE_writeNCount(wksp, sizeof(wksp), norm, max, tableLog);
257 { size_t const NCountSize = FSE_writeNCount(op, oend - op, norm, max, tableLog); /* overflow protected */
258 FORWARD_IF_ERROR(NCountSize, "FSE_writeNCount failed");
H A Dfse_compress.c288 size_t FSE_writeNCount (void* buffer, size_t bufferSize, function
662 { CHECK_V_F(nc_err, FSE_writeNCount(op, oend-op, norm, maxSymbolValue, tableLog) );
H A Dhuf_compress.c91 { CHECK_V_F(hSize, FSE_writeNCount(op, (size_t)(oend-op), norm, maxSymbolValue, tableLog) );
/freebsd-current/sys/contrib/zstd/lib/compress/
H A Dzstd_compress_sequences.c77 return FSE_writeNCount(wksp, sizeof(wksp), norm, max, tableLog);
280 { size_t const NCountSize = FSE_writeNCount(op, (size_t)(oend - op), wksp->norm, max, tableLog); /* overflow protected */
281 FORWARD_IF_ERROR(NCountSize, "FSE_writeNCount failed");
H A Dfse_compress.c328 size_t FSE_writeNCount (void* buffer, size_t bufferSize, function
702 { CHECK_V_F(nc_err, FSE_writeNCount(op, oend-op, norm, maxSymbolValue, tableLog) );
H A Dhuf_compress.c117 { CHECK_V_F(hSize, FSE_writeNCount(op, (size_t)(oend-op), wksp->norm, maxSymbolValue, tableLog) );
/freebsd-current/sys/contrib/openzfs/module/zstd/include/
H A Dzstd_compat_wrapper.h116 #define FSE_writeNCount zfs_FSE_writeNCount macro
/freebsd-current/sys/contrib/zstd/lib/dictBuilder/
H A Dzdict.c50 #include "../common/fse.h" /* FSE_normalizeCount, FSE_writeNCount */
858 { size_t const ohSize = FSE_writeNCount(dstPtr, maxDstSize, offcodeNCount, OFFCODE_MAX, Offlog);
861 DISPLAYLEVEL(1, "FSE_writeNCount error with offcodeNCount \n");
869 { size_t const mhSize = FSE_writeNCount(dstPtr, maxDstSize, matchLengthNCount, MaxML, mlLog);
872 DISPLAYLEVEL(1, "FSE_writeNCount error with matchLengthNCount \n");
880 { size_t const lhSize = FSE_writeNCount(dstPtr, maxDstSize, litLengthNCount, MaxLL, llLog);
883 DISPLAYLEVEL(1, "FSE_writeNCount error with litlengthNCount \n");
/freebsd-current/sys/contrib/openzfs/module/zstd/lib/common/
H A Dfse.h150 /*! FSE_writeNCount():
154 FSE_PUBLIC_API size_t FSE_writeNCount (void* buffer, size_t bufferSize,
201 'normalizedCounter' can be saved in a compact manner to a memory area using FSE_writeNCount().
257 This can be performed by FSE_readNCount() if it was saved using FSE_writeNCount().
/freebsd-current/sys/contrib/zstd/lib/common/
H A Dfse.h156 /*! FSE_writeNCount():
160 FSE_PUBLIC_API size_t FSE_writeNCount (void* buffer, size_t bufferSize,
207 'normalizedCounter' can be saved in a compact manner to a memory area using FSE_writeNCount().
270 This can be performed by FSE_readNCount() if it was saved using FSE_writeNCount().

Completed in 303 milliseconds