Home
last modified time | relevance | path

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

/external/jsoncpp/src/lib_json/
Djson_batchallocator.h44 for (BatchInfo* batch = batches_; batch;) { in ~BatchAllocator()
45 BatchInfo* nextBatch = batch->next_; in ~BatchAllocator()
88 struct BatchInfo { struct
89 BatchInfo* next_; argument
99 static BatchInfo* allocateBatch(unsigned int objectsPerPage) { in allocateBatch() argument
101 sizeof(BatchInfo) - sizeof(AllocatedType) * objectPerAllocation + in allocateBatch()
103 BatchInfo* batch = static_cast<BatchInfo*>(malloc(mallocSize)); in allocateBatch()
110 BatchInfo* batches_;
111 BatchInfo* currentBatch_;