Home | History | Annotate | Download | only in src

Lines Matching refs:SlotsBuffer

259   SlotsBuffer* AllocateBuffer(SlotsBuffer* next_buffer);
260 void DeallocateBuffer(SlotsBuffer* buffer);
262 void DeallocateChain(SlotsBuffer** buffer_address);
266 // SlotsBuffer records a sequence of slots that has to be updated
278 class SlotsBuffer {
282 explicit SlotsBuffer(SlotsBuffer* next_buffer)
289 ~SlotsBuffer() {
311 SlotsBuffer* next() { return next_; }
313 static int SizeOfChain(SlotsBuffer* buffer) {
328 SlotsBuffer* buffer,
345 static bool ChainLengthThresholdReached(SlotsBuffer* buffer) {
350 SlotsBuffer** buffer_address,
353 SlotsBuffer* buffer = *buffer_address;
369 SlotsBuffer** buffer_address,
381 SlotsBuffer* next_;
595 SlotsBuffer* migration_slots_buffer_;