high              974 Source/core/html/HTMLMediaElement.cpp             double cueEndTime = potentiallySkippedCues[i].high();
high              133 Source/core/html/HTMLMeterElement.cpp     double high = getFloatingPointAttribute(highAttr, max());
high              134 Source/core/html/HTMLMeterElement.cpp     return std::min(std::max(high, low()), max());
high              137 Source/core/html/HTMLMeterElement.cpp void HTMLMeterElement::setHigh(double high, ExceptionState& exceptionState)
high              139 Source/core/html/HTMLMeterElement.cpp     if (!std::isfinite(high)) {
high              140 Source/core/html/HTMLMeterElement.cpp         exceptionState.throwTypeError(ExceptionMessages::notAFiniteNumber(high));
high              143 Source/core/html/HTMLMeterElement.cpp     setFloatingPointAttribute(highAttr, high);
high              164 Source/core/html/HTMLMeterElement.cpp     double highValue = high();
high               54 Source/core/html/HTMLMeterElement.h     double high() const;
high              477 Source/core/rendering/FloatingObjects.cpp     if (floatingObject->type() != FloatTypeValue || !rangesIntersect(interval.low(), interval.high(), m_lineTop, m_lineBottom))
high              483 Source/core/rendering/FloatingObjects.cpp     ASSERT(interval.high() == m_renderer->pixelSnappedLogicalBottomForFloat(floatingObject));
high              641 Source/core/rendering/RenderFlowThread.cpp     if (interval.low() <= m_offset && interval.high() > m_offset)
high              128 Source/platform/Decimal.cpp     UInt128(uint64_t low, uint64_t high)
high              129 Source/platform/Decimal.cpp         : m_high(high), m_low(low)
high              143 Source/platform/Decimal.cpp     static uint64_t makeUInt64(uint32_t low, uint32_t high) { return low | (static_cast<uint64_t>(high) << 32); }
high              428 Source/platform/Decimal.cpp         while (work.high()) {
high              410 Source/platform/LayoutUnit.h     int32_t high = static_cast<int32_t>(result >> 32);
high              414 Source/platform/LayoutUnit.h     if (high != low >> 31)
high               84 Source/platform/PODInterval.h     PODInterval(const T& low, const T& high)
high               86 Source/platform/PODInterval.h         , m_high(high)
high               88 Source/platform/PODInterval.h         , m_maxHigh(high)
high               93 Source/platform/PODInterval.h     PODInterval(const T& low, const T& high, const UserData data)
high               95 Source/platform/PODInterval.h         , m_high(high)
high               97 Source/platform/PODInterval.h         , m_maxHigh(high)
high              102 Source/platform/PODInterval.h     const T& high() const { return m_high; }
high              105 Source/platform/PODInterval.h     bool overlaps(const T& low, const T& high) const
high              107 Source/platform/PODInterval.h         if (this->high() < low)
high              109 Source/platform/PODInterval.h         if (high < this->low())
high              116 Source/platform/PODInterval.h         return overlaps(other.low(), other.high());
high              130 Source/platform/PODInterval.h         return (low() == other.low() && high() == other.high() && data() == other.data());
high              144 Source/platform/PODInterval.h         builder.append(ValueToString<T>::string(high()));
high              116 Source/platform/PODIntervalTree.h         IntervalSearchAdapterType adapter(result, interval.low(), interval.high());
high              129 Source/platform/PODIntervalTree.h     static IntervalType createInterval(const T& low, const T& high, const UserData data = 0)
high              131 Source/platform/PODIntervalTree.h         return IntervalType(low, high, data);
high              188 Source/platform/PODIntervalTree.h         const T* curMax = &node->data().high();
high              226 Source/platform/PODIntervalTree.h                 *currentMaxValue = node->data().high();
high              227 Source/platform/PODIntervalTree.h             return (node->data().high() == node->data().maxHigh());
high              238 Source/platform/PODIntervalTree.h         if (localMaxValue < node->data().high())
high              239 Source/platform/PODIntervalTree.h             localMaxValue = node->data().high();
high               73 Source/platform/PODIntervalTreeTest.cpp     EXPECT_EQ(4, result[0].high());
high               86 Source/platform/PODIntervalTreeTest.cpp     EXPECT_EQ(4, result[0].high());
high              677 Source/platform/audio/VectorMath.cpp         float32x4_t high = vdupq_n_f32(highThreshold);
high              680 Source/platform/audio/VectorMath.cpp             vst1q_f32(destP, vmaxq_f32(vminq_f32(source, high), low));
high              636 Source/platform/text/BidiResolver.h             UChar high = static_cast<UChar>(current);
high              643 Source/platform/text/BidiResolver.h             current = U16_GET_SUPPLEMENTARY(high, low);
high              116 Source/wtf/dtoa.cpp static ALWAYS_INLINE uint32_t* storeInc(uint32_t* p, uint16_t high, uint16_t low)
high              120 Source/wtf/dtoa.cpp     p16[0] = high;
high              123 Source/wtf/dtoa.cpp     p16[1] = high;
high              286 Source/wtf/dtoa/bignum.cc         uint64_t high = factor >> 32;
high              289 Source/wtf/dtoa/bignum.cc             uint64_t product_high = high * bigits_[i];
high              388 Source/wtf/dtoa/fast-dtoa.cc                          DiyFp high,
high              392 Source/wtf/dtoa/fast-dtoa.cc         ASSERT(low.e() == w.e() && w.e() == high.e());
high              393 Source/wtf/dtoa/fast-dtoa.cc         ASSERT(low.f() + 1 <= high.f() - 1);
high              408 Source/wtf/dtoa/fast-dtoa.cc         DiyFp too_high = DiyFp(high.f() + unit, high.e());
high               44 Source/wtf/dtoa/fixed-dtoa.cc         UInt128(uint64_t high, uint64_t low) : high_bits_(high), low_bits_(low) { }