Home
last modified time | relevance | path

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

/oneTBB/src/tbbmalloc/
H A Dlarge_objects.h91 int sizeExp = (int)BitScanRev(size); // same as __TBB_Log2 in sizeToIdx() local
92 MALLOC_ASSERT(sizeExp >= 0, "A shift amount (sizeExp) must not be negative"); in sizeToIdx()
93 size_t majorStepSize = 1ULL << sizeExp; in sizeToIdx()
94 int minorStepExp = sizeExp - StepFactorExp; in sizeToIdx()
99 return StepFactor * (sizeExp - MinSizeExp) + minorIdx; in sizeToIdx()