Searched refs:nparams (Results 1 - 20 of 20) sorted by relevance

/freebsd-11-stable/usr.sbin/jls/
H A Djls.c68 static int nparams; variable
189 for (i = 0; i < nparams; i++) {
225 for (i = spc = 0; i < nparams; i++)
279 for (i = 0; i < nparams; i++)
291 if (!nparams) {
297 } else if (nparams >= paramlistsize) {
307 param_parent[nparams] = -1;
308 param = params + nparams++;
318 nparams--;
387 jid = jailparam_get(params, nparams, jflag
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dbuildsym.c271 int nparams = 0, iparams;
284 nparams++;
304 if (nparams > 0)
306 TYPE_NFIELDS (ftype) = nparams;
308 TYPE_ALLOC (ftype, nparams * sizeof (struct field));
313 if (iparams == nparams)
268 int nparams = 0, iparams; local
H A Dstabsread.c855 int nparams = 0;
887 TYPE_FIELD_TYPE (ftype, nparams) = ptype;
888 TYPE_FIELD_ARTIFICIAL (ftype, nparams++) = 0;
890 TYPE_NFIELDS (ftype) = nparams;
852 int nparams = 0; local
H A Dmdebugread.c1239 int nparams = top_stack->numargs;
1243 if (nparams > 0)
1246 TYPE_NFIELDS (ftype) = nparams;
1248 TYPE_ALLOC (ftype, nparams * sizeof (struct field));
1253 if (iparams == nparams)
1232 int nparams = top_stack->numargs; local
H A Ddwarf2read.c2887 int nparams = TYPE_NFIELDS (die->type); local
2903 if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (die->type, 0) == 0)
3879 int nparams = 0; local
3889 nparams++;
3896 TYPE_NFIELDS (ftype) = nparams;
3898 TYPE_ALLOC (ftype, nparams * sizeof (struct field));
/freebsd-11-stable/sys/dev/cxgbe/common/
H A Dcommon.h738 unsigned int vf, unsigned int nparams, const u32 *params,
741 unsigned int vf, unsigned int nparams, const u32 *params,
745 unsigned int nparams, const u32 *params,
748 unsigned int vf, unsigned int nparams, const u32 *params,
845 unsigned int nparams, const u32 *params,
848 return t4_query_params(adapter, 0, 0, 0, nparams, params, vals);
852 unsigned int nparams, const u32 *params,
855 return t4_set_params(adapter, 0, 0, 0, nparams, params, vals);
844 t4vf_query_params(struct adapter *adapter, unsigned int nparams, const u32 *params, u32 *vals) argument
851 t4vf_set_params(struct adapter *adapter, unsigned int nparams, const u32 *params, const u32 *vals) argument
H A Dt4_hw.c7650 * @nparams: the number of parameters
7659 unsigned int vf, unsigned int nparams, const u32 *params,
7666 if (nparams > 7)
7676 for (i = 0; i < nparams; i++) {
7685 for (i = 0, p = &c.param[0].val; i < nparams; i++, p += 2)
7691 unsigned int vf, unsigned int nparams, const u32 *params,
7694 return t4_query_params_rw(adap, mbox, pf, vf, nparams, params, val, 0);
7703 * @nparams: the number of parameters
7713 unsigned int nparams, const u32 *params,
7719 if (nparams >
7658 t4_query_params_rw(struct adapter *adap, unsigned int mbox, unsigned int pf, unsigned int vf, unsigned int nparams, const u32 *params, u32 *val, int rw) argument
7690 t4_query_params(struct adapter *adap, unsigned int mbox, unsigned int pf, unsigned int vf, unsigned int nparams, const u32 *params, u32 *val) argument
7711 t4_set_params_timeout(struct adapter *adap, unsigned int mbox, unsigned int pf, unsigned int vf, unsigned int nparams, const u32 *params, const u32 *val, int timeout) argument
7750 t4_set_params(struct adapter *adap, unsigned int mbox, unsigned int pf, unsigned int vf, unsigned int nparams, const u32 *params, const u32 *val) argument
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dldebug.c115 int nparams = clLvalue(ci->func)->p->numparams; local
116 if (n >= ci->u.l.base - ci->func - nparams)
119 *pos = ci->func + nparams + n;
244 ar->nparams = 0;
248 ar->nparams = f->l.p->numparams;
H A Dlparser.c762 int nparams = 0; local
769 nparams++;
781 adjustlocalvars(ls, nparams);
825 int base, nparams; local
854 nparams = LUA_MULTRET; /* open call */
858 nparams = fs->freereg - (base+1);
860 init_exp(f, VCALL, luaK_codeABC(fs, OP_CALL, base, nparams+1, 2));
H A Dlua.h408 unsigned char nparams;/* (u) number of parameters */ member in struct:lua_Debug
/freebsd-11-stable/contrib/lua/src/
H A Dldebug.c135 int nparams = clLvalue(ci->func)->p->numparams; local
136 if (n >= cast_int(ci->u.l.base - ci->func) - nparams)
139 *pos = ci->func + nparams + n;
279 ar->nparams = 0;
283 ar->nparams = f->l.p->numparams;
H A Dlparser.c757 int nparams = 0; local
764 nparams++;
776 adjustlocalvars(ls, nparams);
820 int base, nparams; local
849 nparams = LUA_MULTRET; /* open call */
853 nparams = fs->freereg - (base+1);
855 init_exp(f, VCALL, luaK_codeABC(fs, OP_CALL, base, nparams+1, 2));
H A Dldblib.c176 settabsi(L, "nparams", ar.nparams);
H A Dlua.h451 unsigned char nparams;/* (u) number of parameters */ member in struct:lua_Debug
/freebsd-11-stable/sys/dev/cxgbe/tom/
H A Dt4_cpl_io.c116 unsigned int nparams, flowclen, paramidx; local
127 nparams = 8;
129 nparams = 6;
131 nparams++;
133 nparams++;
137 nparams++;
140 flowclen = sizeof(*flowc) + nparams * sizeof(struct fw_flowc_mnemval);
151 V_FW_FLOWC_WR_NPARAMS(nparams));
194 KASSERT(paramidx == nparams, ("nparams mismatc
235 int nparams = 1, flowclen, flowclen16; local
[all...]
H A Dt4_listen.c356 const int nparams = 6; local
373 flowclen = sizeof(*flowc) + nparams * sizeof(struct fw_flowc_mnemval);
386 V_FW_FLOWC_WR_NPARAMS(nparams));
/freebsd-11-stable/sys/dev/cxgbe/cxgbei/
H A Dicl_cxgbei.c551 const u_int nparams = 1; local
555 flowclen = sizeof(*flowc) + nparams * sizeof(struct fw_flowc_mnemval);
566 V_FW_FLOWC_WR_NPARAMS(nparams));
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DMveEmitter.cpp411 unsigned nparams = 0; member in struct:__anon961::CodeGenParamAllocator
419 ParamNumber = nparams++;
423 int MapValue = (*ParamNumberMap)[nparams++];
/freebsd-11-stable/contrib/binutils/binutils/
H A Dsrconv.c722 dfp.nparams = type->u.function.parameters->nvars;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp10798 unsigned nparams = FTP->getNumParams(); local
10799 assert(FD->getNumParams() == nparams);
10801 bool HasExtraParameters = (nparams > 3);
10812 if (nparams == 4 && Context.getTargetInfo().getTriple().isOSDarwin())
10816 Diag(FD->getLocation(), diag::err_main_surplus_args) << nparams;
10818 nparams = 3;
10828 for (unsigned i = 0; i < nparams; ++i) {
10859 if (nparams == 1 && !FD->isInvalidDecl()) {

Completed in 509 milliseconds