Lines Matching refs:workSpace
88 * Same as FSE_buildCTable(), but using an externally allocated scratch buffer (`workSpace`).
90 * workSpace must also be properly aligned with FSE_FUNCTION_TYPE requirements
356 * `workSpace` size must be a minimum of `1024 * sizeof(unsigned)`` */
358 unsigned *const workSpace)
364 U32 *const Counting1 = workSpace;
447 * `workSpace` size must be table of >= `1024` unsigned */
448 size_t FSE_countFast_wksp(unsigned *count, unsigned *maxSymbolValuePtr, const void *source, size_t sourceSize, unsigned *workSpace)
452 return FSE_count_parallel_wksp(count, maxSymbolValuePtr, source, sourceSize, 0, workSpace);
457 * `workSpace` size must be table of >= `1024` unsigned */
458 size_t FSE_count_wksp(unsigned *count, unsigned *maxSymbolValuePtr, const void *source, size_t sourceSize, unsigned *workSpace)
461 return FSE_count_parallel_wksp(count, maxSymbolValuePtr, source, sourceSize, 1, workSpace);
463 return FSE_countFast_wksp(count, maxSymbolValuePtr, source, sourceSize, workSpace);