Home
last modified time | relevance | path

Searched refs:newargs (Results 1 – 25 of 32) sorted by relevance

12

/netbsd-src/sys/arch/sparc/stand/ofwboot/
H A Dboot.c259 long newargs[4]; in jump_to_kernel() local
340 newargs[0] = SPARC_MACHINE_OPENFIRMWARE; in jump_to_kernel()
341 newargs[1] = (long)esym; in jump_to_kernel()
342 newargs[2] = (long)ssym; in jump_to_kernel()
343 newargs[3] = (long)(void*)bootinfo; in jump_to_kernel()
344 args = (char *)newargs; in jump_to_kernel()
345 l = sizeof(newargs); in jump_to_kernel()
/netbsd-src/bin/sh/
H A Dexec.c285 char *newargs[NEWARGS]; in execinterp() local
292 ap = newargs; in execinterp()
300 if (ap == &newargs[NEWARGS]) in execinterp()
310 if (ap == newargs + 1) { /* if no args, maybe no exec is needed */ in execinterp()
311 p = newargs[0]; in execinterp()
325 i = (char *)ap - (char *)newargs; /* size in bytes */ in execinterp()
330 ap = newargs, ap2 = new; in execinterp()
/netbsd-src/external/bsd/ntp/dist/sntp/ag-tpl/0-old/
H A DMdoc.pm431 my @newargs;
446 push @newargs, $_;
475 return $macros{ $macro }{run}->(@newargs), @ret;
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dapply.c66 doCond(e->thisexp) || doCond(e->newargs) || doCond(e->arguments) || applyTo(e); in visit()
73 doCond(e->thisexp) || doCond(e->newargs) || doCond(e->arguments) || applyTo(e); in visit()
H A Dexpression.h540 Expressions *newargs; // Array of Expression's to call new operator variable
550 NewExp(Loc loc, Expression *thisexp, Expressions *newargs,
552 …static NewExp *create(Loc loc, Expression *thisexp, Expressions *newargs, Type *newtype, Expressio…
564 Expressions *newargs; // Array of Expression's to call new operator variable
568 NewAnonClassExp(Loc loc, Expression *thisexp, Expressions *newargs,
H A Doptimize.c503 if (e->newargs) in Expression_optimize()
505 for (size_t i = 0; i < e->newargs->dim; i++) in Expression_optimize()
507 expOptimize((*e->newargs)[i], WANTvalue); in Expression_optimize()
H A Dexpressionsem.c1056 if (arrayExpressionSemantic(exp->newargs, sc) || in visit()
1057 preFunctionParameters(sc, exp->newargs)) in visit()
1183 if (!exp->newargs) in visit()
1184 exp->newargs = new Expressions(); in visit()
1185 exp->newargs->shift(e); in visit()
1187 … FuncDeclaration *f = resolveFuncCall(exp->loc, sc, cd->aggNew, NULL, tb, exp->newargs); in visit()
1198 … if (functionParameters(exp->loc, sc, tf, NULL, exp->newargs, f, &rettype, &newprefix)) in visit()
1206 if (exp->newargs && exp->newargs->dim) in visit()
1278 if (!exp->newargs) in visit()
1279 exp->newargs = new Expressions(); in visit()
[all …]
H A Dhdrgen.c2601 if (e->newargs && e->newargs->dim) in visit()
2604 argsToBuffer(e->newargs); in visit()
2624 if (e->newargs && e->newargs->dim) in visit()
2627 argsToBuffer(e->newargs); in visit()
H A Dexpression.c4282 NewExp::NewExp(Loc loc, Expression *thisexp, Expressions *newargs, in NewExp() argument
4287 this->newargs = newargs; in NewExp()
4296 NewExp *NewExp::create(Loc loc, Expression *thisexp, Expressions *newargs, in create() argument
4299 return new NewExp(loc, thisexp, newargs, newtype, arguments); in create()
4306 arraySyntaxCopy(newargs), in syntaxCopy()
4313 Expressions *newargs, ClassDeclaration *cd, Expressions *arguments) in NewAnonClassExp() argument
4317 this->newargs = newargs; in NewAnonClassExp()
4326 arraySyntaxCopy(newargs), in syntaxCopy()
H A Ddeclaration.c1503 if (ne->newargs && ne->newargs->dim > 1) in semantic()
H A Dparse.c7904 Expressions *newargs; in parseNewExp() local
7909 newargs = NULL; in parseNewExp()
7912 newargs = parseArguments(); in parseNewExp()
7943 Expression *e = new NewAnonClassExp(loc, thisexp, newargs, cd, arguments); in parseNewExp()
7972 Expression *e = new NewExp(loc, thisexp, newargs, t, arguments); in parseNewExp()
/netbsd-src/external/gpl3/gcc/dist/gcc/c-family/
H A Dc-attribs.cc827 validate_attr_args (tree node[2], tree name, tree newargs[2]) in validate_attr_args()
832 if (node[0] != node[1] && !validate_attr_args (self, name, newargs)) in validate_attr_args()
855 if (TREE_CODE (newargs[0]) == INTEGER_CST) in validate_attr_args()
857 arg1eq = tree_int_cst_equal (newargs[0], prevargs[0]); in validate_attr_args()
858 if (newargs[1] && prevargs[1]) in validate_attr_args()
859 arg2eq = tree_int_cst_equal (newargs[1], prevargs[1]); in validate_attr_args()
861 arg2eq = newargs[1] == prevargs[1]; in validate_attr_args()
863 else if (TREE_CODE (newargs[0]) == STRING_CST) in validate_attr_args()
865 const char *s0 = TREE_STRING_POINTER (newargs[0]); in validate_attr_args()
868 if (newargs[1] && prevargs[1]) in validate_attr_args()
[all …]
/netbsd-src/crypto/external/bsd/netpgp/dist/bindings/python/
H A Dnetpgppython_wrap.c1208 PyObject *newargs; member
1242 data->newargs = obj; in PySwigClientData_New()
1252 data->newargs = PyTuple_New(1); in PySwigClientData_New()
1253 PyTuple_SetItem(data->newargs, 0, obj); in PySwigClientData_New()
1255 data->newargs = obj; in PySwigClientData_New()
1257 Py_INCREF(data->newargs); in PySwigClientData_New()
1286 Py_XDECREF(data->newargs); in PySwigClientData_Del()
2089 inst = PyObject_Call(newraw, data->newargs, NULL); in SWIG_Python_NewShadowInstance()
2109 inst = PyInstance_NewRaw(data->newargs, dict); in SWIG_Python_NewShadowInstance()
2118 inst = PyInstance_NewRaw(data->newargs, dict); in SWIG_Python_NewShadowInstance()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/c/
H A Dc-decl.c1696 tree newargs = TYPE_ARG_TYPES (newtype); in match_builtin_function_types() local
1697 tree tryargs = newargs; in match_builtin_function_types()
1706 for (unsigned i = 1; oldargs || newargs; ++i) in match_builtin_function_types()
1709 || !newargs in match_builtin_function_types()
1711 || !TREE_VALUE (newargs)) in match_builtin_function_types()
1715 tree newtype = TYPE_MAIN_VARIANT (TREE_VALUE (newargs)); in match_builtin_function_types()
1768 newargs = TREE_CHAIN (newargs); in match_builtin_function_types()
1834 tree newargs, oldargs; in validate_proto_after_old_defn() local
1840 newargs = TYPE_ARG_TYPES (newtype); in validate_proto_after_old_defn()
1846 tree newargtype = TREE_VALUE (newargs); in validate_proto_after_old_defn()
[all …]
H A Dc-typeck.c523 tree newargs, n; in composite_type() local
549 for (len = 0, newargs = p1; in composite_type()
550 newargs && newargs != void_list_node; in composite_type()
551 len++, newargs = TREE_CHAIN (newargs)) in composite_type()
555 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs); in composite_type()
557 n = newargs; in composite_type()
632 t1 = build_function_type (valtype, newargs); in composite_type()
/netbsd-src/external/gpl3/gcc/dist/gcc/c/
H A Dc-decl.cc1708 tree newargs = TYPE_ARG_TYPES (newtype); in match_builtin_function_types() local
1709 tree tryargs = newargs; in match_builtin_function_types()
1718 for (unsigned i = 1; oldargs || newargs; ++i) in match_builtin_function_types()
1721 || !newargs in match_builtin_function_types()
1723 || !TREE_VALUE (newargs)) in match_builtin_function_types()
1727 tree newtype = TREE_VALUE (newargs); in match_builtin_function_types()
1783 newargs = TREE_CHAIN (newargs); in match_builtin_function_types()
1849 tree newargs, oldargs; in validate_proto_after_old_defn() local
1855 newargs = TYPE_ARG_TYPES (newtype); in validate_proto_after_old_defn()
1861 tree newargtype = TREE_VALUE (newargs); in validate_proto_after_old_defn()
[all …]
H A Dc-typeck.cc527 tree newargs, n; in composite_type() local
553 for (len = 0, newargs = p1; in composite_type()
554 newargs && newargs != void_list_node; in composite_type()
555 len++, newargs = TREE_CHAIN (newargs)) in composite_type()
559 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs); in composite_type()
561 n = newargs; in composite_type()
636 t1 = build_function_type (valtype, newargs); in composite_type()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/
H A Dtypeck.c180 tree oldargs = p1, newargs, n; in commonparms() local
185 newargs = tree_last (p1); in commonparms()
187 if (newargs == void_list_node) in commonparms()
192 newargs = 0; in commonparms()
196 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs); in commonparms()
198 n = newargs; in commonparms()
233 return newargs; in commonparms()
H A Dtree.c2710 bind_template_template_parm (tree t, tree newargs) in bind_template_template_parm() argument
2724 = build_template_info (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t), newargs); in bind_template_template_parm()
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A Dtypeck.cc188 tree oldargs = p1, newargs, n; in commonparms() local
193 newargs = tree_last (p1); in commonparms()
195 if (newargs == void_list_node) in commonparms()
200 newargs = 0; in commonparms()
204 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs); in commonparms()
206 n = newargs; in commonparms()
241 return newargs; in commonparms()
H A Dtree.cc2896 bind_template_template_parm (tree t, tree newargs) in bind_template_template_parm() argument
2911 = build_template_info (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t), newargs); in bind_template_template_parm()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/
H A Dexpr.cc2316 gcc_assert (e->newargs); in visit()
2341 new_call = d_build_call_expr (e->allocator, NULL_TREE, e->newargs); in visit()
2420 new_call = d_build_call_expr (e->allocator, NULL_TREE, e->newargs); in visit()
/netbsd-src/sys/kern/
H A Dkern_exec.c1563 char *newargs = STACK_ALLOC( in copyoutargs()
1567 &data->ed_arginfo, &newargs, data->ed_argp); in copyoutargs()
1562 char *newargs = STACK_ALLOC( copyoutargs() local
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dtree-inline.c5124 auto_vec<tree> newargs (nargs + vars->length ()); in expand_call_inline()
5126 newargs.quick_push (gimple_call_arg (simtenter_stmt, i)); in expand_call_inline()
5130 newargs.quick_push (build1 (ADDR_EXPR, ptrtype, *pvar)); in expand_call_inline()
5132 gcall *g = gimple_build_call_internal_vec (IFN_GOMP_SIMT_ENTER, newargs); in expand_call_inline()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dtree-inline.cc5161 auto_vec<tree> newargs (nargs + vars->length ()); in expand_call_inline() local
5163 newargs.quick_push (gimple_call_arg (simtenter_stmt, i)); in expand_call_inline()
5167 newargs.quick_push (build1 (ADDR_EXPR, ptrtype, *pvar)); in expand_call_inline()
5169 gcall *g = gimple_build_call_internal_vec (IFN_GOMP_SIMT_ENTER, newargs); in expand_call_inline()

12