MCPcopy Create free account
hub / github.com/RedisGraph/RedisGraph / rm_calloc

Function rm_calloc

src/util/rmalloc.h:24–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22 return RedisModule_Alloc(n);
23}
24static inline void *rm_calloc(size_t nelem, size_t elemsz) {
25 return RedisModule_Calloc(nelem, elemsz);
26}
27static inline void *rm_realloc(void *p, size_t n) {
28 return RedisModule_Realloc(p, n);
29}

Callers 15

_QueryCtx_GetCreateCtxFunction · 0.85
Globals_InitFunction · 0.85
SIValue_ConcatStringFunction · 0.85
QueriesLog_NewFunction · 0.85
GraphEncodeContext_NewFunction · 0.85
ErrorCtx_GetFunction · 0.85
Indexer_InitFunction · 0.85
_AR_EXP_CloneOperandFunction · 0.85
_AR_EXP_NewOpNodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected