| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | argtypes.c | 237 if (t1->isfloating()) in toArgTypes() 239 if (!t2->isfloating()) in toArgTypes() 242 else if (t2->isfloating()) in toArgTypes() 438 if (t1->isfloating() && t2->isfloating()) in toArgTypes() 446 else if (t1->isfloating()) in toArgTypes() 448 else if (t2->isfloating()) in toArgTypes()
|
| H A D | mtype.h | 256 virtual bool isfloating(); // real, imaginary, or complex 402 bool isfloating() /*const*/; 432 bool isfloating(); 823 bool isfloating();
|
| H A D | constfold.c | 342 if (type->isfloating()) in Mul() 394 if (type->isfloating()) in Div() 475 if (type->isfloating()) in Mod() 581 else if (e1->type->isfloating()) in Pow() 621 else if (e2->type->isfloating()) in Pow() 1161 if (e1->type->isfloating()) in Cast()
|
| H A D | clone.c | 383 if (tv->isfloating()) in needOpEquals() 688 if (tv->isfloating()) in needToHash()
|
| H A D | denum.c | 722 if (e->type->isfloating()) in semantic()
|
| H A D | expressionsem.c | 6321 if ( (tb1->isintegral() || tb1->isfloating()) && in visit() 6322 (tb2->isintegral() || tb2->isfloating())) in visit() 6334 if ((exp->e1->type->isintegral() || exp->e1->type->isfloating()) && in visit() 6335 (exp->e2->type->isintegral() || exp->e2->type->isfloating())) in visit() 6837 if (exp->type->isfloating()) in visit() 6938 if (exp->type->isfloating()) in visit() 7044 if (exp->type->isfloating()) in visit() 7818 if (!t1->isfloating()) in visit() 7918 … if (exp->e1->type != exp->e2->type && exp->e1->type->isfloating() && exp->e2->type->isfloating()) in visit() 7975 … if (exp->e1->type != exp->e2->type && exp->e1->type->isfloating() && exp->e2->type->isfloating()) in visit()
|
| H A D | traits.c | 134 bool isTypeArithmetic(Type *t) { return t->isintegral() || t->isfloating(); } in isTypeArithmetic() 135 bool isTypeFloating(Type *t) { return t->isfloating(); } in isTypeFloating()
|
| H A D | ctfeexpr.c | 997 ((from->isintegral() && to->isfloating()) || in isFloatIntPaint() 998 (from->isfloating() && to->isintegral())); in isFloatIntPaint()
|
| H A D | mtype.c | 1689 bool Type::isfloating() in isfloating() function 3565 bool TypeBasic::isfloating() in isfloating() function 3847 bool TypeVector::isfloating() in isfloating() function 3849 return basetype->nextOf()->isfloating(); in isfloating() 7687 bool TypeEnum::isfloating() in isfloating() function 7689 return sym->getMemtype(Loc())->isfloating(); in isfloating()
|
| H A D | expression.c | 2334 if (!type->isintegral() && !type->isfloating()) in checkArithmetic() 5006 if ((type->isintegral() && t2->isfloating())) in checkOpAssignTypes() 5055 assert(global.errors || t2->isfloating()); in checkOpAssignTypes() 5062 if (t2->isfloating()) in checkOpAssignTypes()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/ |
| H A D | d-compiler.cc | 51 else if (expr->type->isfloating ()) in paintAsType() 69 else if (e->type->isfloating ()) in paintAsType()
|
| H A D | d-target.cc | 317 if (type->isfloating ()) in isVectorOpSupported()
|
| H A D | expr.cc | 282 else if (tb1->isfloating () && tb1->ty != TY::Tvector) in visit() 628 code = e->e1->type->isfloating () in visit() 773 code = e->e1->type->isfloating () in visit()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | mtype.h | 243 virtual bool isfloating(); // real, imaginary, or complex 400 bool isfloating() /*const*/; 425 bool isfloating(); 816 bool isfloating();
|
| H A D | constfold.d | 336 if (type.isfloating()) in Mul() 385 if (type.isfloating()) in Div() 460 if (type.isfloating()) in Mod() 550 else if (e1.type.isfloating()) in Pow() 587 else if (e2.type.isfloating()) in Pow() 1095 if (e1.type.isfloating()) in Cast()
|
| H A D | clone.d | 429 if (tvbase.isfloating()) in needOpEquals() 755 if (tvbase.isfloating()) in needToHash()
|
| H A D | mtype.d | 983 bool isfloating() in isfloating() function 3328 override bool isfloating() const in isfloating() function 3531 override bool isfloating() in isfloating() function 3533 return basetype.nextOf().isfloating(); in isfloating() 6022 override bool isfloating() in isfloating() function 6024 return memType().isfloating(); in isfloating()
|
| H A D | traits.d | 547 return isTypeX(t => t.isintegral() || t.isfloating()); in semanticTraits() 551 return isTypeX(t => t.isfloating()); in semanticTraits()
|
| H A D | dcast.d | 1496 if ((typeb.isintegral() || typeb.isfloating()) && in cimplicitConvTo() 1497 (tb.isintegral() || tb.isfloating())) in cimplicitConvTo() 1596 const(bool) tob_isA = ((tob.isintegral() || tob.isfloating()) && tob.ty != Tvector); in visit() 1597 const(bool) t1b_isA = ((t1b.isintegral() || t1b.isfloating()) && t1b.ty != Tvector); in visit()
|
| H A D | expressionsem.d | 10029 if ((tb1.isintegral() || tb1.isfloating()) && (tb2.isintegral() || tb2.isfloating())) in visit() 10041 …((exp.e1.type.isintegral() || exp.e1.type.isfloating()) && (exp.e2.type.isintegral() || exp.e2.typ… in visit() 10730 if (exp.type.isfloating()) in visit() 10830 if (exp.type.isfloating()) in visit() 10936 if (exp.type.isfloating()) in visit() 11760 if (exp.e1.type != exp.e2.type && exp.e1.type.isfloating() && exp.e2.type.isfloating()) in visit() 11850 if (exp.e1.type != exp.e2.type && exp.e1.type.isfloating() && exp.e2.type.isfloating()) in visit()
|
| H A D | ctfeexpr.d | 1001 …return from.size() == to.size() && (from.isintegral() && to.isfloating() || from.isfloating() && t… in isFloatIntPaint()
|
| H A D | optimize.d | 1038 if (e.e1.type.isfloating() || cast(sinteger_t)e.e2.toInteger() >= 0) in Expression_optimize()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/ |
| H A D | d-frontend.cc | 459 else if (expr->type->isfloating ()) in paintAsType() 477 else if (e->type->isfloating ()) in paintAsType()
|
| H A D | d-target.cc | 300 if (type->isfloating ()) in isVectorOpSupported()
|
| H A D | expr.cc | 278 else if (tb1->isfloating () && tb1->ty != Tvector) in visit() 642 code = e->e1->type->isfloating () in visit() 787 code = e->e1->type->isfloating () in visit()
|