Home | History | Annotate | Download | only in runtime

Lines Matching refs:startBlock

1045 size_t Heap::markedCells(size_t startBlock, size_t startCell) const
1047 ASSERT(startBlock <= m_heap.usedBlocks);
1050 if (startBlock >= m_heap.usedBlocks)
1054 result += m_heap.blocks[startBlock]->marked.count(startCell);
1055 for (size_t i = startBlock + 1; i < m_heap.usedBlocks; ++i)