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

Function _aligned_malloc

contrib/libs/mimalloc/src/alloc-override.c:279–279  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

277void* pvalloc(size_t size) { return mi_pvalloc(size); }
278void* memalign(size_t alignment, size_t size) { return mi_memalign(alignment, size); }
279void* _aligned_malloc(size_t alignment, size_t size) { return mi_aligned_alloc(alignment, size); }
280void* reallocarray(void* p, size_t count, size_t size) { return mi_reallocarray(p, count, size); }
281// some systems define reallocarr so mark it as a weak symbol (#751)
282mi_decl_weak int reallocarr(void* p, size_t count, size_t size) { return mi_reallocarr(p, count, size); }

Callers 7

aligned_mallocFunction · 0.85
opj_aligned_alloc_nFunction · 0.85
__libcpp_aligned_allocFunction · 0.85
__libcpp_aligned_allocFunction · 0.85
emutls_memalign_allocFunction · 0.85
emutls_initFunction · 0.85

Calls 1

mi_aligned_allocFunction · 0.85

Tested by

no test coverage detected