Searched refs:LZ4_calloc (Results 1 – 3 of 3) sorted by relevance
73 by user-defined functions, which must be called `LZ4_malloc()`, `LZ4_calloc()` and `LZ4_free()`.
195 void* LZ4_calloc(size_t n, size_t s);198 # define ALLOC_AND_ZERO(s) LZ4_calloc(1,s)
162 void* LZ4_calloc(size_t n, size_t s) { return calloc(n,s); } in LZ4_calloc() function