Lines Matching refs:int64
208 (int64)floor(minValue * factor) : in setConstraints()
209 (int64)ceil(minValue * factor); in setConstraints()
212 (int64)floor(maxValue * factor) : in setConstraints()
213 (int64)ceil(maxValue * factor); in setConstraints()
274 int64 fixed = (int64)(value * scaleFactor); in setValue()
372 int64 offset) in offsetSegmentValue()
379 int64 segmentFactor = (int64)pow(10, fFractionalDigits + segment->scaleFactor()); in offsetSegmentValue()
381 int64 value = _ValueFixed(); in offsetSegmentValue()
549 int64
555 int64 acc = 0LL; in _ValueFixed()
557 int64 scaleBase = fFractionalDigits; in _ValueFixed()
574 acc += digitSegment->value() * (int64)pow(10, in _ValueFixed()
589 NumericValControl::_SetValueFixed(int64 fixed) in _SetValueFixed()
601 int64 scaleBase = fFractionalDigits; in _SetValueFixed()
619 int64 hiCut = fixed % (int64)pow(10, in _SetValueFixed()
626 int64 segmentValue = hiCut / (int64)pow(10, in _SetValueFixed()