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

  /external/v8/src/
diy-fp.h 16 // with a uint64 significand and an int exponent. Normalized DiyFp numbers will
19 // DiyFp are not designed to contain special doubles (NaN and Infinity).
20 class DiyFp {
24 DiyFp() : f_(0), e_(0) {}
25 DiyFp(uint64_t f, int e) : f_(f), e_(e) {}
31 void Subtract(const DiyFp& other) {
40 static DiyFp Minus(const DiyFp& a, const DiyFp& b) {
41 DiyFp result = a
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
diyfp.h 38 struct DiyFp {
39 DiyFp() {}
41 DiyFp(uint64_t fp, int exp) : f(fp), e(exp) {}
43 explicit DiyFp(double d) {
61 DiyFp operator-(const DiyFp& rhs) const {
62 return DiyFp(f - rhs.f, e);
65 DiyFp operator*(const DiyFp& rhs) const {
71 return DiyFp(h, e + rhs.e + 64)
    [all...]
  /prebuilts/tools/common/m2/repository/net/sourceforge/htmlunit/htmlunit-core-js/2.14/
htmlunit-core-js-2.14.jar 

Completed in 501 milliseconds