Searched refs:sourceSize (Results 1 – 2 of 2) sorted by relevance
/lib/zstd/ |
D | fse_compress.c | 357 …signed *count, unsigned *maxSymbolValuePtr, const void *source, size_t sourceSize, unsigned checkM… in FSE_count_parallel_wksp() argument 361 const BYTE *const iend = ip + sourceSize; in FSE_count_parallel_wksp() 372 if (!sourceSize) { in FSE_count_parallel_wksp() 448 …signed *count, unsigned *maxSymbolValuePtr, const void *source, size_t sourceSize, unsigned *workS… in FSE_countFast_wksp() argument 450 if (sourceSize < 1500) in FSE_countFast_wksp() 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 …signed *count, unsigned *maxSymbolValuePtr, const void *source, size_t sourceSize, unsigned *workS… in FSE_count_wksp() argument 461 return FSE_count_parallel_wksp(count, maxSymbolValuePtr, source, sourceSize, 1, workSpace); in FSE_count_wksp() 463 return FSE_countFast_wksp(count, maxSymbolValuePtr, source, sourceSize, workSpace); in FSE_count_wksp()
|
D | fse.h | 249 …signed *count, unsigned *maxSymbolValuePtr, const void *source, size_t sourceSize, unsigned *workS…
|