MCPcopy Create free account
hub / github.com/Snapchat/KeyDB / je_sdallocx_noflags

Function je_sdallocx_noflags

deps/jemalloc/src/jemalloc.c:3605–3615  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3603}
3604
3605void JEMALLOC_NOTHROW
3606je_sdallocx_noflags(void *ptr, size_t size) {
3607 LOG("core.sdallocx.entry", "ptr: %p, size: %zu, flags: 0", ptr,
3608 size);
3609
3610 if (!free_fastpath(ptr, size, true)) {
3611 sdallocx_default(ptr, size, 0);
3612 }
3613
3614 LOG("core.sdallocx.exit", "");
3615}
3616
3617JEMALLOC_EXPORT size_t JEMALLOC_NOTHROW
3618JEMALLOC_ATTR(pure)

Callers 2

operator deleteFunction · 0.85
operator delete[]Function · 0.85

Calls 2

free_fastpathFunction · 0.85
sdallocx_defaultFunction · 0.85

Tested by

no test coverage detected