Home
last modified time | relevance | path

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

/external/v8/src/snapshot/
Ddefault-serializer-allocator.cc19 pending_chunk_[i] = 0; in DefaultSerializerAllocator()
46 uint32_t old_chunk_size = pending_chunk_[space]; in Allocate()
52 completed_chunks_[space].push_back(pending_chunk_[space]); in Allocate()
53 pending_chunk_[space] = 0; in Allocate()
56 uint32_t offset = pending_chunk_[space]; in Allocate()
57 pending_chunk_[space] = new_chunk_size; in Allocate()
98 return reference.chunk_offset() < pending_chunk_[space]; in BackReferenceIsAlreadyAllocated()
116 if (pending_chunk_[i] > 0 || completed_chunks_[i].size() == 0) { in EncodeReservations()
117 out.emplace_back(pending_chunk_[i]); in EncodeReservations()
144 size_t s = pending_chunk_[space]; in OutputStatistics()
Ddefault-serializer-allocator.h51 uint32_t pending_chunk_[kNumberOfPreallocatedSpaces]; variable