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

Function SystemAlloc

library/cpp/lfalloc/lf_allocX64.h:538–541  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

536}
537
538static void* SystemAlloc(size_t _nSize) {
539 //HeapAlloc(GetProcessHeap(), HEAP_GENERATE_EXCEPTIONS, _nSize);
540 return LargeBlockAlloc(_nSize, CT_SYSTEM_ALLOC);
541}
542static void SystemFree(void* p) {
543 //HeapFree(GetProcessHeap(), 0, p);
544 LargeBlockFree(p, CT_SYSTEM_FREE);

Callers 3

DefragmentMemFunction · 0.85
AllocThreadInfoFunction · 0.85

Calls 1

LargeBlockAllocFunction · 0.85

Tested by

no test coverage detected