Lines Matching full:batch
32 void *batch[kSize]; member
36 batch[0] = ptr; in init()
37 this->size = size + sizeof(QuarantineBatch); // Account for the batch size. in init()
40 // The total size of quarantined nodes recorded in this batch.
47 batch[count++] = ptr; in push_back()
60 batch[count + i] = from->batch[i]; in merge()
161 // require some tuning). It saves us merge attempt when the batch list in Recycle()
182 CHECK(kPrefetch <= ARRAY_SIZE(b->batch)); in DoRecycle()
184 PREFETCH(b->batch[i]); in DoRecycle()
187 PREFETCH(b->batch[i + kPrefetch]); in DoRecycle()
188 cb.Recycle((Node*)b->batch[i]); in DoRecycle()
256 // Move all the chunks into the current batch. in MergeBatches()
260 // Remove the next batch from the list and account for its size. in MergeBatches()