Searched refs:nextBlock (Results 1 - 4 of 4) sorted by relevance

/external/webkit/JavaScriptCore/runtime/
H A DCollectorHeapIterator.h103 if (m_block < m_heap.nextBlock || (m_block == m_heap.nextBlock && m_cell < m_heap.nextCell))
121 ASSERT(m_block > m_heap.nextBlock || (m_block == m_heap.nextBlock && m_cell >= m_heap.nextCell));
H A DCollector.cpp345 m_heap.nextBlock = 0;
346 DeadObjectIterator it(m_heap, m_heap.nextBlock, m_heap.nextCell);
410 ASSERT(m_heap.nextBlock < m_heap.usedBlocks);
411 Block* block = reinterpret_cast<Block*>(m_heap.blocks[m_heap.nextBlock]);
427 } while (++m_heap.nextBlock != m_heap.usedBlocks);
1072 DeadObjectIterator it(m_heap, m_heap.nextBlock, m_heap.nextCell);
1142 return m_heap.nextBlock * HeapConstants::cellsPerBlock // allocated full blocks
1144 + markedCells(m_heap.nextBlock, m_heap.nextCell) // marked cells in remainder of m_heap
1251 m_heap.nextBlock = 0;
1277 m_heap.nextBlock
[all...]
H A DCollector.h54 size_t nextBlock; member in struct:JSC::CollectorHeap
/external/webkit/WebCore/rendering/
H A DRenderBlock.cpp550 RenderBlock* nextBlock = toRenderBlock(next); local
552 nextBlock->moveAllChildrenTo(prevBlock, prevBlock->children());
554 nextBlock->deleteLineBoxTree();
555 nextBlock->destroy();

Completed in 25 milliseconds