Lines Matching refs:pool
7 static const char *pool_unsafe_data_stack_get_name(pool_t pool);
8 static void pool_unsafe_data_stack_ref(pool_t pool);
9 static void pool_unsafe_data_stack_unref(pool_t *pool);
10 static void *pool_unsafe_data_stack_malloc(pool_t pool, size_t size);
11 static void pool_unsafe_data_stack_free(pool_t pool, void *mem);
12 static void *pool_unsafe_data_stack_realloc(pool_t pool, void *mem,
14 static void pool_unsafe_data_stack_clear(pool_t pool);
15 static size_t pool_unsafe_data_stack_get_max_easy_alloc_size(pool_t pool);
32 static struct pool static_unsafe_data_stack_pool = {
41 static const char *pool_unsafe_data_stack_get_name(pool_t pool ATTR_UNUSED)
46 static void pool_unsafe_data_stack_ref(pool_t pool ATTR_UNUSED)
50 static void pool_unsafe_data_stack_unref(pool_t *pool ATTR_UNUSED)
54 static void *pool_unsafe_data_stack_malloc(pool_t pool ATTR_UNUSED,
63 static void pool_unsafe_data_stack_free(pool_t pool ATTR_UNUSED,
68 static void *pool_unsafe_data_stack_realloc(pool_t pool ATTR_UNUSED,
79 return pool_unsafe_data_stack_malloc(pool, new_size);
94 static void pool_unsafe_data_stack_clear(pool_t pool ATTR_UNUSED)
99 pool_unsafe_data_stack_get_max_easy_alloc_size(pool_t pool ATTR_UNUSED)