Searched defs:Free (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
H A Dallocators.h28 Note that Malloc() and Realloc() are non-static but Free() is static.
30 So if an allocator need to support Free(), it needs to put its pointer in
35 static const bool kNeedFree; //!< Whether this allocator needs to call Free().
48 // Free a memory block.
50 static void Free(void *ptr);
79 static void Free(void *ptr) { std::free(ptr); } function in class:CrtAllocator
104 static const bool kNeedFree = false; //!< Tell users that no need to call Free() with this allocator. (concept Allocator)
148 baseAllocator_->Free(chunkHead_);
220 static void Free(void *ptr) { (void)ptr; } // Do nothing function in class:MemoryPoolAllocator

Completed in 120 milliseconds