Home
last modified time | relevance | path

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

/oneTBB/src/tbbmalloc/
H A Dbackend.cpp81 extern HugePagesStatus hugePages;
99 … size_t pageSize = hugePages.isEnabled ? hugePages.getGranularity() : extMemPool->granularity; in allocRawMem()
105 if (hugePages.isEnabled) { in allocRawMem()
106 if (hugePages.isHPAvailable) { in allocRawMem()
109 if (!res && hugePages.isTHPAvailable) { in allocRawMem()
627 return hugePages.isEnabled && !inUserPool() ? in getMaxBinnedSize()
H A Dfrontend.cpp302 HugePagesStatus hugePages; variable
2018 hugePages.init(); in initDefaultPool()
2092 hugePages.printStatus(); in doInitialization()
2923 hugePages.reset(); in __TBB_mallocProcessShutdownNotification()
3263 hugePages.setMode(value); in scalable_allocation_mode()
/oneTBB/test/tbbmalloc/
H A Dtest_malloc_whitebox.cpp807 REQUIRE_MESSAGE(!hugePages.isEnabled, "scalable_allocation_mode " in checkNoHugePages()
1258 … REQUIRE_MESSAGE(hugePages.isEnabled, "Huge pages should be enabled via scalable_allocation_mode"); in TestTHP()