MCPcopy Create free account
hub / github.com/beefytech/Beef / tc_newarray_nothrow

Function tc_newarray_nothrow

BeefRT/gperftools/src/debugallocation.cc:1252–1257  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1250}
1251
1252extern "C" PERFTOOLS_DLL_DECL void* tc_newarray_nothrow(size_t size, const std::nothrow_t&)
1253 __THROW {
1254 void* ptr = debug_cpp_alloc(size, MallocBlock::kArrayNewType, true);
1255 MallocHook::InvokeNewHook(ptr, size);
1256 return ptr;
1257}
1258
1259extern "C" PERFTOOLS_DLL_DECL void tc_deletearray(void* p) __THROW {
1260 MallocHook::InvokeDeleteHook(p);

Callers

nothing calls this directly

Calls 1

debug_cpp_allocFunction · 0.70

Tested by

no test coverage detected