Lines Matching refs:firstStartupBlock
1848 static StartupBlock *firstStartupBlock; variable
1881 if (!firstStartupBlock || firstStartupBlock->availableSize() < reqSize) { in allocate()
1886 newBlock->next = (Block*)firstStartupBlock; in allocate()
1887 if (firstStartupBlock) in allocate()
1888 firstStartupBlock->previous = (Block*)newBlock; in allocate()
1889 firstStartupBlock = newBlock; in allocate()
1891 result = firstStartupBlock->bumpPtr; in allocate()
1892 firstStartupBlock->allocatedCount++; in allocate()
1893 firstStartupBlock->bumpPtr = in allocate()
1894 (FreeObject *)((uintptr_t)firstStartupBlock->bumpPtr + reqSize); in allocate()
1908 MALLOC_ASSERT(firstStartupBlock, ASSERT_TEXT); in free()
1915 if (this == firstStartupBlock) in free()
1916 firstStartupBlock = (StartupBlock*)firstStartupBlock->next; in free()