Lines Matching refs:chunk_index
53 int chunk_index = current_chunk_[space]; in AllocateRaw() local
54 DCHECK_LE(high_water_[space], reservation[chunk_index].end); in AllocateRaw()
88 uint32_t chunk_index = current_chunk_[space]; in MoveToNextChunk() local
91 CHECK_EQ(reservation[chunk_index].end, high_water_[space]); in MoveToNextChunk()
93 chunk_index = ++current_chunk_[space]; in MoveToNextChunk()
94 CHECK_LT(chunk_index, reservation.size()); in MoveToNextChunk()
95 high_water_[space] = reservation[chunk_index].start; in MoveToNextChunk()
109 uint32_t chunk_index, in GetObject() argument
112 DCHECK_LE(chunk_index, current_chunk_[space]); in GetObject()
113 Address address = reservations_[space][chunk_index].start + chunk_offset; in GetObject()
222 const uint32_t chunk_index = current_chunk_[space]; in ReservationsAreFullyUsed() local
223 if (reservations_[space].size() != chunk_index + 1) { in ReservationsAreFullyUsed()
226 if (reservations_[space][chunk_index].end != high_water_[space]) { in ReservationsAreFullyUsed()