Lines Matching defs:pool
142 struct pool {143 struct pool *next;147 static struct pool *pool_head;151 struct pool *p;153 p = calloc(1, sizeof(struct pool));171 struct pool *pool;176 for (pool = pool_head; pool != NULL; ) {177 struct pool *tmp;179 if (pool->mem)180 free(pool->mem);182 tmp = pool;183 pool = pool->next;