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

  /external/chromium_org/third_party/WebKit/Source/platform/heap/
Heap.h 418 class FreeListEntry : public HeapObjectHeader {
421 explicit FreeListEntry(size_t size)
438 void unlink(FreeListEntry** prevNext)
445 void link(FreeListEntry** prevNext)
452 FreeListEntry* next() const { return m_next; }
455 void append(FreeListEntry* next)
478 FreeListEntry* m_next;
831 // Returns a bucket number for inserting a FreeListEntry of a
948 FreeListEntry* m_freeLists[blinkPageSizeLog2];
949 FreeListEntry* m_lastFreeListEntries[blinkPageSizeLog2]
    [all...]
Heap.cpp 651 FreeListEntry* entry = m_freeLists[i];
761 FreeListEntry* entry;
770 entry = new (NotNull, address) FreeListEntry(size);
    [all...]

Completed in 199 milliseconds