Home
last modified time | relevance | path

Searched refs:isSubnormal (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/math/
H A Dtraits.d265 bool isSubnormal(X)(X x) @trusted pure nothrow @nogc in isSubnormal() function
317 for (f = 1.0; !isSubnormal(f); f /= 2)
327 for (f = 1.0; !isSubnormal(f); f /= 2) in subnormalTest()
H A Dexponential.d2101 import std.math.traits : isSubnormal;
2130 assert(T.mant_dig > double.mant_dig || isSubnormal(value));
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dmath.d5882 bool isSubnormal(X)(X x) @trusted pure nothrow @nogc
5916 return isSubnormal((cast(double*)&x)[MANTISSA_MSB]);
5932 for (f = 1.0; !isSubnormal(f); f /= 2)