| /src/external/gpl3/gcc.old/dist/gcc/d/ |
| expr.cc | 269 Type *tb1 = e->e1->type->toBasetype (); local 272 if ((tb1->ty == TY::Tsarray || tb1->ty == TY::Tarray) 282 else if (tb1->isfloating () && tb1->ty != TY::Tvector) 289 if (!tb1->iscomplex ()) 305 else if (TypeStruct *ts = tb1->isTypeStruct ()) 312 gcc_assert (same_type_p (tb1, tb2)); 333 Type *tb1 = e->e1->type->toBasetype (); local 337 if ((tb1->ty == TY::Tsarray || tb1->ty == TY::Tarray 495 Type *tb1 = e->e1->type->toBasetype (); local 671 Type *tb1 = e->e1->type->toBasetype (); local 823 Type *tb1 = e->e1->type->toBasetype (); local 1073 Type *tb1 = e->e1->type->toBasetype (); local 1232 Type *tb1 = e->e1->type->toBasetype (); local 1354 Type *tb1 = e->e1->type->toBasetype (); local 1442 Type *tb1 = e->e1->type->toBasetype (); local 1928 Type *tb1 = e->e1->type->toBasetype (); local [all...] |
| types.cc | 141 Type *tb1 = t1->toBasetype (); 143 if (tb1 == tb2) 147 if (tb1->ty == tb2->ty && tb1->equivalent (tb2))
|
| /src/external/gpl3/binutils/dist/binutils/ |
| od-xcoff.c | 1301 unsigned int tb1; local 1309 tb1 = bfd_get_32 (abfd, text + i + 4); 1313 (tb1 >> 24) & 0xff, 1314 (tb1 >> 16) & 0xff, 1315 (tb1 >> 15) & 1, 1316 (tb1 >> 14) & 1, 1317 (tb1 >> 13) & 1, 1318 (tb1 >> 12) & 1); 1320 (tb1 >> 11) & 1, 1321 (tb1 >> 10) & 1 [all...] |
| /src/external/gpl3/binutils.old/dist/binutils/ |
| od-xcoff.c | 1301 unsigned int tb1; local 1309 tb1 = bfd_get_32 (abfd, text + i + 4); 1313 (tb1 >> 24) & 0xff, 1314 (tb1 >> 16) & 0xff, 1315 (tb1 >> 15) & 1, 1316 (tb1 >> 14) & 1, 1317 (tb1 >> 13) & 1, 1318 (tb1 >> 12) & 1); 1320 (tb1 >> 11) & 1, 1321 (tb1 >> 10) & 1 [all...] |
| /src/external/bsd/wpa/dist/src/drivers/ |
| driver_nl80211_capa.c | 841 struct nlattr *tb1[NL80211_ATTR_MAX + 1], *attr; local 850 nla_parse(tb1, NL80211_ATTR_MAX, nla_data(attr), 853 if (!tb1[NL80211_ATTR_IFTYPE] || 854 !tb1[NL80211_ATTR_EXT_CAPA] || 855 !tb1[NL80211_ATTR_EXT_CAPA_MASK]) 859 capa->iftype = nla_get_u32(tb1[NL80211_ATTR_IFTYPE]); 864 len = nla_len(tb1[NL80211_ATTR_EXT_CAPA]); 865 capa->ext_capa = os_memdup(nla_data(tb1[NL80211_ATTR_EXT_CAPA]), 874 len = nla_len(tb1[NL80211_ATTR_EXT_CAPA_MASK]); 876 os_memdup(nla_data(tb1[NL80211_ATTR_EXT_CAPA_MASK]) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| expressionsem.d | 10025 Type tb1 = exp.e1.type.nextOf().toBasetype(); 10029 if ((tb1.isintegral() || tb1.isfloating()) && (tb2.isintegral() || tb2.isfloating())) 10112 Type tb1 = exp.e1.type.toBasetype(); 10113 Type tb1next = tb1.nextOf(); 10121 if ((tb1.ty == Tarray) && 10134 else if ((tb1.ty == Tarray) && exp.e2.implicitConvTo(tb1next)) 10156 else if (tb1.ty == Tarray && 10216 exp.error("cannot append type `%s` to type `%s`", tb2.toChars(), tb1.toChars()); 10260 Type tb1 = exp.e1.type.toBasetype() [all...] |
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| getopt.d | 1315 args = ["program.name", "--fb1", "--fb2=true", "--tb1=false"]; 1317 bool tb1 = true; 1318 getopt(args, "fb1", &fb1, "fb2", &fb2, "tb1", &tb1); 1319 assert(fb1 && fb2 && !tb1);
|