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

Function je_sdallocx

BeefRT/JEMalloc/src/jemalloc.c:3933–3943  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3931}
3932
3933JEMALLOC_EXPORT void JEMALLOC_NOTHROW
3934je_sdallocx(void *ptr, size_t size, int flags) {
3935 LOG("core.sdallocx.entry", "ptr: %p, size: %zu, flags: %d", ptr,
3936 size, flags);
3937
3938 if (flags != 0 || !free_fastpath(ptr, size, true)) {
3939 sdallocx_default(ptr, size, flags);
3940 }
3941
3942 LOG("core.sdallocx.exit", "");
3943}
3944
3945void JEMALLOC_NOTHROW
3946je_sdallocx_noflags(void *ptr, size_t size) {

Callers 1

alignedSizedDeleteImplFunction · 0.85

Calls 3

free_fastpathFunction · 0.85
sdallocx_defaultFunction · 0.85
LOGFunction · 0.50

Tested by

no test coverage detected