HomeSort by relevance Sort by last modified time
    Searched defs:kDenormalExponent (Results 1 - 3 of 3) sorted by null

  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
ieee754.h 47 int IntegerExponent() const { return (IsNormal() ? Exponent() : kDenormalExponent) - kSignificandSize; }
62 static const int kDenormalExponent = 1 - kExponentBias;
  /external/v8/src/
double.h 79 if (IsDenormal()) return kDenormalExponent;
138 if (significand_is_zero && v.e() != kDenormalExponent) {
164 if (order >= (kDenormalExponent + kSignificandSize)) {
167 if (order <= kDenormalExponent) return 0;
168 return order - kDenormalExponent;
173 static const int kDenormalExponent = -kExponentBias + 1;
189 if (exponent < kDenormalExponent) {
192 while (exponent > kDenormalExponent && (significand & kHiddenBit) == 0) {
197 if (exponent == kDenormalExponent && (significand & kHiddenBit) == 0) {
  /prebuilts/tools/common/m2/repository/net/sourceforge/htmlunit/htmlunit-core-js/2.14/
htmlunit-core-js-2.14.jar 

Completed in 288 milliseconds