Searched defs:MallocWrapper (Results 1 – 4 of 4) sorted by relevance
19 struct MallocWrapper { struct20 __attribute__((always_inline)) static void* Allocate(size_t N) { return std::malloc(N); } in Allocate()21 __attribute__((always_inline)) static void Deallocate(void* P, size_t) { std::free(P); } in Deallocate()
9 void* MallocWrapper(size_t size) { in MallocWrapper() function
1064 static void* MallocWrapper(size_t size, void* user_data) { IM_UNUSED(user_data); return malloc… in MallocWrapper() function1067 static void* MallocWrapper(size_t size, void* user_data) { IM_UNUSED(user_data); IM_UNUSED(siz… in MallocWrapper() function