Lines Matching refs:pool
160 struct pool { struct
161 struct pool *next; argument
165 static struct pool *pool_head; argument
169 struct pool *p; in my_malloc()
171 p = calloc(1, sizeof(struct pool)); in my_malloc()
189 struct pool *pool; in names_free() local
194 for (pool = pool_head; pool != NULL; ) { in names_free()
195 struct pool *tmp; in names_free()
197 if (pool->mem) in names_free()
198 free(pool->mem); in names_free()
200 tmp = pool; in names_free()
201 pool = pool->next; in names_free()