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