Home | History | Annotate | Download | only in heap

Lines Matching full:freeblock

1110   class FreeBlock {
1112 FreeBlock() : start(0), size(0) {}
1113 FreeBlock(Address start_arg, size_t size_arg)
1118 FreeBlock(void* start_arg, size_t size_arg)
1135 List<FreeBlock> free_list_;
1139 List<FreeBlock> allocation_list_;
1148 static int CompareFreeBlockAddress(const FreeBlock* left,
1149 const FreeBlock* right);
1150 bool ReserveBlock(const size_t requested_size, FreeBlock* block);
1151 void ReleaseBlock(const FreeBlock* block);