Lines Matching refs:r
521 u32 r; in tipc_node_select_router() local
535 r = start; in tipc_node_select_router()
539 if (((n_ptr->routers[r / 32]) >> (r % 32)) & 1) in tipc_node_select_router()
541 } while (++r <= ulim); in tipc_node_select_router()
542 if (r > ulim) { in tipc_node_select_router()
543 r = 1; in tipc_node_select_router()
545 if (((n_ptr->routers[r / 32]) >> (r % 32)) & 1) in tipc_node_select_router()
547 } while (++r < start); in tipc_node_select_router()
548 assert(r != start); in tipc_node_select_router()
550 assert(r && (r <= ulim)); in tipc_node_select_router()
551 return tipc_addr(own_zone(), own_cluster(), r); in tipc_node_select_router()