mostFrequent      653 lib/zstd/compress.c 		size_t const mostFrequent = FSE_countFast_wksp(count, &max, llCodeTable, nbSeq, workspace);
mostFrequent      654 lib/zstd/compress.c 		if ((mostFrequent == nbSeq) && (nbSeq > 2)) {
mostFrequent      660 lib/zstd/compress.c 		} else if ((nbSeq < MIN_SEQ_FOR_DYNAMIC_FSE) || (mostFrequent < (nbSeq >> (LL_defaultNormLog - 1)))) {
mostFrequent      685 lib/zstd/compress.c 		size_t const mostFrequent = FSE_countFast_wksp(count, &max, ofCodeTable, nbSeq, workspace);
mostFrequent      686 lib/zstd/compress.c 		if ((mostFrequent == nbSeq) && (nbSeq > 2)) {
mostFrequent      692 lib/zstd/compress.c 		} else if ((nbSeq < MIN_SEQ_FOR_DYNAMIC_FSE) || (mostFrequent < (nbSeq >> (OF_defaultNormLog - 1)))) {
mostFrequent      717 lib/zstd/compress.c 		size_t const mostFrequent = FSE_countFast_wksp(count, &max, mlCodeTable, nbSeq, workspace);
mostFrequent      718 lib/zstd/compress.c 		if ((mostFrequent == nbSeq) && (nbSeq > 2)) {
mostFrequent      724 lib/zstd/compress.c 		} else if ((nbSeq < MIN_SEQ_FOR_DYNAMIC_FSE) || (mostFrequent < (nbSeq >> (ML_defaultNormLog - 1)))) {