Searched refs:firstStartupBlock (Results 1 – 9 of 9) sorted by relevance
1813 static StartupBlock *firstStartupBlock; variable1848 if (!firstStartupBlock || firstStartupBlock->availableSize() < reqSize) { in allocate()1855 if (!firstStartupBlock || firstStartupBlock->availableSize() < reqSize) { in allocate()1861 if (firstStartupBlock) in allocate()1863 firstStartupBlock = newBlock; in allocate()1866 result = firstStartupBlock->bumpPtr; in allocate()1867 firstStartupBlock->allocatedCount++; in allocate()1868 firstStartupBlock->bumpPtr = in allocate()1885 MALLOC_ASSERT(firstStartupBlock, ASSERT_TEXT); in free()1892 if (this == firstStartupBlock) in free()[all …]
1756 static StartupBlock *firstStartupBlock; variable1791 if (!firstStartupBlock || firstStartupBlock->availableSize() < reqSize) { in allocate()1798 if (!firstStartupBlock || firstStartupBlock->availableSize() < reqSize) { in allocate()1804 if (firstStartupBlock) in allocate()1806 firstStartupBlock = newBlock; in allocate()1809 result = firstStartupBlock->bumpPtr; in allocate()1810 firstStartupBlock->allocatedCount++; in allocate()1811 firstStartupBlock->bumpPtr = in allocate()1828 MALLOC_ASSERT(firstStartupBlock, ASSERT_TEXT); in free()1835 if (this == firstStartupBlock) in free()[all …]
1845 static StartupBlock *firstStartupBlock; variable1879 if (!firstStartupBlock || firstStartupBlock->availableSize() < reqSize) { in allocate()1884 newBlock->next = (Block*)firstStartupBlock; in allocate()1885 if (firstStartupBlock) in allocate()1887 firstStartupBlock = newBlock; in allocate()1889 result = firstStartupBlock->bumpPtr; in allocate()1890 firstStartupBlock->allocatedCount++; in allocate()1891 firstStartupBlock->bumpPtr = in allocate()1906 MALLOC_ASSERT(firstStartupBlock, ASSERT_TEXT); in free()1913 if (this == firstStartupBlock) in free()[all …]
1602 ASSERT(!firstStartupBlock, "Startup heap memory leak detected"); in TestMain()
1659 REQUIRE_MESSAGE(!firstStartupBlock, "Startup heap memory leak detected");