Home
last modified time | relevance | path

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

/oneTBB/test/tbbmalloc/
H A Dtest_malloc_overload.cpp186 const uint32_t fittingAlignment = rml::internal::estimatedCacheLineSize; variable
187 …T_FITTING_SIZE(N) ( (blockSize-2*rml::internal::estimatedCacheLineSize)/N ) & ~(fittingAlignment-1)
/oneTBB/src/tbbmalloc/
H A Dfrontend.cpp512 const uint32_t fittingAlignment = estimatedCacheLineSize; variable
514 #define SET_FITTING_SIZE(N) ( (slabSize-sizeof(Block))/N ) & ~(fittingAlignment-1)
1761 if ( ! isAligned(object,2*fittingAlignment) ) in findObjectToFree()
1769 MALLOC_ASSERT( isAligned(objectToFree,fittingAlignment), ASSERT_TEXT ); in findObjectToFree()
2379 if (alignment<=fittingAlignment) in allocateAligned()