Searched refs:space_index (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/snapshot/
H A Ddeserializer.cc437 Address Deserializer::Allocate(int space_index, int size) { argument
438 if (space_index == LO_SPACE) {
446 } else if (space_index == MAP_SPACE) {
450 DCHECK(space_index < kNumberOfPreallocatedSpaces);
451 Address address = high_water_[space_index];
453 high_water_[space_index] += size;
456 const Heap::Reservation& reservation = reservations_[space_index];
457 int chunk_index = current_chunk_[space_index];
458 CHECK_LE(high_water_[space_index], reservation[chunk_index].end);
460 if (space_index
[all...]
H A Ddeserializer.h106 Address Allocate(int space_index, int size);

Completed in 115 milliseconds