Lines Matching defs:countWorkspace
2363 ZSTD_strategy strategy, unsigned* countWorkspace,
2383 size_t const mostFrequent = HIST_countFast_wksp(countWorkspace, &max, llCodeTable, nbSeq, entropyWorkspace, entropyWkspSize); /* can't fail */
2387 countWorkspace, max, mostFrequent, nbSeq,
2396 countWorkspace, max, llCodeTable, nbSeq,
2414 countWorkspace, &max, ofCodeTable, nbSeq, entropyWorkspace, entropyWkspSize); /* can't fail */
2420 countWorkspace, max, mostFrequent, nbSeq,
2428 countWorkspace, max, ofCodeTable, nbSeq,
2446 countWorkspace, &max, mlCodeTable, nbSeq, entropyWorkspace, entropyWkspSize); /* can't fail */
2450 countWorkspace, max, mostFrequent, nbSeq,
2458 countWorkspace, max, mlCodeTable, nbSeq,
3094 unsigned* countWorkspace = (unsigned*)workspace;
3095 unsigned* entropyWorkspace = countWorkspace + (MaxSeq + 1);
3096 size_t entropyWorkspaceSize = wkspSize - (MaxSeq + 1) * sizeof(*countWorkspace);
3102 strategy, countWorkspace,