Searched refs:newargs (Results 1 - 25 of 31) sorted by relevance

12

/netbsd-current/sys/arch/sparc/stand/ofwboot/
H A Dboot.c259 long newargs[4]; local
340 newargs[0] = SPARC_MACHINE_OPENFIRMWARE;
341 newargs[1] = (long)esym;
342 newargs[2] = (long)ssym;
343 newargs[3] = (long)(void*)bootinfo;
344 args = (char *)newargs;
345 l = sizeof(newargs);
/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dapply.c66 doCond(e->thisexp) || doCond(e->newargs) || doCond(e->arguments) || applyTo(e);
73 doCond(e->thisexp) || doCond(e->newargs) || doCond(e->arguments) || applyTo(e);
H A Doptimize.c503 if (e->newargs)
505 for (size_t i = 0; i < e->newargs->dim; i++)
507 expOptimize((*e->newargs)[i], WANTvalue);
H A Dexpression.h537 /* thisexp.new(newargs) newtype(arguments)
540 Expressions *newargs; // Array of Expression's to call new operator member in class:NewExp
550 NewExp(Loc loc, Expression *thisexp, Expressions *newargs,
552 static NewExp *create(Loc loc, Expression *thisexp, Expressions *newargs, Type *newtype, Expressions *arguments);
561 /* thisexp.new(newargs) class baseclasses { } (arguments)
564 Expressions *newargs; // Array of Expression's to call new operator member in class:NewAnonClassExp
568 NewAnonClassExp(Loc loc, Expression *thisexp, Expressions *newargs,
H A Dexpressionsem.c1056 if (arrayExpressionSemantic(exp->newargs, sc) ||
1057 preFunctionParameters(sc, exp->newargs))
1181 // Prepend the size argument to newargs[]
1183 if (!exp->newargs)
1184 exp->newargs = new Expressions();
1185 exp->newargs->shift(e);
1187 FuncDeclaration *f = resolveFuncCall(exp->loc, sc, cd->aggNew, NULL, tb, exp->newargs);
1198 if (functionParameters(exp->loc, sc, tf, NULL, exp->newargs, f, &rettype, &newprefix))
1206 if (exp->newargs && exp->newargs
[all...]
H A Dexpression.c4280 /* thisexp.new(newargs) newtype(arguments) */
4282 NewExp::NewExp(Loc loc, Expression *thisexp, Expressions *newargs, argument
4287 this->newargs = newargs;
4296 NewExp *NewExp::create(Loc loc, Expression *thisexp, Expressions *newargs, argument
4299 return new NewExp(loc, thisexp, newargs, newtype, arguments);
4306 arraySyntaxCopy(newargs),
4313 Expressions *newargs, ClassDeclaration *cd, Expressions *arguments)
4317 this->newargs = newargs;
4312 NewAnonClassExp(Loc loc, Expression *thisexp, Expressions *newargs, ClassDeclaration *cd, Expressions *arguments) argument
[all...]
H A Ddeclaration.c1503 if (ne->newargs && ne->newargs->dim > 1)
H A Dparse.c7904 Expressions *newargs; local
7909 newargs = NULL;
7912 newargs = parseArguments();
7943 Expression *e = new NewAnonClassExp(loc, thisexp, newargs, cd, arguments);
7972 Expression *e = new NewExp(loc, thisexp, newargs, t, arguments);
/netbsd-current/bin/sh/
H A Dexec.c285 char *newargs[NEWARGS]; local
292 ap = newargs;
300 if (ap == &newargs[NEWARGS])
310 if (ap == newargs + 1) { /* if no args, maybe no exec is needed */
311 p = newargs[0];
325 i = (char *)ap - (char *)newargs; /* size in bytes */
330 ap = newargs, ap2 = new;
/netbsd-current/external/gpl3/gcc/dist/gcc/c-family/
H A Dc-attribs.cc827 validate_attr_args (tree node[2], tree name, tree newargs[2]) argument
832 if (node[0] != node[1] && !validate_attr_args (self, name, newargs))
855 if (TREE_CODE (newargs[0]) == INTEGER_CST)
857 arg1eq = tree_int_cst_equal (newargs[0], prevargs[0]);
858 if (newargs[1] && prevargs[1])
859 arg2eq = tree_int_cst_equal (newargs[1], prevargs[1]);
861 arg2eq = newargs[1] == prevargs[1];
863 else if (TREE_CODE (newargs[0]) == STRING_CST)
865 const char *s0 = TREE_STRING_POINTER (newargs[0]);
868 if (newargs[
3523 tree newargs[2] = { NULL_TREE, NULL_TREE }; local
[all...]
/netbsd-current/external/bsd/ntp/dist/sntp/ag-tpl/0-old/
H A DMdoc.pm431 my @newargs;
446 push @newargs, $_;
474 #print "MACRO $macro (", (join ', ', @newargs), ")".(join ', ', @ret)."\n";
475 return $macros{ $macro }{run}->(@newargs), @ret;
/netbsd-current/crypto/external/bsd/netpgp/dist/bindings/python/
H A Dnetpgppython_wrap.c1208 PyObject *newargs; member in struct:__anon283
1239 /* the newraw method and newargs arguments used to create a new raw instance */
1242 data->newargs = obj;
1252 data->newargs = PyTuple_New(1);
1253 PyTuple_SetItem(data->newargs, 0, obj);
1255 data->newargs = obj;
1257 Py_INCREF(data->newargs);
1286 Py_XDECREF(data->newargs);
2089 inst = PyObject_Call(newraw, data->newargs, NULL);
2109 inst = PyInstance_NewRaw(data->newargs, dic
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dinfcmd.c150 set_inferior_args (const char *newargs)
153 current_inferior ()->args = newargs ? xstrdup (newargs) : NULL;
149 set_inferior_args(const char *newargs) argument
/netbsd-current/external/gpl3/gcc.old/dist/gcc/c/
H A Dc-decl.c1709 tree newargs = TYPE_ARG_TYPES (newtype);
1710 tree tryargs = newargs;
1719 for (unsigned i = 1; oldargs || newargs; ++i)
1722 || !newargs
1724 || !TREE_VALUE (newargs))
1728 tree newtype = TYPE_MAIN_VARIANT (TREE_VALUE (newargs));
1781 newargs = TREE_CHAIN (newargs);
1847 tree newargs, oldargs;
1853 newargs
1696 tree newargs = TYPE_ARG_TYPES (newtype); local
1834 tree newargs, oldargs; local
[all...]
H A Dc-typeck.c525 tree newargs, n;
551 for (len = 0, newargs = p1;
552 newargs && newargs != void_list_node;
553 len++, newargs = TREE_CHAIN (newargs))
557 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
559 n = newargs;
634 t1 = build_function_type (valtype, newargs);
523 tree newargs, n; local
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/c/
H A Dc-decl.cc1721 tree newargs = TYPE_ARG_TYPES (newtype);
1722 tree tryargs = newargs;
1731 for (unsigned i = 1; oldargs || newargs; ++i)
1734 || !newargs
1736 || !TREE_VALUE (newargs))
1740 tree newtype = TREE_VALUE (newargs);
1796 newargs = TREE_CHAIN (newargs);
1862 tree newargs, oldargs;
1868 newargs
1708 tree newargs = TYPE_ARG_TYPES (newtype); local
1849 tree newargs, oldargs; local
[all...]
H A Dc-typeck.cc529 tree newargs, n;
555 for (len = 0, newargs = p1;
556 newargs && newargs != void_list_node;
557 len++, newargs = TREE_CHAIN (newargs))
561 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
563 n = newargs;
638 t1 = build_function_type (valtype, newargs);
527 tree newargs, n; local
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/cp/
H A Dtypeck.c181 tree oldargs = p1, newargs, n;
186 newargs = tree_last (p1);
188 if (newargs == void_list_node)
193 newargs = 0;
197 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
199 n = newargs;
234 return newargs;
180 tree oldargs = p1, newargs, n; local
H A Dtree.c2716 bind_template_template_parm (tree t, tree newargs)
2730 = build_template_info (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t), newargs);
2710 bind_template_template_parm(tree t, tree newargs) argument
/netbsd-current/sys/kern/
H A Dkern_exec.c1562 char *newargs = STACK_ALLOC( local
1566 &data->ed_arginfo, &newargs, data->ed_argp);
/netbsd-current/external/gpl3/gcc/dist/gcc/cp/
H A Dtypeck.cc189 tree oldargs = p1, newargs, n;
194 newargs = tree_last (p1);
196 if (newargs == void_list_node)
201 newargs = 0;
205 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
207 n = newargs;
242 return newargs;
188 tree oldargs = p1, newargs, n; local
H A Dtree.cc2902 bind_template_template_parm (tree t, tree newargs)
2917 = build_template_info (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t), newargs);
2896 bind_template_template_parm(tree t, tree newargs) argument
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dtree-inline.c5125 auto_vec<tree> newargs (nargs + vars->length ());
5127 newargs.quick_push (gimple_call_arg (simtenter_stmt, i));
5131 newargs.quick_push (build1 (ADDR_EXPR, ptrtype, *pvar));
5133 gcall *g = gimple_build_call_internal_vec (IFN_GOMP_SIMT_ENTER, newargs);
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dtree-inline.cc5162 auto_vec<tree> newargs (nargs + vars->length ());
5164 newargs.quick_push (gimple_call_arg (simtenter_stmt, i));
5168 newargs.quick_push (build1 (ADDR_EXPR, ptrtype, *pvar));
5170 gcall *g = gimple_build_call_internal_vec (IFN_GOMP_SIMT_ENTER, newargs);
/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/
H A Dexpr.cc2316 gcc_assert (e->newargs);
2341 new_call = d_build_call_expr (e->allocator, NULL_TREE, e->newargs);
2420 new_call = d_build_call_expr (e->allocator, NULL_TREE, e->newargs);

Completed in 353 milliseconds

12