Home
last modified time | relevance | path

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

/external/jsoncpp/src/lib_json/
Djson_batchallocator.h32 : freeHead_(0), objectsPerPage_(objectsPerPage) {
55 if (freeHead_) // returns node from free list. in allocate()
57 AllocatedType* object = freeHead_; in allocate()
58 freeHead_ = *(AllocatedType**)object; in allocate()
83 *(AllocatedType**)object = freeHead_; in release()
84 freeHead_ = object; in release()
113 AllocatedType* freeHead_; variable