Searched refs:m_freeList (Results 1 - 7 of 7) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/platform/
H A DPODFreeListArena.h122 , m_freeList(0)
138 if (m_freeList) {
140 void *cell = m_freeList;
141 m_freeList = m_freeList->m_next;
163 cell->m_next = m_freeList;
164 m_freeList = cell;
174 return m_freeList;
182 FreeCell *m_freeList; member in class:WebCore::PODFreeListArena::FreeListChunk
/macosx-10.10/JavaScriptCore-7600.1.17/heap/
H A DMarkedAllocator.h55 MarkedBlock::FreeList m_freeList; member in class:JSC::MarkedAllocator
69 return OBJECT_OFFSETOF(MarkedAllocator, m_freeList) + OBJECT_OFFSETOF(MarkedBlock::FreeList, head);
93 MarkedBlock::FreeCell* head = m_freeList.head;
102 m_freeList.head = head->next;
113 ASSERT(!m_freeList.head);
117 m_currentBlock->stopAllocating(m_freeList);
120 m_freeList = MarkedBlock::FreeList();
128 m_freeList = m_lastActiveBlock->resumeAllocating();
H A DMarkedAllocator.cpp68 while (!m_freeList.head) {
97 m_freeList = freeList;
101 if (!m_freeList.head) {
107 ASSERT(m_freeList.head);
120 MarkedBlock::FreeCell* head = m_freeList.head;
121 m_freeList.head = head->next;
168 ASSERT(!m_freeList.head);
169 m_heap->didAllocate(m_freeList.bytes);
209 ASSERT(!m_freeList.head);
220 m_freeList
[all...]
H A DHandleSet.h102 SinglyLinkedList<Node> m_freeList; member in class:JSC::HandleSet
127 if (m_freeList.isEmpty())
130 HandleSet::Node* node = m_freeList.pop();
140 m_freeList.push(node);
H A DHandleSet.cpp58 m_freeList.push(node);
/macosx-10.10/WTF-7600.1.24/wtf/
H A DListHashSet.h169 : m_freeList(pool())
177 Node* result = m_freeList;
196 m_freeList = next;
207 node->m_next = m_freeList;
208 m_freeList = node;
223 Node* m_freeList; member in class:WTF::ListHashSetNodeAllocator
/macosx-10.10/JavaScriptCore-7600.1.17/llint/
H A DLowLevelInterpreter.asm608 MarkedAllocator::m_freeList +

Completed in 195 milliseconds