Searched refs:bucketSize (Results 1 - 2 of 2) sorted by relevance

/linux-master/lib/zstd/compress/
H A Dzstd_lazy.c407 U32 const bucketSize = 1 << ZSTD_LAZY_DDSS_BUCKET_LOG; local
408 U32 const cacheSize = bucketSize - 1;
412 /* We know the hashtable is oversized by a factor of `bucketSize`.
413 * We are going to temporarily pretend `bucketSize == 1`, keeping only a
495 hashTable[bucketIdx + bucketSize - 1] = chainPackedPointer;
526 const U32 bucketSize = (1 << ZSTD_LAZY_DDSS_BUCKET_LOG); local
527 const U32 bucketLimit = nbAttempts < bucketSize - 1 ? nbAttempts : bucketSize - 1;
531 for (ddsAttempt = 0; ddsAttempt < bucketSize - 1; ddsAttempt++) {
536 U32 const chainPackedPointer = dms->hashTable[ddsIdx + bucketSize
[all...]
H A Dhuf_compress.c583 U32 const bucketSize = rankPosition[n].curr-rankPosition[n].base; local
585 if (bucketSize > 1) {
587 HUF_simpleQuickSort(huffNode + bucketStartIdx, 0, bucketSize-1);

Completed in 200 milliseconds