Home | History | Annotate | Download | only in heap

Lines Matching defs:FreeBlock

982   class FreeBlock {
984 FreeBlock() : start(0), size(0) {}
985 FreeBlock(Address start_arg, size_t size_arg)
990 FreeBlock(void* start_arg, size_t size_arg)
1010 static int CompareFreeBlockAddress(const FreeBlock* left,
1011 const FreeBlock* right);
1012 bool ReserveBlock(const size_t requested_size, FreeBlock* block);
1013 void ReleaseBlock(const FreeBlock* block);
1027 List<FreeBlock> free_list_;
1031 List<FreeBlock> allocation_list_;