Searched refs:mostFrequent (Results 1 – 5 of 5) sorted by relevance
/external/zstd/lib/compress/ |
D | zstd_compress_sequences.h | 25 size_t const mostFrequent, size_t nbSeq, unsigned const FSELog,
|
D | zstd_compress_superblock.c | 199 …size_t const mostFrequent = HIST_countFast_wksp(countWksp, &max, llCodeTable, nbSeq, workspace, wk… in ZSTD_buildSuperBlockEntropy_sequences() local 203 countWksp, max, mostFrequent, nbSeq, in ZSTD_buildSuperBlockEntropy_sequences() 222 …size_t const mostFrequent = HIST_countFast_wksp(countWksp, &max, ofCodeTable, nbSeq, workspace, wk… in ZSTD_buildSuperBlockEntropy_sequences() local 228 countWksp, max, mostFrequent, nbSeq, in ZSTD_buildSuperBlockEntropy_sequences() 246 …size_t const mostFrequent = HIST_countFast_wksp(countWksp, &max, mlCodeTable, nbSeq, workspace, wk… in ZSTD_buildSuperBlockEntropy_sequences() local 250 countWksp, max, mostFrequent, nbSeq, in ZSTD_buildSuperBlockEntropy_sequences()
|
D | zstd_compress_sequences.c | 157 size_t const mostFrequent, size_t nbSeq, unsigned const FSELog, in ZSTD_selectEncodingType() argument 164 if (mostFrequent == nbSeq) { in ZSTD_selectEncodingType() 191 || (mostFrequent < (nbSeq >> (defaultNormLog-1))) ) { in ZSTD_selectEncodingType()
|
D | zstd_compress.c | 2228 …size_t const mostFrequent = HIST_countFast_wksp(count, &max, llCodeTable, nbSeq, entropyWorkspace,… in ZSTD_entropyCompressSequences_internal() local 2232 count, max, mostFrequent, nbSeq, in ZSTD_entropyCompressSequences_internal() 2254 size_t const mostFrequent = HIST_countFast_wksp( in ZSTD_entropyCompressSequences_internal() local 2261 count, max, mostFrequent, nbSeq, in ZSTD_entropyCompressSequences_internal() 2282 size_t const mostFrequent = HIST_countFast_wksp( in ZSTD_entropyCompressSequences_internal() local 2287 count, max, mostFrequent, nbSeq, in ZSTD_entropyCompressSequences_internal()
|
/external/zstd/tests/ |
D | decodecorpus.c | 841 …size_t const mostFrequent = HIST_countFast_wksp(count, &max, llCodeTable, nbSeq, WKSP, sizeof(WKSP… in writeSequences() local 842 assert(!HIST_isError(mostFrequent)); in writeSequences() 848 } else if (mostFrequent == nbSeq) { in writeSequences() 873 …size_t const mostFrequent = HIST_countFast_wksp(count, &max, ofCodeTable, nbSeq, WKSP, sizeof(WKSP… in writeSequences() local 874 assert(!HIST_isError(mostFrequent)); in writeSequences() 879 } else if (mostFrequent == nbSeq) { in writeSequences() 901 …size_t const mostFrequent = HIST_countFast_wksp(count, &max, mlCodeTable, nbSeq, WKSP, sizeof(WKSP… in writeSequences() local 902 assert(!HIST_isError(mostFrequent)); in writeSequences() 907 } else if (mostFrequent == nbSeq) { in writeSequences()
|