Searched +defs:malloc +defs:new +defs:new (Results 1 – 2 of 2) sorted by relevance
52 #define malloc(n) fastMalloc(n) macro70 static inline void* __cdecl operator new(size_t s) { return fastMalloc(s); } in new() function74 static inline void* operator new(size_t s, const std::nothrow_t&) throw() { return fastMalloc(s); } in new() function
82 #define malloc xmalloc macro201 register pointer new = malloc (sizeof (header) + size); local