Home
last modified time | relevance | path

Searched refs:kNumberOfPreallocatedSpaces (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/snapshot/
Ddeserializer.h134 uint32_t current_chunk_[kNumberOfPreallocatedSpaces];
135 Address high_water_[kNumberOfPreallocatedSpaces];
Dserializer.h246 uint32_t pending_chunk_[kNumberOfPreallocatedSpaces];
247 List<uint32_t> completed_chunks_[kNumberOfPreallocatedSpaces];
248 uint32_t max_chunk_size_[kNumberOfPreallocatedSpaces];
Ddeserializer.cc32 for (int i = 0; i < kNumberOfPreallocatedSpaces; i++) current_chunk_[i] = 0; in DecodeReservation()
65 for (int i = 0; i < kNumberOfPreallocatedSpaces; i++) { in ReserveSpace()
174 for (int space = 0; space < kNumberOfPreallocatedSpaces; space++) { in ~Deserializer()
367 DCHECK(space < kNumberOfPreallocatedSpaces); in GetBackReferencedObject()
460 DCHECK(space_index < kNumberOfPreallocatedSpaces); in Allocate()
730 DCHECK(space < kNumberOfPreallocatedSpaces); in ReadData()
Dserializer.cc26 for (int i = 0; i < kNumberOfPreallocatedSpaces; i++) { in Serializer()
73 for (int space = 0; space < kNumberOfPreallocatedSpaces; space++) { in OutputStatistics()
113 for (int i = 0; i < kNumberOfPreallocatedSpaces; i++) { in EncodeReservations()
288 DCHECK(space >= 0 && space < kNumberOfPreallocatedSpaces); in Allocate()
331 for (int i = 0; i < kNumberOfPreallocatedSpaces; i++) { in HasNotExceededFirstPageOfEachSpace()
Dserializer-common.h83 static const int kNumberOfPreallocatedSpaces = CODE_SPACE + 1; variable
/external/v8/src/heap/
Dheap.cc1209 DCHECK(space < SerializerDeserializer::kNumberOfPreallocatedSpaces); in ReserveSpace()