HomeSort by: relevance | last modified time | path
    Searched defs:nparams (Results 1 - 19 of 19) sorted by relevancy

  /src/usr.bin/tput/
tput.c 149 int i, nparams, piss[TPARM_MAX]; local
156 nparams = _ti_parm_analyse(str, piss, TPARM_MAX);
161 for (i = 0; i < nparams; i++) {
163 errx(2, errfew, nparams, cap);
181 #define p(i) (i <= nparams ? \
  /src/external/gpl3/gdb/dist/gdb/
buildsym.c 255 int nparams = 0, iparams; local
262 nparams++;
264 if (nparams > 0)
266 ftype->alloc_fields (nparams);
273 if (iparams == nparams)
mdebugread.c 1200 int nparams = top_stack->numargs;
1203 if (nparams > 0)
1205 ftype->alloc_fields (nparams);
1210 if (iparams == nparams)
1193 int nparams = top_stack->numargs; local
stabsread.c 3458 int nparams = 0;
3489 ftype->field (nparams).set_type (ptype);
3490 ftype->field (nparams).set_is_artificial (false);
3491 nparams++;
3493 ftype->set_num_fields (nparams);
3455 int nparams = 0; local
  /src/external/gpl3/gdb.old/dist/gdb/
buildsym.c 255 int nparams = 0, iparams; local
262 nparams++;
264 if (nparams > 0)
266 ftype->alloc_fields (nparams);
273 if (iparams == nparams)
mdebugread.c 1200 int nparams = top_stack->numargs;
1203 if (nparams > 0)
1205 ftype->alloc_fields (nparams);
1210 if (iparams == nparams)
1193 int nparams = top_stack->numargs; local
stabsread.c 973 int nparams = 0;
1004 ftype->field (nparams).set_type (ptype);
1005 ftype->field (nparams).set_is_artificial (false);
1006 nparams++;
1008 ftype->set_num_fields (nparams);
970 int nparams = 0; local
  /src/share/examples/puffs/pgfs/
pgfs_db.c 215 unsigned int nparams; member in struct:cmd
234 c->nparams = 0;
238 c->nparams++;
241 c->paramtypes = emalloc(c->nparams * sizeof(*c->paramtypes));
242 for (i = 0; i < c->nparams; i++) {
322 ret = PQsendPrepare(conn, c->name, c->cmd, c->nparams, c->paramtypes);
359 paramvalues = emalloc(c->nparams * sizeof(*paramvalues));
363 for (i = 0; i < c->nparams; i++) {
413 emalloc(c->nparams * sizeof(*paramformats));
417 c->nparams * sizeof(*paramformats))
    [all...]
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
MveEmitter.cpp 420 unsigned nparams = 0; member in struct:__anon3610::CodeGenParamAllocator
428 ParamNumber = nparams++;
432 int MapValue = (*ParamNumberMap)[nparams++];
  /src/external/mit/lua/dist/src/
lua.h 509 unsigned char nparams;/* (u) number of parameters */ member in struct:lua_Debug
lparser.c 957 static void setvararg (FuncState *fs, int nparams) {
959 luaK_codeABC(fs, OP_VARARGPREP, nparams, 0, 0);
967 int nparams = 0; local
974 nparams++;
986 adjustlocalvars(ls, nparams);
1032 int base, nparams; local
1062 nparams = LUA_MULTRET; /* open call */
1066 nparams = fs->freereg - (base+1);
1068 init_exp(f, VCALL, luaK_codeABC(fs, OP_CALL, base, nparams+1, 2));
  /src/external/bsd/pcc/dist/pcc/cc/cxxcom/
pftn.c 110 static int nparams; variable
583 if (nparams == 1 && lparam->sym && lparam->sym->stype == VOID)
590 nparams++;
596 if (nparams != 0)
597 parr = tmpalloc(sizeof(struct symtab *) * nparams);
599 if (nparams)
625 alb = al2 = tmpalloc(sizeof(union arglist) * nparams * 3 + 1);
626 for (i = 0; i < nparams; i++) {
644 if (oldstyle && nparams) {
647 for (i = 0; i < nparams; i++)
    [all...]
  /src/external/bsd/unbound/dist/sldns/
str2wire.c 641 size_t nparams = 0, i; local
652 svcparams[nparams] = rdata_ptr;
664 nparams += 1;
665 if (nparams >= MAX_NUMBER_OF_SVCPARAMS)
675 ,nparams
694 for(i=0; i < nparams; i++) {
696 if(i + 1 < nparams && key == sldns_read_uint16(svcparams[i+1]))
718 for(j=0; j < nparams; j++) {
732 for (i = 0; i < nparams; i++) {
  /src/external/gpl3/gcc.old/dist/gcc/d/
d-codegen.cc 2193 const size_t nparams = tf->parameterList.length (); local
2203 if (i - varargs < nparams && i >= varargs)
  /src/external/bsd/pcc/dist/pcc/cc/ccom/
pftn.c 122 static int nparams; variable
618 if (nparams == 1 && lparam->sym && lparam->sym->stype == VOID)
625 if (nparams != 0)
626 parr = FUNALLO(sizeof(struct symtab *) * nparams);
628 if (nparams)
656 alb = al2 = FUNALLO(sizeof(union arglist) * nparams * 3 + 1);
657 for (i = 0; i < nparams; i++) {
676 if (oldstyle && nparams) {
679 for (i = 0; i < nparams; i++) {
689 bfcode(parr, nparams);
    [all...]
  /src/sys/dev/wscons/
wsconsio.h 288 unsigned int nparams; member in struct:wsmouse_parameters
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp 11152 unsigned nparams = FTP->getNumParams(); local
11153 assert(FD->getNumParams() == nparams);
11155 bool HasExtraParameters = (nparams > 3);
11166 if (nparams == 4 && Context.getTargetInfo().getTriple().isOSDarwin())
11170 Diag(FD->getLocation(), diag::err_main_surplus_args) << nparams;
11172 nparams = 3;
11182 for (unsigned i = 0; i < nparams; ++i) {
11213 if (nparams == 1 && !FD->isInvalidDecl()) {
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
read.c 10332 int nparams;
10353 nparams = 0;
10367 nparams++;
10373 sizeof (*call_site) + sizeof (call_site->parameter[0]) * nparams))
10538 gdb_assert (call_site->parameter_count < nparams);
12358 int nparams = this_type->num_fields ();
12374 if (nparams == 0 || this_type->field (0).is_artificial () == 0)
14852 int nparams, iparams;
14857 nparams = 0;
14862 nparams++
10323 int nparams; local
12349 int nparams = this_type->num_fields (); local
14843 int nparams, iparams; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
read.c 10215 int nparams;
10252 nparams = 0;
10266 nparams++;
10272 sizeof (*call_site) + sizeof (call_site->parameter[0]) * nparams))
10429 gdb_assert (call_site->parameter_count < nparams);
12099 int nparams = this_type->num_fields ();
12115 if (nparams == 0 || this_type->field (0).is_artificial () == 0)
14596 int nparams, iparams;
14601 nparams = 0;
14606 nparams++
10206 int nparams; local
12090 int nparams = this_type->num_fields (); local
14587 int nparams, iparams; local
    [all...]

Completed in 119 milliseconds