Searched refs:b_s (Results 1 – 2 of 2) sorted by relevance
36 l4_addr_t b_s = (l4_addr_t)c; in __check_overlap() local37 l4_addr_t b_e = b_s + c->size; in __check_overlap()39 if ( (x_s >= b_s && x_s < b_e) in __check_overlap()40 || (x_e > b_s && x_e <= b_e) in __check_overlap()41 || (b_s >= x_s && b_s < x_e) in __check_overlap()46 x_s, x_e, b_s, b_e ); in __check_overlap()
163 unsigned long b_s = (unsigned long)c;164 unsigned long b_e = b_s + c->size;166 if ((x_s >= b_s && x_s < b_e)167 || (x_e > b_s && x_e <= b_e)168 || (b_s >= x_s && b_s < x_e)174 << (void*)b_s << '-' << (void*)b_e << ")\n";
Completed in 3 milliseconds