Lines Matching refs:memlist
47 print_memlist(struct memlist *av)
49 struct memlist *p = av;
92 "Boot getlink(): no memlist space (need %d)\n", n);
101 * This is the number of memlist structures allocated in one shot. kept
106 static struct memlist *free_memlist_ptr = NULL;
110 * get_memlist_struct returns a memlist structure without initializing
114 struct memlist *
117 struct memlist *ptr;
122 sizeof (struct memlist));
123 bzero(free_memlist_ptr, (ALLOC_SZ * sizeof (struct memlist)));
134 * Return memlist structure to free list.
137 add_to_freelist(struct memlist *ptr)
139 struct memlist *tmp;