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

/external/chromium_org/v8/src/
H A Dspaces.h1405 class FreeListNode: public HeapObject { class in namespace:v8::internal
1410 static FreeListNode* FromAddress(Address address) {
1411 return reinterpret_cast<FreeListNode*>(HeapObject::FromAddress(address));
1423 inline FreeListNode* next();
1424 inline FreeListNode** next_address();
1425 inline void set_next(FreeListNode* next);
1429 static inline FreeListNode* cast(MaybeObject* maybe) {
1431 return reinterpret_cast<FreeListNode*>(maybe);
1437 DISALLOW_IMPLICIT_CONSTRUCTORS(FreeListNode);
1459 void Free(FreeListNode* nod
[all...]
/external/v8/src/
H A Dspaces.h1295 class FreeListNode: public HeapObject { class in namespace:v8::internal
1300 static FreeListNode* FromAddress(Address address) {
1301 return reinterpret_cast<FreeListNode*>(HeapObject::FromAddress(address));
1313 inline FreeListNode* next();
1314 inline FreeListNode** next_address();
1315 inline void set_next(FreeListNode* next);
1322 DISALLOW_IMPLICIT_CONSTRUCTORS(FreeListNode);
1375 static intptr_t SumFreeList(FreeListNode* node);
1376 static int FreeListLength(FreeListNode* cur);
1401 FreeListNode* PickNodeFromLis
[all...]

Completed in 78 milliseconds