Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/F-Stack/f-stack
/ ZSTD_customFree
Function
ZSTD_customFree
freebsd/contrib/zstd/lib/common/zstd_common.c:75–83 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
73
}
74
75
void ZSTD_customFree(void* ptr, ZSTD_customMem customMem)
76
{
77
if (ptr!=NULL) {
78
if (customMem.customFree)
79
customMem.customFree(customMem.opaque, ptr);
80
else
81
ZSTD_free(ptr);
82
}
83
}
Callers
15
ZSTD_freeDCtx
Function · 0.85
ZSTD_decompressStream
Function · 0.85
ZSTD_freeDDict
Function · 0.85
POOL_free
Function · 0.85
POOL_resize_internal
Function · 0.85
ZSTDMT_createBufferPool
Function · 0.85
ZSTDMT_freeBufferPool
Function · 0.85
ZSTDMT_getBuffer
Function · 0.85
ZSTDMT_releaseBuffer
Function · 0.85
ZSTDMT_freeCCtxPool
Function · 0.85
ZSTDMT_createCCtxPool
Function · 0.85
ZSTDMT_serialState_reset
Function · 0.85
Calls
1
ZSTD_free
Function · 0.85
Tested by
no test coverage detected