MCPcopy Create free account
hub / github.com/acl-dev/acl / tls_mem_calloc

Function tls_mem_calloc

lib_acl/src/stdlib/memory/acl_mem_slice.c:352–358  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

350}
351
352static void *tls_mem_calloc(const char *filename, int line, size_t nmemb, size_t size)
353{
354 void *ptr = tls_mem_alloc(filename, line, nmemb * size);
355
356 memset(ptr, 0, nmemb * size);
357 return ptr;
358}
359
360static void *tls_mem_realloc(const char *filename, int line, void *ptr, size_t size)
361{

Callers

nothing calls this directly

Calls 1

tls_mem_allocFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…