Home | History | Annotate | Download | only in html

Lines Matching refs:m_step

38     , m_step(1)
47 , m_step(stepRange.m_step)
57 , m_step(step.isFinite() ? step : 1)
64 ASSERT(m_step.isFinite());
72 return m_stepDescription.stepValueShouldBe == StepValueShouldBeReal ? m_step / twoPowerOfFloatMantissaBits : Decimal(0);
91 const Decimal clampedValue = roundedValue > m_maximum ? roundedValue - m_step : roundedValue;
141 return base + ((value - base) / m_step).round() * m_step;
157 if (value / twoPowerOfDoubleMantissaBits > m_step)
162 const Decimal remainder = (value - m_step * (value / m_step).round()).abs();
166 return computedAcceptableError < remainder && remainder < (m_step - computedAcceptableError);