Lines Matching full:store_memory
606 struct store_memory *list; /* List of allocated memory */
1288 /* A store_memory is simply the header for an allocated block of memory. The
1292 typedef struct store_memory
1295 struct store_memory *next; /* Singly linked list */
1298 } store_memory;
1321 store_memory_free(png_const_structp pp, store_pool *pool, store_memory *memory)
1367 store_memory *next = pool->list;
1411 store_memory *new = voidcast(store_memory*, malloc(cb + (sizeof *new) +
1460 store_memory *this = voidcast(store_memory*, memory), **test;