Searched refs:cellSize (Results 1 - 14 of 14) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DMarkedSpace.cpp83 for (size_t cellSize = preciseStep; cellSize <= preciseCutoff; cellSize += preciseStep) {
84 allocatorFor(cellSize).init(heap, this, cellSize, MarkedBlock::None);
85 normalDestructorAllocatorFor(cellSize).init(heap, this, cellSize, MarkedBlock::Normal);
86 immortalStructureDestructorAllocatorFor(cellSize).init(heap, this, cellSize, MarkedBlock::ImmortalStructure);
89 for (size_t cellSize
[all...]
H A DMarkedBlock.cpp36 MarkedBlock* MarkedBlock::create(DeadBlock* block, MarkedAllocator* allocator, size_t cellSize, DestructorType destructorType) argument
40 return new (NotNull, block) MarkedBlock(region, allocator, cellSize, destructorType);
43 MarkedBlock::MarkedBlock(Region* region, MarkedAllocator* allocator, size_t cellSize, DestructorType destructorType) argument
45 , m_atomsPerCell((cellSize + atomSize - 1) / atomSize)
46 , m_endAtom((allocator->cellSize() ? atomsPerBlock : region->blockSize() / atomSize) - m_atomsPerCell + 1)
104 return FreeList(head, count * cellSize());
H A DMarkedAllocator.h26 size_t cellSize() { return m_cellSize; } function in class:JSC::MarkedAllocator
35 void init(Heap*, MarkedSpace*, size_t cellSize, MarkedBlock::DestructorType);
70 inline void MarkedAllocator::init(Heap* heap, MarkedSpace* markedSpace, size_t cellSize, MarkedBlock::DestructorType destructorType) argument
74 m_cellSize = cellSize;
H A DMarkedAllocator.cpp40 if (bytes > block->cellSize()) {
112 size_t cellSize = m_cellSize ? m_cellSize : WTF::roundUpToMultipleOf<MarkedBlock::atomSize>(bytes); local
115 return MarkedBlock::create(m_heap->blockAllocator().allocate<MarkedBlock>(), this, cellSize, m_destructorType);
116 return MarkedBlock::create(m_heap->blockAllocator().allocateCustomSize(blockSize, MarkedBlock::blockSize), this, cellSize, m_destructorType);
H A DMarkedBlock.h110 static MarkedBlock* create(DeadBlock*, MarkedAllocator*, size_t cellSize, DestructorType);
141 size_t cellSize();
172 MarkedBlock(Region*, MarkedAllocator*, size_t cellSize, DestructorType);
299 inline size_t MarkedBlock::cellSize() function in class:JSC::MarkedBlock
311 return markCount() * cellSize();
H A DMarkedSpace.h59 void operator()(MarkedBlock* block) { count(block->markCount() * block->cellSize()); }
H A DHeap.cpp883 void* limit = static_cast<void*>(reinterpret_cast<char*>(cell) + MarkedBlock::blockFor(cell)->cellSize());
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DObjectAllocationProfile.h84 ASSERT(allocator->cellSize());
87 size_t slop = (allocator->cellSize() - allocationSize) / sizeof(WriteBarrier<Unknown>);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nstextattachment.py10 def cellSize(self): return 1 member in class:TestNSTextAttachmentHelper
39 self.failUnlessResultHasType(TestNSTextAttachmentHelper.cellSize, NSSize.__typestr__)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nstextattachment.py10 def cellSize(self): return 1 member in class:TestNSTextAttachmentHelper
39 self.assertResultHasType(TestNSTextAttachmentHelper.cellSize, NSSize.__typestr__)
/macosx-10.9.5/tcl-102/tk/tk/macosx/
H A DtkMacOSXMenubutton.c346 bounds.size = cell ? [cell cellSize] : NSZeroSize;
356 bounds.size = cell ? [cell cellSize] : NSZeroSize;
364 bounds.size = cell ? [cell cellSize] : NSZeroSize;
H A DtkMacOSXButton.c597 bounds.size = [cell cellSize];
604 bounds.size = [cell cellSize];
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderThemeMac.mm1217 NSSize cellSize = [cell cellSizeForBounds:IntRect(IntPoint(), bounds.size())];
1218 return IntSize(bounds.width() < cellSize.width ? cellSize.width : bounds.width(),
1219 bounds.height() < cellSize.height ? cellSize.height : bounds.height());
/macosx-10.9.5/Heimdal-323.92.1/lib/sqlite/
H A Dsqlite3.c49294 static u16 cellSize(MemPage *pPage, int iCell){ function
[all...]

Completed in 447 milliseconds