Home | History | Annotate | Download | only in uvm

Lines Matching defs:am_slots

160 	int *am_slots;		/* contig array of active slots */
161 int *am_bckptr; /* back pointer array to am_slots */
170 * note that am_slots, am_bckptr, and am_anon are arrays. this allows
184 * am_bckptr: D/C, 1, D/C, 0 (points to am_slots entry)
186 * am_slots: 3, 1, D/C, D/C (says slots 3 and 1 are in use)
189 * to find the entry in am_slots for an anon, look at am_bckptr[slot],
190 * thus the entry for slot 3 in am_slots[] is at am_slots[am_bckptr[3]].
192 * true: am_slots[am_bckptr[X]] == X
194 * note that am_slots is always contig-packed.