Lines Matching refs:pool
22 pool_t pool;
30 pool = pool_alloconly_create(MEMPOOL_GROWING"test", i);
37 mem[0] = p_malloc(pool, j);
41 mem[k] = p_malloc(pool, k);
50 pool_unref(&pool);
58 static pool_t pool;
60 if (pool == NULL && stage != 0)
66 pool = pool_alloconly_create(MEMPOOL_GROWING"fatal", 1);
68 (void)p_malloc(pool, 0);
73 (void)p_malloc(pool, SSIZE_T_MAX + 1ULL);
79 (void)p_malloc(pool, SSIZE_T_MAX - 1024);
91 pool_unref(&pool);