HomeSort by: relevance | last modified time | path
    Searched defs:new_scope (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/dev/microcode/aic7xxx/
aicasm.c 767 scope_t *new_scope; local in function:scope_alloc
769 new_scope = (scope_t *)malloc(sizeof(scope_t));
770 if (new_scope == NULL)
772 memset(new_scope, 0, sizeof(*new_scope));
773 TAILQ_INIT(&new_scope->inner_scope);
777 new_scope, scope_links);
780 SLIST_INSERT_HEAD(&scope_stack, new_scope, scope_stack_links);
781 return new_scope;
  /src/sys/netinet6/
in6_src.c 190 int new_scope = -1, new_matchlen = -1; local in function:in6_select_best_ia
245 new_scope = in6_addrscope(&ia->ia_addr.sin6_addr);
246 if (IN6_ARE_SCOPE_CMP(best_scope, new_scope) < 0) {
250 } else if (IN6_ARE_SCOPE_CMP(new_scope, best_scope) < 0) {
251 if (IN6_ARE_SCOPE_CMP(new_scope, dst_scope) < 0)
443 best_scope = (new_scope >= 0 ? new_scope :

Completed in 106 milliseconds