HomeSort by relevance Sort by last modified time
    Searched refs:m_freeList (Results 1 - 2 of 2) sorted by null

  /external/webkit/JavaScriptCore/jit/
ExecutableAllocatorFixedVMPool.cpp 154 } else if (FreeListEntry* entryInFreeList = m_freeList.search(entry->size, m_freeList.EQUAL)) {
155 // m_freeList already contain an entry for this size - insert this node into the chain.
159 m_freeList.insert(entry);
164 // entries in m_freeList. Presently this is triggered at the point 16MB
170 iter.start_iter_least(m_freeList);
172 // Empty m_freeList into a Vector.
174 // Each entry in m_freeList might correspond to multiple
187 m_freeList.purge();
215 // we can reuse this. Pop it off the end of m_freeList
    [all...]
  /external/webkit/JavaScriptCore/wtf/
ListHashSet.h 127 : m_freeList(pool())
135 Node* result = m_freeList;
154 m_freeList = next;
165 node->m_next = m_freeList;
166 m_freeList = node;
182 Node* m_freeList;

Completed in 501 milliseconds