/third_party/icu/vendor/double-conversion/upstream/double-conversion/ |
H A D | diy-fp.h | 45 DiyFp() : f_(0), e_(0) {} in DiyFp() 46 DiyFp(const uint64_t significand, const int32_t exponent) : f_(significand), e_(exponent) {} in DiyFp() 53 DOUBLE_CONVERSION_ASSERT(e_ == other.e_); in Subtract() 85 e_ += other.e_ + 64; in Multiply() 99 int32_t exponent = e_; in Normalize() 113 e_ = exponent; in Normalize() 123 int32_t e() const { return e_; } in e() 126 void set_e(int32_t new_value) { e_ in set_f() 132 int32_t e_; global() member in double_conversion::DiyFp [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | double-conversion-diy-fp.h | 59 DiyFp() : f_(0), e_(0) {} in DiyFp() 60 DiyFp(const uint64_t significand, const int32_t exponent) : f_(significand), e_(exponent) {} in DiyFp() 67 DOUBLE_CONVERSION_ASSERT(e_ == other.e_); in Subtract() 99 e_ += other.e_ + 64; in Multiply() 113 int32_t exponent = e_; in Normalize() 127 e_ = exponent; in Normalize() 137 int32_t e() const { return e_; } in e() 140 void set_e(int32_t new_value) { e_ in set_f() 146 int32_t e_; global() member in double_conversion::DiyFp [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | double-conversion-diy-fp.h | 59 DiyFp() : f_(0), e_(0) {} in DiyFp() 60 DiyFp(const uint64_t significand, const int32_t exponent) : f_(significand), e_(exponent) {} in DiyFp() 67 DOUBLE_CONVERSION_ASSERT(e_ == other.e_); in Subtract() 99 e_ += other.e_ + 64; in Multiply() 113 int32_t exponent = e_; in Normalize() 127 e_ = exponent; in Normalize() 137 int32_t e() const { return e_; } in e() 140 void set_e(int32_t new_value) { e_ in set_f() 146 int32_t e_; global() member in double_conversion::DiyFp [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | double-conversion-diy-fp.h | 59 DiyFp() : f_(0), e_(0) {} in DiyFp() 60 DiyFp(const uint64_t significand, const int32_t exponent) : f_(significand), e_(exponent) {} in DiyFp() 67 DOUBLE_CONVERSION_ASSERT(e_ == other.e_); in Subtract() 99 e_ += other.e_ + 64; in Multiply() 113 int32_t exponent = e_; in Normalize() 127 e_ = exponent; in Normalize() 137 int32_t e() const { return e_; } in e() 140 void set_e(int32_t new_value) { e_ in set_f() 146 int32_t e_; global() member in double_conversion::DiyFp [all...] |
/third_party/node/deps/v8/src/base/numbers/ |
H A D | diy-fp.h | 25 DiyFp() : f_(0), e_(0) {} in DiyFp() 26 DiyFp(uint64_t f, int e) : f_(f), e_(e) {} in DiyFp() 33 DCHECK(e_ == other.e_); in Subtract() 60 int e = e_; in Normalize() 74 e_ = e; in Normalize() 84 int e() const { return e_; } in e() 87 void set_e(int new_value) { e_ = new_value; } in set_e() 93 int e_; member in v8::base::DiyFp
|
H A D | diy-fp.cc | 31 e_ += other.e_ + 64; in Multiply()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/ |
H A D | UnittestImportPublicProto3.cs | 70 e_ = other.e_; in PublicImportMessage() 81 private int e_; field in Google.Protobuf.TestProtos.PublicImportMessage 84 get { return e_; } 86 e_ = value;
|
H A D | UnittestImportPublic.cs | 71 e_ = other.e_; in PublicImportMessage() 84 private int e_; field in Google.Protobuf.TestProtos.Proto2.PublicImportMessage 87 get { if ((_hasBits0 & 1) != 0) { return e_; } else { return EDefaultValue; } } 90 e_ = value;
|
/third_party/libevdev/test/ |
H A D | test-common.h | 47 #define assert_event(e_, t, c, v) \ 49 const struct input_event *e = (e_); \
|
/third_party/python/Lib/test/ |
H A D | test_sys.py | 87 except Exception as e_: 88 e = e_ 102 except Exception as e_: 103 e = e_ 117 except Exception as e_: 118 e = e_ 130 except Exception as e_: 131 e = e_
|
/third_party/json/include/nlohmann/detail/conversions/ |
H A D | to_chars.hpp | 64 constexpr diyfp(std::uint64_t f_, int e_) noexcept : f(f_), e(e_) {} in e() 250 // Determine w- = m- such that e_(w-) = e_(w+). in compute_boundaries()
|
/third_party/json/tests/abi/include/nlohmann/ |
H A D | json_v3_10_5.hpp | 14999 constexpr diyfp(std::uint64_t f_, int e_) noexcept : f(f_), e(e_) {} 15185 // Determine w- = m- such that e_(w-) = e_(w+).
|