Lines Matching defs:stop
15 * Extends the address range given by *start and *stop to include the address
19 static void extend_address_range(u64 *start, u64 *stop, u64 estart, int len)
31 if ((*start == 0) && (*stop == 0)) {
33 *stop = estop;
34 } else if (*start <= *stop) {
38 if (estop > *stop)
39 *stop = estop;
41 /* "overflowing" interval, whereby *stop > *start */
42 if (estart <= *stop) {
43 if (estop > *stop)
44 *stop = estop;
50 else if ((estop - *stop) < (*start - estart))
51 *stop = estop;