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

/macosx-10.10.1/JavaScriptCore-7600.1.17/heap/
H A DMarkedSpace.cpp87 for (size_t cellSize = preciseStep; cellSize <= preciseCutoff; cellSize += preciseStep) {
88 allocatorFor(cellSize).init(heap, this, cellSize, MarkedBlock::None);
89 normalDestructorAllocatorFor(cellSize).init(heap, this, cellSize, MarkedBlock::Normal);
90 immortalStructureDestructorAllocatorFor(cellSize).init(heap, this, cellSize, MarkedBlock::ImmortalStructure);
93 for (size_t cellSize
[all...]
H A DMarkedAllocator.h28 size_t cellSize() { return m_cellSize; } function in class:JSC::MarkedAllocator
43 void init(Heap*, MarkedSpace*, size_t cellSize, MarkedBlock::DestructorType);
83 inline void MarkedAllocator::init(Heap* heap, MarkedSpace* markedSpace, size_t cellSize, MarkedBlock::DestructorType destructorType) argument
87 m_cellSize = cellSize;
H A DMarkedBlock.cpp37 MarkedBlock* MarkedBlock::create(DeadBlock* block, MarkedAllocator* allocator, size_t cellSize, DestructorType destructorType) argument
41 return new (NotNull, block) MarkedBlock(region, allocator, cellSize, destructorType);
44 MarkedBlock::MarkedBlock(Region* region, MarkedAllocator* allocator, size_t cellSize, DestructorType destructorType) argument
46 , m_atomsPerCell((cellSize + atomSize - 1) / atomSize)
47 , m_endAtom((allocator->cellSize() ? atomsPerBlock : region->blockSize() / atomSize) - m_atomsPerCell + 1)
105 return FreeList(head, count * cellSize());
H A DMarkedAllocator.cpp91 if (bytes > block->cellSize()) {
117 if (bytes > m_currentBlock->cellSize())
199 size_t cellSize = m_cellSize ? m_cellSize : WTF::roundUpToMultipleOf<MarkedBlock::atomSize>(bytes); local
202 return MarkedBlock::create(m_heap->blockAllocator().allocate<MarkedBlock>(), this, cellSize, m_destructorType);
203 return MarkedBlock::create(m_heap->blockAllocator().allocateCustomSize(blockSize, MarkedBlock::blockSize), this, cellSize, m_destructorType);
H A DMarkedBlock.h116 static MarkedBlock* create(DeadBlock*, MarkedAllocator*, size_t cellSize, DestructorType);
157 size_t cellSize();
197 MarkedBlock(Region*, MarkedAllocator*, size_t cellSize, DestructorType);
319 inline size_t MarkedBlock::cellSize() function in class:JSC::MarkedBlock
331 return markCount() * cellSize();
H A DSlotVisitorInlines.h117 m_bytesVisited += MarkedBlock::blockFor(cell)->cellSize();
H A DMarkedSpace.h79 void operator()(MarkedBlock* block) { count(block->markCount() * block->cellSize()); }
H A DHeap.cpp1336 void* limit = static_cast<void*>(reinterpret_cast<char*>(cell) + MarkedBlock::blockFor(cell)->cellSize());
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecode/
H A DObjectAllocationProfile.h84 ASSERT(allocator->cellSize());
87 size_t slop = (allocator->cellSize() - allocationSize) / sizeof(WriteBarrier<Unknown>);
/macosx-10.10.1/pyobjc-45/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.10.1/pyobjc-45/2.6/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.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_nstextattachment.py15 def cellSize(self): return 1 member in class:TestNSTextAttachmentHelper
44 self.assertResultHasType(TestNSTextAttachmentHelper.cellSize, NSSize.__typestr__)
/macosx-10.10.1/tcl-105/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.10.1/Heimdal-398.1.2/lib/sqlite/
H A Dsqlite3.c49294 static u16 cellSize(MemPage *pPage, int iCell){ function
[all...]

Completed in 249 milliseconds