Lines Matching refs:BatchInfo
44 for (BatchInfo* batch = batches_; batch;) {
45 BatchInfo* nextBatch = batch->next_;
88 struct BatchInfo {
89 BatchInfo* next_;
99 static BatchInfo* allocateBatch(unsigned int objectsPerPage) {
101 sizeof(BatchInfo) - sizeof(AllocatedType) * objectPerAllocation +
103 BatchInfo* batch = static_cast<BatchInfo*>(malloc(mallocSize));
110 BatchInfo* batches_;
111 BatchInfo* currentBatch_;