Searched defs:FreeListNode (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/v8/src/heap/
H A Dspaces.h1397 class FreeListNode : public HeapObject { class in namespace:v8::internal
1402 static FreeListNode* FromAddress(Address address) {
1403 return reinterpret_cast<FreeListNode*>(HeapObject::FromAddress(address));
1415 inline FreeListNode* next();
1416 inline FreeListNode** next_address();
1417 inline void set_next(FreeListNode* next);
1421 static inline FreeListNode* cast(Object* object) {
1422 return reinterpret_cast<FreeListNode*>(object);
1428 DISALLOW_IMPLICIT_CONSTRUCTORS(FreeListNode);
1442 void Free(FreeListNode* nod
[all...]

Completed in 99 milliseconds