MCPcopy Create free account
hub / github.com/catboost/catboost / malloc

Function malloc

library/cpp/balloc/balloc.cpp:90–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88#endif
89
90extern "C" void* malloc(size_t size) {
91#if defined(Y_COVER_PTR)
92 return CoverPtr(NBalloc::Malloc(size + 32), size);
93#else
94 return NBalloc::Malloc(size);
95#endif
96}
97
98extern "C" void free(void* data) {
99#if defined(Y_COVER_PTR)

Callers 15

operator newFunction · 0.70
posix_memalignFunction · 0.70
operator new[]Function · 0.70
callocFunction · 0.70
reallocFunction · 0.70
GetAlignedMemoryFunction · 0.50
EndMethod · 0.50
End_b64Method · 0.50
AllocateOrCrashFunction · 0.50
DoAllocateMethod · 0.50
AllocateMethod · 0.50

Calls 1

MallocFunction · 0.70

Tested by

no test coverage detected