Lines Matching refs:std
68 void* p = std::malloc(sum); in calloc()
72 std::memset(p, 0, sum); in calloc()
85 std::free(p); in realloc()
99 void* newMem = std::malloc(size); in realloc()
104 std::memcpy(newMem, p, std::min(size, oldSize)); in realloc()
105 std::free(p); in realloc()
113 return std::malloc(size); in realloc()
120 NN_WEAK_SYMBOL void* operator new (size_t size, const ::std::nothrow_t&) throw() in operator new()
122 return std::malloc(size); in operator new()
125 NN_WEAK_SYMBOL void* operator new[] (size_t size, const ::std::nothrow_t&) throw() in operator new[]()
127 return operator new(size, ::std::nothrow_t()); in operator new[]()
132 std::free(p); in operator delete()