mem_pool          211 fast-import.c  	struct mem_pool *next_pool;
mem_pool          306 fast-import.c  static size_t mem_pool_alloc = 2*1024*1024 - sizeof(struct mem_pool);
mem_pool          308 fast-import.c  static struct mem_pool *mem_pool;
mem_pool          608 fast-import.c  	struct mem_pool *p;
mem_pool          615 fast-import.c  	for (p = mem_pool; p; p = p->next_pool)
mem_pool          624 fast-import.c  		total_allocd += sizeof(struct mem_pool) + mem_pool_alloc;
mem_pool          625 fast-import.c  		p = xmalloc(sizeof(struct mem_pool) + mem_pool_alloc);
mem_pool          626 fast-import.c  		p->next_pool = mem_pool;
mem_pool          629 fast-import.c  		mem_pool = p;