Searched refs:tre_mem_alloc_impl (Results 1 – 2 of 2) sorted by relevance
/dflybsd-src/contrib/tre/lib/ |
H A D | tre-mem.h | 32 void *tre_mem_alloc_impl(tre_mem_t mem, int provided, void *provided_block, 40 #define tre_mem_alloc(mem, size) tre_mem_alloc_impl(mem, 0, NULL, 0, size) 45 #define tre_mem_calloc(mem, size) tre_mem_alloc_impl(mem, 0, NULL, 1, size) 56 ? tre_mem_alloc_impl((mem), 1, NULL, 0, (size)) \ 57 : tre_mem_alloc_impl((mem), 1, alloca(TRE_MEM_BLOCK_SIZE), 0, (size)))
|
H A D | tre-mem.c | 65 tre_mem_alloc_impl(tre_mem_t mem, int provided, void *provided_block, in tre_mem_alloc_impl() function
|