Home | History | Annotate | Download | only in c.math

Lines Matching full:isnormal

61 Ambiguous isnormal(Ambiguous){ return Ambiguous(); }
585 #ifdef isnormal
586 #error isnormal defined
588 static_assert((std::is_same<decltype(std::isnormal((float)0)), bool>::value), "");
589 static_assert((std::is_same<decltype(std::isnormal((double)0)), bool>::value), "");
590 static_assert((std::is_same<decltype(std::isnormal(0)), bool>::value), "");
591 static_assert((std::is_same<decltype(std::isnormal((long double)0)), bool>::value), "");
592 static_assert((std::is_same<decltype(isnormal(Ambiguous())), Ambiguous>::value), "");
593 assert(std::isnormal(-1.0) == true);