HomeSort by relevance Sort by last modified time
    Searched refs:FreeBlock (Results 1 - 2 of 2) sorted by null

  /external/v8/src/
spaces.h 357 class FreeBlock {
359 FreeBlock(Address start_arg, size_t size_arg)
361 FreeBlock(void* start_arg, size_t size_arg)
371 static List<FreeBlock> free_list_;
374 static List<FreeBlock> allocation_list_;
383 static int CompareFreeBlockAddress(const FreeBlock* left,
384 const FreeBlock* right);
    [all...]
spaces.cc 151 List<CodeRange::FreeBlock> CodeRange::free_list_(0);
152 List<CodeRange::FreeBlock> CodeRange::allocation_list_(0);
171 allocation_list_.Add(FreeBlock(code_range_->address(), code_range_->size()));
177 int CodeRange::CompareFreeBlockAddress(const FreeBlock* left,
178 const FreeBlock* right) {
200 FreeBlock merged = free_list_[i];
237 FreeBlock current = allocation_list_[current_allocation_block_index_];
257 free_list_.Add(FreeBlock(address, length));
    [all...]

Completed in 22 milliseconds