HomeSort by: relevance | last modified time | path
    Searched refs:tup (Results 1 - 22 of 22) sorted by relevancy

  /src/external/bsd/ipf/dist/lib/
printtunable.c 14 printtunable(tup)
15 ipftune_t *tup;
18 tup->ipft_name, tup->ipft_min, tup->ipft_max);
19 if (tup->ipft_sz == sizeof(u_long))
20 PRINTF("%lu\n", tup->ipft_vlong);
21 else if (tup->ipft_sz == sizeof(u_int))
22 PRINTF("%u\n", tup->ipft_vint);
23 else if (tup->ipft_sz == sizeof(u_short)
    [all...]
  /src/external/gpl3/gcc/dist/contrib/header-tools/
count-headers 45 l.sort (key=lambda tup:tup[0], reverse=True)
graph-header-logs 182 depcount.sort(key=lambda tup:tup[2])
  /src/external/gpl3/gcc.old/dist/contrib/header-tools/
count-headers 45 l.sort (key=lambda tup:tup[0], reverse=True)
graph-header-logs 182 depcount.sort(key=lambda tup:tup[2])
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
argtypes.c 375 TypeTuple *tup = toArgTypes(f->type); local
376 if (!tup)
378 size_t dim = tup->arguments->dim;
384 ft1 = (*tup->arguments)[0]->type;
385 ft2 = (*tup->arguments)[1]->type;
389 ft1 = (*tup->arguments)[0]->type;
391 ft2 = (*tup->arguments)[0]->type;
traits.d 1208 auto tup = new TupleExp(e.loc, exps);
1209 return tup.expressionSemantic(scx);
1300 auto tup = new TupleExp(e.loc, exps);
1301 return tup.expressionSemantic(sc);
1329 auto tup = new TupleExp(e.loc, mods);
1330 return tup.expressionSemantic(sc);
1501 auto tup = new TupleExp(e.loc, exps);
1502 return tup.expressionSemantic(sc);
1976 auto tup = new TupleExp(e.loc, exps);
1977 return tup.expressionSemantic(sc)
    [all...]
typesem.d 94 private Expression semanticLength(Scope* sc, TupleDeclaration tup, Expression exp)
96 ScopeDsymbol sym = new ArrayScopeSymbol(sc, tup);
123 auto tup = s.isTupleDeclaration();
129 if (!tup)
154 eindex = semanticLength(sc, tup, eindex);
162 if (d >= tup.objects.dim)
164 .error(loc, "tuple index `%llu` exceeds length %llu", d, cast(ulong)tup.objects.dim);
169 RootObject o = (*tup.objects)[cast(size_t)d];
728 if (auto tup = s ? s.isTupleDeclaration() : null)
730 mtype.dim = semanticLength(sc, tup, mtype.dim)
    [all...]
expressionsem.d 969 if (TupleDeclaration tup = s.isTupleDeclaration())
971 if (tup.needThis() && hasThis(sc))
972 e = new DotVarExp(loc, new ThisExp(loc), tup);
974 e = new TupleExp(loc, tup);
2416 auto tup = new TypeTuple(args);
2417 Expression e = (new TypeidExp(loc, tup)).expressionSemantic(sc);
5469 Tuple tup = isTuple(tded);
5470 if (tup)
5471 s = new TupleDeclaration(e.loc, e.id, &tup.objects);
5476 /* The reason for the !tup is unclear. It fails Phobos unittests if it is not there
    [all...]
dtemplate.d 3940 TemplateTupleParameter tup = tx.isTemplateTupleParameter();
3941 if (tup && tup.ident.equals(tid.ident))
3956 Tuple tup = isTuple(o);
3957 if (!tup || tup.objects.dim != tuple_dim)
3965 if (!arg.type.equals(tup.objects[i]))
3975 auto tup = new Tuple(tuple_dim);
3979 tup.objects[i] = arg.type;
3981 (*dedtypes)[tupi] = tup;
    [all...]
dsymbolsem.d 2869 TupleExp tup = name ? null : resolved.isTupleExp();
2870 if (!tup && !name)
2890 foreach (i, exp; *tup.exps)
4816 if (auto tup = tb.isTypeTuple())
4819 size_t dim = Parameter.dim(tup.arguments);
4822 Parameter arg = Parameter.getNth(tup.arguments, j);
5455 if (auto tup = tb.isTypeTuple())
5458 size_t dim = Parameter.dim(tup.arguments);
5461 Parameter arg = Parameter.getNth(tup.arguments, j);
6816 if (auto tup = v.aliassym.isTupleDeclaration()
    [all...]
dtoh.d 1674 override void visit(AST.TupleDeclaration tup)
1676 debug (Debug_DtoH) mixin(traceVisit!tup);
1678 tup.foreachVar((s) { s.accept(this); });
dinterpret.d 138 auto tup = e.isTupleExp();
139 if (!tup)
146 foreach (i, g; *tup.exps)
153 expsx = tup.exps.copy();
expression.d 2819 * alias Tup = AliasSeq!(3, int, "abc");
2850 extern (D) this(const ref Loc loc, TupleDeclaration tup)
2855 this.exps.reserve(tup.objects.dim);
2856 foreach (o; *tup.objects)
  /src/external/gpl3/gdb.old/dist/gdb/
ctfread.c 1540 struct ctf_per_tu_data *tup, const char *fname)
1542 struct objfile *of = tup->of;
1551 ctf_psymtab *pst = create_partial_symtab (fname, tup->arc, cfp,
1580 struct ctf_per_tu_data *tup = (struct ctf_per_tu_data *) arg; local
1581 ctf_dict_t *parent = tup->fp;
1592 psymtab_storage *pss = tup->psf->get_partial_symtabs ().get ();
1593 scan_partial_symbols (ctf, pss, tup, name);
  /src/external/gpl3/gdb/dist/gdb/
ctfread.c 1540 struct ctf_per_tu_data *tup, const char *fname)
1542 struct objfile *of = tup->of;
1551 ctf_psymtab *pst = create_partial_symtab (fname, tup->arc, cfp,
1580 struct ctf_per_tu_data *tup = (struct ctf_per_tu_data *) arg; local
1581 ctf_dict_t *parent = tup->fp;
1592 psymtab_storage *pss = tup->psf->get_partial_symtabs ().get ();
1593 scan_partial_symbols (ctf, pss, tup, name);
  /src/external/gpl3/gdb.old/dist/gdb/python/
py-breakpoint.c 1646 gdbpy_ref<> tup (PyTuple_New (2));
1647 if (tup == nullptr)
1657 if (PyTuple_SetItem (tup.get (), 0, filename.release ()) == -1
1658 || PyTuple_SetItem (tup.get (), 1, line.release ()) == -1)
1660 return tup.release ();
  /src/external/gpl3/gdb/dist/gdb/python/
py-breakpoint.c 1665 gdbpy_ref<> tup (PyTuple_New (2));
1666 if (tup == nullptr)
1674 if (PyTuple_SetItem (tup.get (), 0, filename.release ()) == -1
1675 || PyTuple_SetItem (tup.get (), 1, line.release ()) == -1)
1677 return tup.release ();
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
typecons.d 95 auto tup = tuple!("x", "y", "z")(2, 3, 4);
96 assert(tup.y == 3);
688 auto tup = ISD(1, "test", 3.2);
689 assert(tup.toString() == `Tuple!(int, string, double)(1, "test", 3.2)`);
1058 const tup = Tuple!(int, "a", int, "b")(2, 3);
1059 const renamed = tup.rename!("c", "d");
1655 auto tup = t.expand;
1656 result.expand = Reverse!tup;
1663 auto tup = tuple(1, "2");
1664 assert(tup.reverse == tuple("2", 1))
    [all...]
path.d 3014 auto tup = mismatch!((a, b) => filenameCmp!cs(a, b) == 0)(basePS, pathPS);
3015 basePS = tup[0];
3016 pathPS = tup[1];
traits.d 1303 alias tup = ParameterStorageClassTuple!(__traits(getOverloads, Foo, "opAssign")[0]);
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/range/
package.d 4825 foreach (tup; zip(a, b))
4827 result ~= tup[0].to!string ~ tup[1];

Completed in 76 milliseconds