Lines Matching defs:estart
16 * range starting with estart and the length len. Takes care of overflowing
19 static void extend_address_range(u64 *start, u64 *stop, u64 estart, int len)
28 estop = estart + len;
32 *start = estart;
36 if (estart < *start)
37 *start = estart;
42 if (estart <= *stop) {
46 if (estart < *start)
47 *start = estart;
50 else if ((estop - *stop) < (*start - estart))
53 *start = estart;