Lines Matching refs:bootStrapBlock
99 Block *bootStrapBlock; member in rml::internal::BootStrapBlocks
887 if (!bootStrapBlock) { in allocate()
888 bootStrapBlock = memPool->getEmptyBlock(size); in allocate()
889 if (!bootStrapBlock) return nullptr; in allocate()
891 result = bootStrapBlock->bumpPtr; in allocate()
892 …bootStrapBlock->bumpPtr = (FreeObject *)((uintptr_t)bootStrapBlock->bumpPtr - bootStrapBlock->obje… in allocate()
893 if ((uintptr_t)bootStrapBlock->bumpPtr < (uintptr_t)bootStrapBlock+sizeof(Block)) { in allocate()
894 bootStrapBlock->bumpPtr = nullptr; in allocate()
895 bootStrapBlock->next = bootStrapBlockUsed; in allocate()
896 bootStrapBlockUsed = bootStrapBlock; in allocate()
897 bootStrapBlock = nullptr; in allocate()
917 bootStrapBlock = bootStrapBlockUsed = nullptr; in reset()