Home
last modified time | relevance | path

Searched refs:default_arg (Results 1 – 15 of 15) sorted by relevance

/openbsd/gnu/usr.bin/gcc/gcc/
H A Dgcc.c319 static int default_arg PARAMS ((const char *, int));
6832 default_arg (p, len) in default_arg() function
7027 if (default_arg (this_arg, p - this_arg)) in set_multilib_dir()
7184 default_arg (this_arg, e - this_arg)) in print_multilib_info()
7250 && default_arg (arg, q - arg)) in print_multilib_info()
H A DFSFChangeLog1785 * gcc.c (default_arg): Don't wander off the end of allocated memory.
H A DChangeLog.06366 * gcc.c (default_arg): Don't wander off the end of allocated
7798 (default_arg): Remove unused variable i.
H A DFSFChangeLog.105897 (default_arg): New static function.
H A DChangeLog.13514 is_directory, validate_switches, used_arg, default_arg,
H A DFSFChangeLog.1111128 (used_arg,default_arg,print_multilib_info): Likewise.
H A DChangeLog11961 (default_arg): Optimize.
/openbsd/gnu/gcc/gcc/
H A Dgcc.c330 static int default_arg (const char *, int);
7155 default_arg (const char *p, int len) in default_arg() function
7354 if (default_arg (this_arg, p - this_arg)) in set_multilib_dir()
7520 || default_arg (this_arg, e - this_arg)) in print_multilib_info()
7587 && default_arg (arg, q - arg)) in print_multilib_info()
/openbsd/gnu/usr.bin/gcc/gcc/cp/
H A Dcp-tree.def211 DEFTREECODE (DEFAULT_ARG, "default_arg", 'x', 2)
/openbsd/gnu/gcc/gcc/cp/
H A Dcp-tree.def208 DEFTREECODE (DEFAULT_ARG, "default_arg", tcc_exceptional, 0)
H A Dpt.c7055 tree default_arg; in tsubst_arg_types() local
7087 default_arg = TREE_PURPOSE (arg_types); in tsubst_arg_types()
7089 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG) in tsubst_arg_types()
7095 result = tree_cons (default_arg, type, remaining_arg_types); in tsubst_arg_types()
7096 VEC_safe_push (tree, gc, DEFARG_INSTANTIATIONS (default_arg), result); in tsubst_arg_types()
7099 result = hash_tree_cons (default_arg, type, remaining_arg_types); in tsubst_arg_types()
H A Dparser.c16215 tree default_arg = TREE_PURPOSE (parm); in cp_parser_late_parsing_default_args() local
16221 if (!default_arg) in cp_parser_late_parsing_default_args()
16224 if (TREE_CODE (default_arg) != DEFAULT_ARG) in cp_parser_late_parsing_default_args()
16231 tokens = DEFARG_TOKENS (default_arg); in cp_parser_late_parsing_default_args()
16243 for (insts = DEFARG_INSTANTIATIONS (default_arg), ix = 0; in cp_parser_late_parsing_default_args()
H A Dcp-tree.h474 struct tree_default_arg GTY ((tag ("TS_CP_DEFAULT_ARG"))) default_arg;
H A DChangeLog-2002301 (default_arg): New structure.
303 (lang_tree_node): Add default_arg.
H A DChangeLog-20033512 * parser.c (struct cp_parser): Document default_arg chain on