Home | History | Annotate | Download | only in heap

Lines Matching refs:FreeBlock

1113   class FreeBlock {
1115 FreeBlock() : start(0), size(0) {}
1116 FreeBlock(Address start_arg, size_t size_arg)
1121 FreeBlock(void* start_arg, size_t size_arg)
1137 static bool CompareFreeBlockAddress(const FreeBlock& left,
1138 const FreeBlock& right);
1139 bool ReserveBlock(const size_t requested_size, FreeBlock* block);
1140 void ReleaseBlock(const FreeBlock* block);
1154 std::vector<FreeBlock> free_list_;
1158 std::vector<FreeBlock> allocation_list_;