Home | History | Annotate | Download | only in dtoa

Lines Matching refs:d64_

51         Double() : d64_(0) {}
52 explicit Double(double d) : d64_(double_to_uint64(d)) {}
53 explicit Double(uint64_t d64) : d64_(d64) {}
55 : d64_(DiyFpToUint64(diy_fp)) {}
84 return d64_;
89 if (d64_ == kInfinity) return Double(kInfinity).value();
95 return Double(d64_ - 1).value();
97 return Double(d64_ + 1).value();
184 double value() const { return uint64_to_double(d64_); }
215 const uint64_t d64_;