Lines Matching defs:aligned
12 * support for returning aligned objects. The granularity of this
227 * @align_offset: Offset in the allocated block that will be aligned.
240 slob_t *prev, *cur, *aligned = NULL;
248 * 'aligned' will hold the address of the slob block so that the
249 * address 'aligned'+'align_offset' is aligned according to the
252 * aligned when needed.
255 aligned = (slob_t *)
258 delta = aligned - cur;
265 set_slob(aligned, avail - delta, next);
266 set_slob(cur, delta, aligned);
268 cur = aligned;