Lines Matching refs:e
30 static inline void fixup(unsigned long s, unsigned long e, int d, in fixup() argument
36 if (*pp >= s && *pp < e) in fixup()
40 if (*pp >= s && *pp < e) in fixup()
158 unsigned long s, e, bs, be; in attach_free_block() local
164 e = s + size; in attach_free_block()
184 if (e == bs) in attach_free_block()
196 if (after && e != after->start) in attach_free_block()
332 unsigned long s, e, m; in rh_attach_region() local
337 e = s + size; in rh_attach_region()
344 e = e & ~m; in rh_attach_region()
346 if (IS_ERR_VALUE(e) || (e < s)) in rh_attach_region()
351 size = e - s; in rh_attach_region()
374 unsigned long s, e, m, bs, be; in rh_detach_region() local
382 e = s + size; in rh_detach_region()
389 e = e & ~m; in rh_detach_region()
400 if (s >= bs && e <= be) in rh_detach_region()
409 if (bs == s && be == e) { in rh_detach_region()
417 if (bs == s || be == e) { in rh_detach_region()
428 newblk->start = e; in rh_detach_region()
429 newblk->size = be - e; in rh_detach_region()
531 unsigned long s, e, m, bs = 0, be = 0; in rh_alloc_fixed() local
539 e = s + size; in rh_alloc_fixed()
546 e = e & ~m; in rh_alloc_fixed()
557 if (s >= bs && e <= be) in rh_alloc_fixed()
566 if (bs == s && be == e) { in rh_alloc_fixed()
579 if (bs == s || be == e) { in rh_alloc_fixed()
590 newblk2->start = e; in rh_alloc_fixed()
591 newblk2->size = be - e; in rh_alloc_fixed()
598 newblk1->size = e - s; in rh_alloc_fixed()