Home
last modified time | relevance | path

Searched refs:IsDenormal (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/
Ddouble.h79 if (IsDenormal()) return kDenormalExponent; in Exponent()
90 if (!IsDenormal()) { in Significand()
98 bool IsDenormal() const { in IsDenormal() function
/external/v8/test/cctest/
Dtest-double.cc95 TEST(IsDenormal) { in TEST() argument
97 CHECK(Double(min_double64).IsDenormal()); in TEST()
99 CHECK(Double(bits).IsDenormal()); in TEST()
101 CHECK(!Double(bits).IsDenormal()); in TEST()