Home
last modified time | relevance | path

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

/oneTBB/src/tbbmalloc/
H A Dfrontend.cpp1848 static StartupBlock *firstStartupBlock; variable
1881 if (!firstStartupBlock || firstStartupBlock->availableSize() < reqSize) { in allocate()
1886 newBlock->next = (Block*)firstStartupBlock; in allocate()
1887 if (firstStartupBlock) in allocate()
1889 firstStartupBlock = newBlock; in allocate()
1891 result = firstStartupBlock->bumpPtr; in allocate()
1892 firstStartupBlock->allocatedCount++; in allocate()
1893 firstStartupBlock->bumpPtr = in allocate()
1908 MALLOC_ASSERT(firstStartupBlock, ASSERT_TEXT); in free()
1915 if (this == firstStartupBlock) in free()
[all …]
/oneTBB/test/tbbmalloc/
H A Dtest_malloc_whitebox.cpp1665 REQUIRE_MESSAGE(!firstStartupBlock, "Startup heap memory leak detected");