Home | History | Annotate | Download | only in ofwboot

Lines Matching defs:ml

87  * Each block actually has ALIGN(struct ml) + ALIGN(size) bytes allocated
90 * 0 ... (sizeof(struct ml) - 1)
93 * sizeof(struct ml) ... (ALIGN(sizeof(struct ml)) - 1)
97 * ALIGN(sizeof(struct ml)) ... (ALIGN(sizeof(struct ml)) +
103 * However, note that ALIGN(sizeof(struct ml)) + ALIGN(data size) must
111 struct ml {
113 LIST_ENTRY(ml) list;
116 LIST_HEAD(, ml) freelist = LIST_HEAD_INITIALIZER(freelist);
117 LIST_HEAD(, ml) allocatedlist = LIST_HEAD_INITIALIZER(allocatedlist);
119 #define OVERHEAD ALIGN(sizeof (struct ml)) /* shorthand */
124 struct ml *f, *bestf;
180 f = (struct ml *)help;
210 register struct ml *a = (struct ml *)((char*)ptr - OVERHEAD);
230 struct ml *m;