Lines Matching refs:maxSymbolValuePtr
324 size_t FSE_count_simple(unsigned *count, unsigned *maxSymbolValuePtr, const void *src, size_t srcSi… in FSE_count_simple() argument
328 unsigned maxSymbolValue = *maxSymbolValuePtr; in FSE_count_simple()
333 *maxSymbolValuePtr = 0; in FSE_count_simple()
342 *maxSymbolValuePtr = maxSymbolValue; in FSE_count_simple()
357 static size_t FSE_count_parallel_wksp(unsigned *count, unsigned *maxSymbolValuePtr, const void *sou… in FSE_count_parallel_wksp() argument
362 unsigned maxSymbolValue = *maxSymbolValuePtr; in FSE_count_parallel_wksp()
374 *maxSymbolValuePtr = 0; in FSE_count_parallel_wksp()
441 *maxSymbolValuePtr = maxSymbolValue; in FSE_count_parallel_wksp()
448 size_t FSE_countFast_wksp(unsigned *count, unsigned *maxSymbolValuePtr, const void *source, size_t … in FSE_countFast_wksp() argument
451 return FSE_count_simple(count, maxSymbolValuePtr, source, sourceSize); in FSE_countFast_wksp()
452 return FSE_count_parallel_wksp(count, maxSymbolValuePtr, source, sourceSize, 0, workSpace); in FSE_countFast_wksp()
458 size_t FSE_count_wksp(unsigned *count, unsigned *maxSymbolValuePtr, const void *source, size_t sour… in FSE_count_wksp() argument
460 if (*maxSymbolValuePtr < 255) in FSE_count_wksp()
461 return FSE_count_parallel_wksp(count, maxSymbolValuePtr, source, sourceSize, 1, workSpace); in FSE_count_wksp()
462 *maxSymbolValuePtr = 255; in FSE_count_wksp()
463 return FSE_countFast_wksp(count, maxSymbolValuePtr, source, sourceSize, workSpace); in FSE_count_wksp()