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

  /src/external/gpl3/gcc.old/dist/gcc/d/
expr.cc 270 Type *tb2 = e->e2->type->toBasetype (); local
273 && (tb2->ty == TY::Tsarray || tb2->ty == TY::Tarray))
312 gcc_assert (same_type_p (tb1, tb2));
334 Type *tb2 = e->e2->type->toBasetype (); local
338 && (tb2->ty == TY::Tsarray || tb2->ty == TY::Tarray))
403 if (tb1->ty == TY::Tsarray && tb2->ty == TY::Tsarray)
404 gcc_assert (tb1->size () == tb2->size ());
445 gcc_assert (same_type_p (tb1, tb2));
480 Type *tb2 = e->e2->type->toBasetype (); local
496 Type *tb2 = e->e2->type->toBasetype (); local
672 Type *tb2 = e->e2->type->toBasetype (); local
824 Type *tb2 = e->e2->type->toBasetype (); local
    [all...]
types.cc 142 Type *tb2 = t2->toBasetype (); local
143 if (tb1 == tb2)
147 if (tb1->ty == tb2->ty && tb1->equivalent (tb2))
  /src/external/gpl3/binutils/dist/binutils/
od-xcoff.c 1302 unsigned int tb2; local
1310 tb2 = bfd_get_32 (abfd, text + i + 8);
1332 (tb2 >> 31) & 1,
1333 (tb2 >> 30) & 1,
1334 (tb2 >> 24) & 63,
1335 (tb2 >> 22) & 3,
1336 (tb2 >> 16) & 63);
1338 (tb2 >> 8) & 0xff,
1339 (tb2 >> 1) & 0x7f,
1340 (tb2 >> 0) & 1)
    [all...]
  /src/external/gpl3/binutils.old/dist/binutils/
od-xcoff.c 1302 unsigned int tb2; local
1310 tb2 = bfd_get_32 (abfd, text + i + 8);
1332 (tb2 >> 31) & 1,
1333 (tb2 >> 30) & 1,
1334 (tb2 >> 24) & 63,
1335 (tb2 >> 22) & 3,
1336 (tb2 >> 16) & 63);
1338 (tb2 >> 8) & 0xff,
1339 (tb2 >> 1) & 0x7f,
1340 (tb2 >> 0) & 1)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
expressionsem.d 10026 Type tb2 = exp.e2.type.toBasetype();
10027 if (tb2.ty == Tarray || tb2.ty == Tsarray)
10028 tb2 = tb2.nextOf().toBasetype();
10029 if ((tb1.isintegral() || tb1.isfloating()) && (tb2.isintegral() || tb2.isfloating()))
10114 Type tb2 = exp.e2.type.toBasetype();
10122 (tb2.ty == Tarray || tb2.ty == Tsarray) &
    [all...]
typesem.d 1416 Type tb2 = t.baseElemOf();
1417 if (tb2.ty == Tstruct && !tb2.isTypeStruct().sym.members ||
1418 tb2.ty == Tenum && !tb2.isTypeEnum().sym.memtype)
dsymbolsem.d 1104 Type tb2 = dsym.type.toBasetype();
1126 if (sd.postblit && tb2.toDsymbol(null) == sd)
1130 dsym.error("of type struct `%s` uses `this(this)`, which is not allowed in static initialization", tb2.toChars());
  /src/external/bsd/wpa/dist/src/drivers/
driver_nl80211.c 619 struct nlattr *tb2[CTRL_ATTR_MCAST_GRP_MAX + 1]; local
620 nla_parse(tb2, CTRL_ATTR_MCAST_GRP_MAX, nla_data(mcgrp),
622 if (!tb2[CTRL_ATTR_MCAST_GRP_NAME] ||
623 !tb2[CTRL_ATTR_MCAST_GRP_ID] ||
624 os_strncmp(nla_data(tb2[CTRL_ATTR_MCAST_GRP_NAME]),
626 nla_len(tb2[CTRL_ATTR_MCAST_GRP_NAME])) != 0)
628 res->id = nla_get_u32(tb2[CTRL_ATTR_MCAST_GRP_ID]);
9757 struct nlattr *tb2[NL80211_ATTR_MAX + 1]; local
9760 nla_parse(tb2, NL80211_ATTR_MAX, nla_data(link), nla_len(link),
9763 if (!tb2[NL80211_ATTR_MLO_LINK_ID]
    [all...]

Completed in 46 milliseconds