Lines Matching refs:tableLog
665 const U32 tableLog = FSE_optimalTableLog(LLFSELog, nbSeq, max); in ZSTD_compressSequences_internal() local
670 FSE_normalizeCount(norm, tableLog, count, nbSeq_1, max); in ZSTD_compressSequences_internal()
672 …size_t const NCountSize = FSE_writeNCount(op, oend - op, norm, max, tableLog); /* overflow protect… in ZSTD_compressSequences_internal()
677 FSE_buildCTable_wksp(CTable_LitLength, norm, max, tableLog, workspace, workspaceSize); in ZSTD_compressSequences_internal()
697 const U32 tableLog = FSE_optimalTableLog(OffFSELog, nbSeq, max); in ZSTD_compressSequences_internal() local
702 FSE_normalizeCount(norm, tableLog, count, nbSeq_1, max); in ZSTD_compressSequences_internal()
704 …size_t const NCountSize = FSE_writeNCount(op, oend - op, norm, max, tableLog); /* overflow protect… in ZSTD_compressSequences_internal()
709 FSE_buildCTable_wksp(CTable_OffsetBits, norm, max, tableLog, workspace, workspaceSize); in ZSTD_compressSequences_internal()
729 const U32 tableLog = FSE_optimalTableLog(MLFSELog, nbSeq, max); in ZSTD_compressSequences_internal() local
734 FSE_normalizeCount(norm, tableLog, count, nbSeq_1, max); in ZSTD_compressSequences_internal()
736 …size_t const NCountSize = FSE_writeNCount(op, oend - op, norm, max, tableLog); /* overflow protect… in ZSTD_compressSequences_internal()
741 FSE_buildCTable_wksp(CTable_MatchLength, norm, max, tableLog, workspace, workspaceSize); in ZSTD_compressSequences_internal()