HomeSort by relevance Sort by last modified time
    Searched refs:hi_ (Results 1 - 5 of 5) sorted by null

  /external/tensorflow/tensorflow/core/grappler/costs/
robust_stats.h 28 double hi() const { return hi_; }
35 double hi_; member in class:tensorflow::grappler::RobustStats
robust_stats.cc 84 hi_ = values.back();
  /external/protobuf/src/google/protobuf/stubs/
int128.h 59 UINT128_CONSTEXPR uint128(uint64 bottom); // hi_ = 0
95 // having lo_ first, hi_ last.
98 uint64 hi_; member in class:google::protobuf::uint128
129 inline uint64 Uint128High64(const uint128& v) { return v.hi_; }
144 inline UINT128_CONSTEXPR uint128::uint128() : lo_(0), hi_(0) {}
146 : lo_(bottom), hi_(top) {}
148 : lo_(v.lo), hi_(v.hi) {}
150 : lo_(bottom), hi_(0) {}
153 : lo_(bottom), hi_(0) {}
155 : lo_(bottom), hi_(static_cast<int64>((bottom < 0) ? -1 : 0)) {
    [all...]
int128.cc 85 GOOGLE_LOG(FATAL) << "Division or mod by zero: dividend.hi=" << dividend.hi_
  /external/deqp/framework/common/
tcuInterval.hpp 78 Interval(bool hasNaN_, double lo_, double hi_)
79 : m_hasNaN(hasNaN_), m_lo(lo_), m_hi(hi_), m_warningLo(-TCU_INFINITY), m_warningHi(TCU_INFINITY) {}
81 Interval(bool hasNaN_, double lo_, double hi_, double wlo_, double whi_)
82 : m_hasNaN(hasNaN_), m_lo(lo_), m_hi(hi_), m_warningLo(wlo_), m_warningHi(whi_) {}
102 void warning (double lo_, double hi_)
105 m_warningHi = hi_;

Completed in 141 milliseconds