Home
last modified time | relevance | path

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

/oneTBB/src/tbbmalloc/
H A Dlarge_objects.h75 static const int StepFactor = 8; member
76 static const int StepFactorExp = Log2<StepFactor>::value;
80 static const unsigned NumBins = (MaxSizeExp - MinSizeExp) * StepFactor;
83 MALLOC_ASSERT(size >= StepFactor, "Size must not be less than the StepFactor"); in alignToBin()
99 return StepFactor * (sizeExp - MinSizeExp) + minorIdx; in sizeToIdx()
/oneTBB/test/tbbmalloc/
H A Dtest_malloc_whitebox.cpp1478 pow(2, float(idx) / float(rml::internal::LargeObjectCache::HugeBSProps::StepFactor))); in hocIdxToSizeFormula()