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

  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
ieee754.h 38 uint64_t Significand() const { return u_ & kSignificandMask; }
41 bool IsNan() const { return (u_ & kExponentMask) == kExponentMask && Significand() != 0; }
42 bool IsInf() const { return (u_ & kExponentMask) == kExponentMask && Significand() == 0; }
43 bool IsNormal() const { return (u_ & kExponentMask) != 0 || Significand() == 0; }
46 uint64_t IntegerSignificand() const { return IsNormal() ? Significand() | kHiddenBit : Significand(); }
  /external/v8/src/
double.h 39 return DiyFp(Significand(), Exponent());
45 uint64_t f = Significand();
67 if (Sign() < 0 && Significand() == 0) {
87 uint64_t Significand() const {
89 uint64_t significand = d64 & kSignificandMask; local
91 return significand + kHiddenBit;
93 return significand;
125 return DiyFp(Significand() * 2 + 1, Exponent() - 1);
157 // Returns the significand size for a given order of magnitude.
162 // zeroes and their effective significand-size is hence smaller
180 uint64_t significand = diy_fp.f(); local
    [all...]
  /external/llvm/include/llvm/ADT/
APFloat.h 90 /// signed exponent, and the significand as an array of integer parts. After
93 /// significand is set as an explicit integer bit. For denormals the most
96 /// significant bit of the significand set. The sign of zeroes and infinities
97 /// is significant; the exponent and significand of such numbers is not stored,
100 /// significand are deterministic, although not really meaningful, and preserved
105 /// by encoding Signaling NaNs with the first bit of its trailing significand as
539 /// \name Significand operations.
554 /// Return true if the significand excluding the integral bit is all ones.
556 /// Return true if the significand excluding the integral bit is all zeros.
630 /// The significand must be at least one bit wider than the target precision
634 } significand; member in class:llvm::APFloat
    [all...]

Completed in 91 milliseconds