HomeSort by relevance Sort by last modified time
    Searched full:m_heap (Results 1 - 4 of 4) sorted by null

  /external/webkit/JavaScriptCore/runtime/
Collector.cpp 172 memset(&m_heap, 0, sizeof(CollectorHeap));
280 size_t numBlocks = m_heap.numBlocks;
281 if (m_heap.usedBlocks == numBlocks) {
286 m_heap.numBlocks = numBlocks;
287 m_heap.blocks = static_cast<CollectorBlock**>(fastRealloc(m_heap.blocks, numBlocks * sizeof(CollectorBlock*)));
289 m_heap.blocks[m_heap.usedBlocks++] = block;
296 m_heap.didShrink = true;
298 ObjectIterator it(m_heap, block)
    [all...]
CollectorHeapIterator.h 43 CollectorHeap& m_heap; member in class:JSC::CollectorHeapIterator
67 : m_heap(heap)
80 return reinterpret_cast<JSCell*>(m_heap.blocks[m_block]->cells + m_cell);
103 if (m_block < m_heap.nextBlock || (m_block == m_heap.nextBlock && m_cell < m_heap.nextCell))
106 while (m_block < m_heap.usedBlocks && !m_heap.blocks[m_block]->marked.get(m_cell))
121 ASSERT(m_block > m_heap.nextBlock || (m_block == m_heap.nextBlock && m_cell >= m_heap.nextCell))
    [all...]
Collector.h 154 CollectorHeap m_heap; member in class:JSC::Heap
277 if (void* result = m_heap.nextNumber) {
278 m_heap.nextNumber = 0;
283 m_heap.nextNumber = static_cast<char*>(result) + (CELL_SIZE / 2);
  /external/webkit/JavaScriptCore/
ChangeLog 136 m_block were equal to m_heap.nextBlock and m_cell were less than
137 m_heap.nextCell. No test for this since I can't think of a way that this
    [all...]

Completed in 138 milliseconds