HomeSort by: relevance | last modified time | path
    Searched refs:FSE_normalizeCount (Results 1 - 7 of 7) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/compress/
zstd_compress_sequences.c 76 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");
fse_compress.c 465 size_t FSE_normalizeCount (short* normalizedCounter, unsigned tableLog,
huf_compress.c 171 CHECK_F( FSE_normalizeCount(wksp->norm, tableLog, wksp->count, wtSize, maxSymbolValue, /* useLowProbCount */ 0) );
  /src/external/bsd/zstd/dist/lib/dictBuilder/
zdict.c 49 #include "../common/fse.h" /* FSE_normalizeCount, FSE_writeNCount */
748 errorCode = FSE_normalizeCount(offcodeNCount, Offlog, offcodeCount, total, offcodeMax, /* useLowProbCount */ 1);
751 DISPLAYLEVEL(1, "FSE_normalizeCount error with offcodeCount \n");
757 errorCode = FSE_normalizeCount(matchLengthNCount, mlLog, matchLengthCount, total, MaxML, /* useLowProbCount */ 1);
760 DISPLAYLEVEL(1, "FSE_normalizeCount error with matchLengthCount \n");
766 errorCode = FSE_normalizeCount(litLengthNCount, llLog, litLengthCount, total, MaxLL, /* useLowProbCount */ 1);
769 DISPLAYLEVEL(1, "FSE_normalizeCount error with litLengthCount \n");
  /src/external/bsd/zstd/dist/lib/common/
fse.h 89 /*! FSE_normalizeCount():
100 FSE_PUBLIC_API size_t FSE_normalizeCount(short* normalizedCounter, unsigned tableLog,
144 FSE_normalizeCount() will ensure that sum of frequencies is == 2 ^'tableLog'.
150 The result of FSE_normalizeCount() will be saved into a table,
  /src/external/bsd/zstd/dist/tests/
decodecorpus.c 896 FSE_normalizeCount(norm, tableLog, count, nbSeq_1, max, nbSeq >= 2048);
924 FSE_normalizeCount(norm, tableLog, count, nbSeq_1, max, nbSeq >= 2048);
954 FSE_normalizeCount(norm, tableLog, count, nbSeq_1, max, nbSeq >= 2048);
fuzzer.c 4172 DISPLAYLEVEL(3, "test%3i : testing FSE_normalizeCount() PR#1255: ", testNb++);
4183 /* Calling FSE_normalizeCount() on a uniform distribution should not
4186 FSE_normalizeCount(norm, tableLog, count, nbSeq, maxSymbolValue, /* useLowProbCount */ 1);

Completed in 62 milliseconds