Home
last modified time | relevance | path

Searched refs:completed_chunks_ (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/snapshot/
Dserializer.cc75 for (uint32_t chunk_size : completed_chunks_[space]) s += chunk_size; in OutputStatistics()
114 for (int j = 0; j < completed_chunks_[i].length(); j++) { in EncodeReservations()
115 out->Add(SerializedData::Reservation(completed_chunks_[i][j])); in EncodeReservations()
118 if (pending_chunk_[i] > 0 || completed_chunks_[i].length() == 0) { in EncodeReservations()
140 if (chunk_index == completed_chunks_[space].length()) { in BackReferenceIsAlreadyAllocated()
143 return chunk_index < completed_chunks_[space].length() && in BackReferenceIsAlreadyAllocated()
144 reference.chunk_offset() < completed_chunks_[space][chunk_index]; in BackReferenceIsAlreadyAllocated()
296 completed_chunks_[space].Add(pending_chunk_[space]); in Allocate()
303 space, completed_chunks_[space].length(), offset); in Allocate()
332 if (!completed_chunks_[i].is_empty()) return false; in HasNotExceededFirstPageOfEachSpace()
Dserializer.h247 List<uint32_t> completed_chunks_[kNumberOfPreallocatedSpaces]; variable