Home
last modified time | relevance | path

Searched refs:LZ4_calloc (Results 1 – 3 of 3) sorted by relevance

/third_party/lz4/lib/
DREADME.md73 by user-defined functions, which must be called `LZ4_malloc()`, `LZ4_calloc()` and `LZ4_free()`.
Dlz4.c195 void* LZ4_calloc(size_t n, size_t s);
198 # define ALLOC_AND_ZERO(s) LZ4_calloc(1,s)
/third_party/lz4/tests/
Dfullbench.c162 void* LZ4_calloc(size_t n, size_t s) { return calloc(n,s); } in LZ4_calloc() function