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

/freebsd-current/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress_sequences.c63 FORWARD_IF_ERROR(FSE_normalizeCount(norm, tableLog, count, nbSeq, max), "");
256 FORWARD_IF_ERROR(FSE_normalizeCount(norm, tableLog, count, nbSeq_1, max), "");
H A Dfse_compress.c435 size_t FSE_normalizeCount (short* normalizedCounter, unsigned tableLog, function
659 CHECK_F( FSE_normalizeCount(norm, tableLog, count, srcSize, maxSymbolValue) );
H A Dhuf_compress.c88 CHECK_F( FSE_normalizeCount(norm, tableLog, count, wtSize, maxSymbolValue) );
/freebsd-current/sys/contrib/zstd/lib/compress/
H A Dzstd_compress_sequences.c76 FORWARD_IF_ERROR(FSE_normalizeCount(norm, tableLog, count, nbSeq, max, ZSTD_useLowProbCount(nbSeq)), "");
278 FORWARD_IF_ERROR(FSE_normalizeCount(wksp->norm, tableLog, count, nbSeq_1, max, ZSTD_useLowProbCount(nbSeq_1)), "FSE_normalizeCount failed");
H A Dfse_compress.c473 size_t FSE_normalizeCount (short* normalizedCounter, unsigned tableLog, function
699 CHECK_F( FSE_normalizeCount(norm, tableLog, count, srcSize, maxSymbolValue, /* useLowProbCount */ srcSize >= 2048) );
H A Dhuf_compress.c114 CHECK_F( FSE_normalizeCount(wksp->norm, tableLog, wksp->count, wtSize, maxSymbolValue, /* useLowProbCount */ 0) );
/freebsd-current/sys/contrib/openzfs/module/zstd/include/
H A Dzstd_compat_wrapper.h113 #define FSE_normalizeCount zfs_FSE_normalizeCount macro
/freebsd-current/sys/contrib/zstd/lib/dictBuilder/
H A Dzdict.c50 #include "../common/fse.h" /* FSE_normalizeCount, FSE_writeNCount */
820 errorCode = FSE_normalizeCount(offcodeNCount, Offlog, offcodeCount, total, offcodeMax, /* useLowProbCount */ 1);
823 DISPLAYLEVEL(1, "FSE_normalizeCount error with offcodeCount \n");
829 errorCode = FSE_normalizeCount(matchLengthNCount, mlLog, matchLengthCount, total, MaxML, /* useLowProbCount */ 1);
832 DISPLAYLEVEL(1, "FSE_normalizeCount error with matchLengthCount \n");
838 errorCode = FSE_normalizeCount(litLengthNCount, llLog, litLengthCount, total, MaxLL, /* useLowProbCount */ 1);
841 DISPLAYLEVEL(1, "FSE_normalizeCount error with litLengthCount \n");
/freebsd-current/sys/contrib/openzfs/module/zstd/lib/common/
H A Dfse.h137 /*! FSE_normalizeCount():
142 FSE_PUBLIC_API size_t FSE_normalizeCount(short* normalizedCounter, unsigned tableLog,
188 FSE_normalizeCount() will ensure that sum of frequencies is == 2 ^'tableLog'.
194 The result of FSE_normalizeCount() will be saved into a table,
/freebsd-current/sys/contrib/zstd/lib/common/
H A Dfse.h137 /*! FSE_normalizeCount():
148 FSE_PUBLIC_API size_t FSE_normalizeCount(short* normalizedCounter, unsigned tableLog,
194 FSE_normalizeCount() will ensure that sum of frequencies is == 2 ^'tableLog'.
200 The result of FSE_normalizeCount() will be saved into a table,

Completed in 211 milliseconds