Searched refs:mostFrequent (Results 1 – 1 of 1) sorted by relevance
/linux-4.19.296/lib/zstd/ |
D | compress.c | 653 size_t const mostFrequent = FSE_countFast_wksp(count, &max, llCodeTable, nbSeq, workspace); in ZSTD_compressSequences_internal() local 654 if ((mostFrequent == nbSeq) && (nbSeq > 2)) { in ZSTD_compressSequences_internal() 660 …} else if ((nbSeq < MIN_SEQ_FOR_DYNAMIC_FSE) || (mostFrequent < (nbSeq >> (LL_defaultNormLog - 1))… in ZSTD_compressSequences_internal() 685 size_t const mostFrequent = FSE_countFast_wksp(count, &max, ofCodeTable, nbSeq, workspace); in ZSTD_compressSequences_internal() local 686 if ((mostFrequent == nbSeq) && (nbSeq > 2)) { in ZSTD_compressSequences_internal() 692 …} else if ((nbSeq < MIN_SEQ_FOR_DYNAMIC_FSE) || (mostFrequent < (nbSeq >> (OF_defaultNormLog - 1))… in ZSTD_compressSequences_internal() 717 size_t const mostFrequent = FSE_countFast_wksp(count, &max, mlCodeTable, nbSeq, workspace); in ZSTD_compressSequences_internal() local 718 if ((mostFrequent == nbSeq) && (nbSeq > 2)) { in ZSTD_compressSequences_internal() 724 …} else if ((nbSeq < MIN_SEQ_FOR_DYNAMIC_FSE) || (mostFrequent < (nbSeq >> (ML_defaultNormLog - 1))… in ZSTD_compressSequences_internal()
|