Searched refs:nextCell (Results 1 – 8 of 8) sorted by relevance
/external/srec/portable/src/ |
D | pmalloc.c | 478 register _Cell *nextCell; variable 483 while ((nextCell = qp->_Next) != 0 484 && _PTR_NORM(nextCell) < _PTR_NORM(q)) 495 while ((nextCell = qp->_Next) != 0 496 && _PTR_NORM(nextCell) < _PTR_NORM(q)) 522 while ((nextCell = qp->_Next) != 0 523 && _PTR_NORM(nextCell) < _PTR_NORM(q))
|
/external/webkit/JavaScriptCore/runtime/ |
D | Collector.cpp | 344 m_heap.nextCell = 0; in freeBlocks() 346 DeadObjectIterator it(m_heap, m_heap.nextBlock, m_heap.nextCell); in freeBlocks() 413 ASSERT(m_heap.nextCell < HeapConstants::cellsPerBlock); in allocate() 414 … if (!block->marked.get(m_heap.nextCell)) { // Always false for the last cell in the block in allocate() 415 Cell* cell = block->cells + m_heap.nextCell; in allocate() 422 ++m_heap.nextCell; in allocate() 425 } while (++m_heap.nextCell != HeapConstants::cellsPerBlock); in allocate() 426 m_heap.nextCell = 0; in allocate() 1072 DeadObjectIterator it(m_heap, m_heap.nextBlock, m_heap.nextCell); in sweep() 1143 + m_heap.nextCell // allocated cells in current block in objectCount() [all …]
|
D | CollectorHeapIterator.h | 103 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));
|
D | Collector.h | 55 size_t nextCell; member
|
/external/webkit/WebCore/rendering/ |
D | RenderTableCell.cpp | 401 RenderTableCell* nextCell = rtl ? tableElt->cellBefore(this) : tableElt->cellAfter(this); in collapsedRightBorder() local 402 if (nextCell && nextCell->style()) { in collapsedRightBorder() 403 …s(CollapsedBorderValue(&nextCell->style()->borderLeft(), BCELL), result) : compareBorders(result, … in collapsedRightBorder() 532 RenderTableCell* nextCell = table()->cellBelow(this); in collapsedBottomBorder() local 533 if (nextCell) { in collapsedBottomBorder() 535 … result = compareBorders(result, CollapsedBorderValue(&nextCell->style()->borderTop(), BCELL)); in collapsedBottomBorder() 546 if (nextCell) { in collapsedBottomBorder() 547 …result = compareBorders(result, CollapsedBorderValue(&nextCell->parent()->style()->borderTop(), BR… in collapsedBottomBorder()
|
/external/webkit/WebCore/editing/ |
D | InsertListCommand.cpp | 219 Node* nextCell = enclosingTableCell(nextPosition.deepEquivalent()); in doApply() local 223 …(!nextList->hasTagName(listTag) || startNode->isDescendantOf(nextList) || nextCell != currentCell)) in doApply()
|
/external/webkit/JavaScriptCore/ |
D | ChangeLog | 137 m_heap.nextCell. No test for this since I can't think of a way that this
|
/external/webkit/WebCore/ |
D | ChangeLog-2006-05-10 | 30874 RenderTableCell::collapsedBottomBorder() gets nextCell by calling
|