Searched refs:new_scope (Results 1 – 9 of 9) sorted by relevance
/netbsd-src/sys/dev/microcode/aic7xxx/ |
H A D | aicasm.c | 767 scope_t *new_scope; in scope_alloc() local 769 new_scope = (scope_t *)malloc(sizeof(scope_t)); in scope_alloc() 770 if (new_scope == NULL) in scope_alloc() 772 memset(new_scope, 0, sizeof(*new_scope)); in scope_alloc() 773 TAILQ_INIT(&new_scope->inner_scope); in scope_alloc() 777 new_scope, scope_links); in scope_alloc() 780 SLIST_INSERT_HEAD(&scope_stack, new_scope, scope_stack_links); in scope_alloc() 781 return new_scope; in scope_alloc()
|
H A D | aicasm_gram.y | 1058 scope_t *new_scope; variable 1061 new_scope = scope_alloc(); 1062 new_scope->type = SCOPE_IF; 1063 new_scope->begin_addr = instruction_ptr; 1064 new_scope->func_num = $2->info.condinfo->func_num; 1068 scope_t *new_scope; variable 1086 new_scope = scope_alloc(); 1087 new_scope->type = SCOPE_ELSE_IF; 1088 new_scope->begin_addr = instruction_ptr; 1089 new_scope->func_num = $3->info.condinfo->func_num; [all …]
|
/netbsd-src/sys/netinet6/ |
H A D | in6_src.c | 190 int new_scope = -1, new_matchlen = -1; in in6_select_best_ia() local 245 new_scope = in6_addrscope(&ia->ia_addr.sin6_addr); in in6_select_best_ia() 246 if (IN6_ARE_SCOPE_CMP(best_scope, new_scope) < 0) { in in6_select_best_ia() 250 } else if (IN6_ARE_SCOPE_CMP(new_scope, best_scope) < 0) { in in6_select_best_ia() 251 if (IN6_ARE_SCOPE_CMP(new_scope, dst_scope) < 0) in in6_select_best_ia() 443 best_scope = (new_scope >= 0 ? new_scope : in in6_select_best_ia()
|
/netbsd-src/external/bsd/byacc/dist/test/ |
H A D | btyacc_demo.y | 108 input: decl_list(global_scope = new_scope(0)) ; 191 | block_statement(new_scope($e)) [YYVALID;]{ $$ = $1; } 209 extern Scope * new_scope(Scope *outer_scope);
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/ |
H A D | parser.c | 6356 tree new_scope; in cp_parser_nested_name_specifier_opt() local 6376 new_scope = resolve_typename_type (parser->scope, in cp_parser_nested_name_specifier_opt() 6378 if (TREE_CODE (new_scope) != TYPENAME_TYPE) in cp_parser_nested_name_specifier_opt() 6379 parser->scope = new_scope; in cp_parser_nested_name_specifier_opt() 6461 new_scope in cp_parser_nested_name_specifier_opt() 6632 if (TREE_CODE (new_scope) == TYPE_DECL) in cp_parser_nested_name_specifier_opt() 6633 new_scope = TREE_TYPE (new_scope); in cp_parser_nested_name_specifier_opt() 6636 check_template_keyword_in_nested_name_spec (new_scope); in cp_parser_nested_name_specifier_opt() 6639 if (TYPE_P (new_scope) in cp_parser_nested_name_specifier_opt() 6642 && !COMPLETE_TYPE_P (new_scope) in cp_parser_nested_name_specifier_opt() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/ |
H A D | parser.cc | 6690 tree new_scope; in cp_parser_nested_name_specifier_opt() local 6711 new_scope = resolve_typename_type (parser->scope, in cp_parser_nested_name_specifier_opt() 6713 if (TREE_CODE (new_scope) != TYPENAME_TYPE) in cp_parser_nested_name_specifier_opt() 6714 parser->scope = new_scope; in cp_parser_nested_name_specifier_opt() 6797 new_scope in cp_parser_nested_name_specifier_opt() 6968 if (TREE_CODE (new_scope) == TYPE_DECL) in cp_parser_nested_name_specifier_opt() 6969 new_scope = TREE_TYPE (new_scope); in cp_parser_nested_name_specifier_opt() 6972 check_template_keyword_in_nested_name_spec (new_scope); in cp_parser_nested_name_specifier_opt() 6975 if (TYPE_P (new_scope) in cp_parser_nested_name_specifier_opt() 6978 && !COMPLETE_TYPE_P (new_scope) in cp_parser_nested_name_specifier_opt() [all …]
|
H A D | ChangeLog-2007 | 439 TYPE_MAIN_VARIANT (new_scope) as scope if new_scope is an incomplete
|
/netbsd-src/external/gpl3/gdb/dist/gdb/ |
H A D | ChangeLog-2018 | 3518 (compile_cplus_instance::enter_scope): Don't use new_scope after 4359 (compile_cplus_instance::new_scope): Change reference to
|
/netbsd-src/external/gpl3/gdb.old/dist/gdb/ |
H A D | ChangeLog-2018 | 3518 (compile_cplus_instance::enter_scope): Don't use new_scope after 4359 (compile_cplus_instance::new_scope): Change reference to
|