Home
last modified time | relevance | path

Searched refs:IN6_ARE_SCOPE_CMP (Results 1 – 3 of 3) sorted by relevance

/xnu-8796.121.2/bsd/netinet6/
H A Din6_src.c433 if (IN6_ARE_SCOPE_CMP(best_scope, new_scope) < 0) { in in6_selectsrc_core()
434 if (IN6_ARE_SCOPE_CMP(best_scope, dst_scope) < 0) { in in6_selectsrc_core()
438 } else if (IN6_ARE_SCOPE_CMP(new_scope, best_scope) < 0) { in in6_selectsrc_core()
439 if (IN6_ARE_SCOPE_CMP(new_scope, dst_scope) < 0) { in in6_selectsrc_core()
H A Din6.c3516 if (IN6_ARE_SCOPE_CMP(best_scope, dst_scope) < 0 && in in6_ifawithscope()
3517 IN6_ARE_SCOPE_CMP(src_scope, dst_scope) >= 0) { in in6_ifawithscope()
3520 if (IN6_ARE_SCOPE_CMP(src_scope, dst_scope) < 0 && in in6_ifawithscope()
3521 IN6_ARE_SCOPE_CMP(best_scope, dst_scope) >= 0) { in in6_ifawithscope()
3646 dscopecmp = IN6_ARE_SCOPE_CMP(src_scope, dst_scope); in in6_ifawithscope()
3647 bscopecmp = IN6_ARE_SCOPE_CMP(src_scope, best_scope); in in6_ifawithscope()
H A Din6_var.h824 #define IN6_ARE_SCOPE_CMP(a, b) ((a) - (b)) macro