Home
last modified time | relevance | path

Searched refs:scale (Results 1 – 2 of 2) sorted by relevance

/lib/
Dstackdepot.c239 int scale = STACK_HASH_SCALE; in stack_depot_init() local
247 if (scale > PAGE_SHIFT) in stack_depot_init()
248 entries >>= (scale - PAGE_SHIFT); in stack_depot_init()
250 entries <<= (PAGE_SHIFT - scale); in stack_depot_init()
/lib/zstd/compress/
Dfse_compress.c442 U64 const scale = 62 - tableLog; in FSE_normalizeCount() local
444 U64 const vStep = 1ULL<<(scale-20); in FSE_normalizeCount()
458 short proba = (short)((count[s]*step) >> scale); in FSE_normalizeCount()
461 proba += (count[s]*step) - ((U64)proba<<scale) > restToBeat; in FSE_normalizeCount()