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

  /external/v8/src/
spaces.h 757 // of a space is the number of allocated bytes, the 'waste' in the space is
761 // 'available' is the number of unallocated bytes that are not waste. The
762 // capacity is the sum of size, waste, and available.
792 int Waste() { return waste_; }
    [all...]
spaces.cc     [all...]
heap.cc 253 PrintF("Old pointers, used: %8d, available: %8d, waste: %8d\n",
256 old_pointer_space_->Waste());
257 PrintF("Old data space, used: %8d, available: %8d, waste: %8d\n",
260 old_data_space_->Waste());
261 PrintF("Code space, used: %8d, available: %8d, waste: %8d\n",
264 code_space_->Waste());
265 PrintF("Map space, used: %8d, available: %8d, waste: %8d\n",
268 map_space_->Waste());
269 PrintF("Cell space, used: %8d, available: %8d, waste: %8d\n",
272 cell_space_->Waste());
    [all...]
mark-compact.cc 169 // reclaiming the waste and free list blocks).
177 old_gen_recoverable += space->Waste() + space->AvailableFree();
510 // so that we don't waste effort pointlessly scanning for objects.
    [all...]

Completed in 66 milliseconds