Home | History | Annotate | Download | only in heap

Lines Matching defs:FreeBlock

987   class FreeBlock {
989 FreeBlock() : start(0), size(0) {}
990 FreeBlock(Address start_arg, size_t size_arg)
995 FreeBlock(void* start_arg, size_t size_arg)
1015 static int CompareFreeBlockAddress(const FreeBlock* left,
1016 const FreeBlock* right);
1017 bool ReserveBlock(const size_t requested_size, FreeBlock* block);
1018 void ReleaseBlock(const FreeBlock* block);
1032 List<FreeBlock> free_list_;
1036 List<FreeBlock> allocation_list_;