Home | History | Annotate | Download | only in heap

Lines Matching refs:FreeSpace

315                            kPointerSize +  // FreeSpace* top_
346 bool Free(FreeSpace* node, int size_in_bytes, FreeMode mode);
350 FreeSpace* PickNodeFromList(int* node_size);
355 FreeSpace* TryPickNodeFromList(int minimum_size, int* node_size);
359 FreeSpace* SearchForNodeInList(int minimum_size, int* node_size);
378 FreeSpace* top() { return top_; }
379 void set_top(FreeSpace* top) { top_ = top; }
392 // |top_|: Points to the top FreeSpace* in the free list category.
393 FreeSpace* top_;
1959 FreeSpace* FindNodeFor(int size_in_bytes, int* node_size);
1963 FreeSpace* FindNodeIn(FreeListCategoryType type, int* node_size);
1967 FreeSpace* TryFindNodeIn(FreeListCategoryType type, int* node_size,
1971 FreeSpace* SearchForNodeInList(FreeListCategoryType type, int* node_size,