Home
last modified time | relevance | path

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

12

/netbsd-src/sys/arch/mips/mips/
H A Dsyscall.c122 mips_reg_t *fargs = &reg->r_regs[_R_A0]; in EMULNAME() local
157 code = *fargs++ - SYSCALL_SHIFT; in EMULNAME()
164 code = fargs[_QUAD_LOWWORD] - SYSCALL_SHIFT; in EMULNAME()
165 fargs += 2; in EMULNAME()
178 CTASSERT(sizeof(copyargs[0]) == sizeof(fargs[0])); in EMULNAME()
183 args = fargs; in EMULNAME()
192 memcpy(copyargs, fargs, nregs * sizeof(register_t)); in EMULNAME()
220 CTASSERT(sizeof(copy32args[0]) != sizeof(fargs[0])); in EMULNAME()
227 args = fargs; in EMULNAME()
253 arg = (int32_t) *fargs++; in EMULNAME()
/netbsd-src/sys/kern/
H A Dvfs_hooks.c95 #define VFS_HOOKS_W_ERROR(func, fargs, hook, hargs) \
97 func fargs \
122 #define VFS_HOOKS_WO_ERROR(func, fargs, hook, hargs) \
124 func fargs \
92 VFS_HOOKS_W_ERROR(func,fargs,hook,hargs) global() argument
119 VFS_HOOKS_WO_ERROR(func,fargs,hook,hargs) global() argument
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dtemplate.h93 …MATCH matchWithInstance(Scope *sc, TemplateInstance *ti, Objects *atypes, Expressions *fargs, int …
94 MATCH leastAsSpecialized(Scope *sc, TemplateDeclaration *td2, Expressions *fargs);
96 …plateMatch(TemplateInstance *ti, Scope *sc, FuncDeclaration *&fd, Type *tthis, Expressions *fargs);
98 …stantiation(TemplateInstance *ti, Scope *sc, FuncDeclaration *fd, Type *tthis, Expressions *fargs);
99 TemplateInstance *findExistingInstance(TemplateInstance *tithis, Expressions *fargs);
313 Expressions *fargs; // for function template, these are the function arguments variable
329 void semantic(Scope *sc, Expressions *fargs);
350 bool findBestMatch(Scope *sc, Expressions *fargs);
H A Ddtemplate.c853 Objects *dedtypes, Expressions *fargs, int flag) in matchWithInstance() argument
952 tf->fargs = fargs; in matchWithInstance()
986 …CH TemplateDeclaration::leastAsSpecialized(Scope *sc, TemplateDeclaration *td2, Expressions *fargs) in leastAsSpecialized() argument
1017 MATCH m = td2->matchWithInstance(sc, &ti, &dedtypes, fargs, 1); in leastAsSpecialized()
1106 FuncDeclaration *&fd, Type *tthis, Expressions *fargs) in deduceFunctionTemplateMatch() argument
1206 nfargs = fargs ? fargs->dim : 0; // number of function arguments in deduceFunctionTemplateMatch()
1369 farg = (*fargs)[argi + i]; in deduceFunctionTemplateMatch()
1447 farg = (*fargs)[argi]; in deduceFunctionTemplateMatch()
1559 farg = (*fargs)[argi]; in deduceFunctionTemplateMatch()
1791 Expression *arg = (*fargs)[argi]; in deduceFunctionTemplateMatch()
[all …]
H A Dmtype.c2031 t->fargs = fargs; in substWildTo()
5158 this->fargs = NULL; in TypeFunction()
5213 t->fargs = fargs; in syntaxCopy()
5758 if (fargs && i < fargs->dim && (fparam->storageClass & STCref)) in semantic()
5760 Expression *farg = (*fargs)[i]; in semantic()
6327 tf->fargs = fargs; in addStorageClass()
H A Dfunc.c3486 Objects *tiargs, Type *tthis, Expressions *fargs, int flags) in resolveFuncCall() argument
3492 (fargs && arrayObjectIsError((Objects *)fargs))) in resolveFuncCall()
3501 functionResolve(&m, s, loc, sc, tiargs, tthis, fargs); in resolveFuncCall()
3542 argExpTypesToCBuffer(&fargsBuf, fargs); in resolveFuncCall()
H A Ddeclaration.h110 …solve(Match *m, Dsymbol *fd, Loc loc, Scope *sc, Objects *tiargs, Type *tthis, Expressions *fargs);
H A Dexpression.c6866 Expressions *fargs = new Expressions(); in resolveOpDollar() local
6867 fargs->push(ie->lwr); in resolveOpDollar()
6868 fargs->push(ie->upr); in resolveOpDollar()
6872 … FuncDeclaration *fslice = resolveFuncCall(ae->loc, sc, slice, tiargs, ae->e1->type, fargs, 1); in resolveOpDollar()
6879 e = new CallExp(ae->loc, e, fargs); in resolveOpDollar()
H A Dmtype.h613 Expressions *fargs; // function arguments variable
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddtemplate.d1053 … matchWithInstance(Scope* sc, TemplateInstance ti, Objects* dedtypes, Expressions* fargs, int flag) in matchWithInstance() argument
1186 tf.fargs = fargs; in matchWithInstance()
1242 MATCH leastAsSpecialized(Scope* sc, TemplateDeclaration td2, Expressions* fargs) in leastAsSpecialized() argument
1277 MATCH m = td2.matchWithInstance(sc, ti, &dedtypes, fargs, 1); in leastAsSpecialized()
1315 …mplateMatch(TemplateInstance ti, Scope* sc, ref FuncDeclaration fd, Type tthis, Expressions* fargs) in deduceFunctionTemplateMatch() argument
1336 for (size_t i = 0; i < (fargs ? fargs.dim : 0); i++) in deduceFunctionTemplateMatch()
1338 Expression e = (*fargs)[i]; in deduceFunctionTemplateMatch()
1464 nfargs = fargs ? fargs.dim : 0; // number of function arguments in deduceFunctionTemplateMatch()
1629 farg = (*fargs)[argi + i]; in deduceFunctionTemplateMatch()
1711 farg = (*fargs)[argi]; in deduceFunctionTemplateMatch()
[all …]
H A Dtemplate.h85 MATCH leastAsSpecialized(Scope *sc, TemplateDeclaration *td2, Expressions *fargs);
261 Expressions *fargs; // for function template, these are the function arguments variable
H A Dfunc.d3120 Objects* tiargs, Type tthis, Expressions* fargs, FuncResolveFlag flags) in resolveFuncCall() argument
3130 if (fargs) in resolveFuncCall()
3132 for (size_t i = 0; i < fargs.dim; i++) in resolveFuncCall()
3134 Expression arg = (*fargs)[i]; in resolveFuncCall()
3142 fargs && arrayObjectIsError(cast(Objects*)fargs)) in resolveFuncCall()
3148 functionResolve(m, s, loc, sc, tiargs, tthis, fargs, null); in resolveFuncCall()
3192 argExpTypesToCBuffer(&fargsBuf, fargs); in resolveFuncCall()
3269 functionResolve(m, orig_s, loc, sc, tiargs, tthis, fargs, &failMessage); in resolveFuncCall()
3303 functionResolve(m, orig_s, loc, sc, tiargs, tthis, fargs, &failMessage); in resolveFuncCall()
H A Dmtype.d4228 Expressions* fargs; // function arguments variable
4301 t.fargs = fargs; in syntaxCopy()
4462 tf.fargs = fargs; in addStorageClass()
4543 t.fargs = fargs; in substWildTo()
H A Dmtype.h604 Expressions *fargs; // function arguments variable
H A Ddsymbolsem.d5711 void templateInstanceSemantic(TemplateInstance tempinst, Scope* sc, Expressions* fargs) in templateInstanceSemantic() argument
5783 …pinst.findTempDecl(sc, null) || !tempinst.semanticTiargs(sc) || !tempinst.findBestMatch(sc, fargs)) in templateInstanceSemantic()
5839 tempinst.inst = tempdecl.findExistingInstance(tempinst, fargs); in templateInstanceSemantic()
6085 if (fargs && tempinst.aliasdecl) in templateInstanceSemantic()
6094 tf.fargs = fargs; in templateInstanceSemantic()
H A Dexpressionsem.d255 auto fargs = new Expressions(2); in resolveOpDollar() local
256 (*fargs)[0] = ie.lwr; in resolveOpDollar()
257 (*fargs)[1] = ie.upr; in resolveOpDollar()
261 …FuncDeclaration fslice = resolveFuncCall(ae.loc, sc, slice, tiargs, ae.e1.type, fargs, FuncResolve… in resolveOpDollar()
268 e = new CallExp(ae.loc, e, fargs); in resolveOpDollar()
4952 Expression[] fargs = exp.arguments ? (*exp.arguments)[] : null; in visit()
4953 if (!tf.callMatch(null, fargs, 0, &failMessage, sc)) in visit()
5025 Expression[] fargs = exp.arguments ? (*exp.arguments)[] : null; in visit()
5026 if (!tf.callMatch(null, fargs, 0, &failMessage, sc)) in visit()
H A Dtypesem.d1586 Expression farg = mtype.fargs && eidx < mtype.fargs.dim ? in typeSemantic()
1587 (*mtype.fargs)[eidx] : eparam.defaultArg; in typeSemantic()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/
H A Dtrans-expr.c7639 gfc_formal_arglist *fargs; in gfc_conv_statement_function() local
7655 for (fargs = gfc_sym_get_dummy_args (sym); fargs; fargs = fargs->next) in gfc_conv_statement_function()
7660 for (fargs = gfc_sym_get_dummy_args (sym), n = 0; fargs; in gfc_conv_statement_function()
7661 fargs = fargs->next, n++) in gfc_conv_statement_function()
7665 gcc_assert (fargs->sym->attr.dimension == 0); in gfc_conv_statement_function()
7666 fsym = fargs->sym; in gfc_conv_statement_function()
7715 for (fargs = gfc_sym_get_dummy_args (sym), n = 0; fargs; in gfc_conv_statement_function()
7716 fargs = fargs->next, n++) in gfc_conv_statement_function()
7717 gfc_shadow_sym (fargs->sym, temp_vars[n], &saved_vars[n]); in gfc_conv_statement_function()
7742 for (fargs = gfc_sym_get_dummy_args (sym), n = 0; fargs; in gfc_conv_statement_function()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/fortran/
H A Dtrans-expr.cc8182 gfc_formal_arglist *fargs; in gfc_conv_statement_function() local
8198 for (fargs = gfc_sym_get_dummy_args (sym); fargs; fargs = fargs->next) in gfc_conv_statement_function()
8203 for (fargs = gfc_sym_get_dummy_args (sym), n = 0; fargs; in gfc_conv_statement_function()
8204 fargs = fargs->next, n++) in gfc_conv_statement_function()
8208 gcc_assert (fargs->sym->attr.dimension == 0); in gfc_conv_statement_function()
8209 fsym = fargs->sym; in gfc_conv_statement_function()
8258 for (fargs = gfc_sym_get_dummy_args (sym), n = 0; fargs; in gfc_conv_statement_function()
8259 fargs = fargs->next, n++) in gfc_conv_statement_function()
8260 gfc_shadow_sym (fargs->sym, temp_vars[n], &saved_vars[n]); in gfc_conv_statement_function()
8285 for (fargs = gfc_sym_get_dummy_args (sym), n = 0; fargs; in gfc_conv_statement_function()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/
H A Dconstraint.cc1325 vec<tree, va_gc> *fargs = make_tree_vector (); in build_function_check() local
1326 tree call = build_min_nt_call_vec (id, fargs); in build_function_check()
1328 release_tree_vector (fargs); in build_function_check()
H A Dcall.c8946 tree *fargs = (!nargs ? argarray in build_over_call() local
8954 fargs[j] = TREE_OPERAND (argarray[j], 0); in build_over_call()
8956 fargs[j] = argarray[j]; in build_over_call()
8960 nargs, fargs, NULL); in build_over_call()
H A Dpt.c28458 tree tparms, targs, fparms, fargs, ci; in build_deduction_guide() local
28490 fargs = NULL_TREE; in build_deduction_guide()
28514 fargs = TREE_CHAIN (DECL_ARGUMENTS (ctor)); in build_deduction_guide()
28584 fargs = tsubst (fargs, tsubst_args, complain, ctor); in build_deduction_guide()
28605 DECL_ARGUMENTS (ded_fn) = fargs; in build_deduction_guide()
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A Dconstraint.cc1368 vec<tree, va_gc> *fargs = make_tree_vector (); in build_function_check() local
1369 tree call = build_min_nt_call_vec (id, fargs); in build_function_check()
1371 release_tree_vector (fargs); in build_function_check()
H A Dpt.cc2337 tree fargs = DECL_TI_ARGS (fn); in determine_specialization() local
2339 freq = tsubst_constraint_info (freq, fargs, complain, fn); in determine_specialization()
29439 tree tparms, targs, fparms, fargs, ci; in build_deduction_guide() local
29471 fargs = NULL_TREE; in build_deduction_guide()
29497 fargs = TREE_CHAIN (DECL_ARGUMENTS (ctor)); in build_deduction_guide()
29575 fargs = tsubst (fargs, tsubst_args, complain, ctor); in build_deduction_guide()
29584 fargs = tsubst (fargs, targs, complain, ctor); in build_deduction_guide()
29611 DECL_ARGUMENTS (ded_fn) = fargs; in build_deduction_guide()
H A Dcall.cc9662 tree *fargs = (!nargs ? argarray in build_over_call() local
9670 fargs[j] = TREE_OPERAND (argarray[j], 0); in build_over_call()
9672 fargs[j] = argarray[j]; in build_over_call()
9676 nargs, fargs, NULL); in build_over_call()

12