Home
last modified time | relevance | path

Searched refs:INTERPOLATION_RANGE (Results 1 - 4 of 4) sorted by relevance

/foundation/arkui/ui_lite/frameworks/animator/
H A Deasing_equation.cpp67 uint32_t x = INTERPOLATION_RANGE - static_cast<int32_t>(Sqrt(INTERPOLATION_RANGE_SQUARE - t * t)); in CircEaseIn()
79 int32_t t = INTERPOLATION_RANGE - (curTime << INTERPOLATION_RANGE_OFFSET) / durationTime; in CircEaseOut()
116 t = INTERPOLATION_RANGE - t; in CubicEaseOut()
117 int16_t x = INTERPOLATION_RANGE - ((t * t * t) >> (INTERPOLATION_RANGE_OFFSET << 1)); in CubicEaseOut()
163 int32_t t = INTERPOLATION_RANGE - (curTime << INTERPOLATION_RANGE_OFFSET) / durationTime; in QuadEaseOut()
164 int16_t x = INTERPOLATION_RANGE - ((t * t) >> INTERPOLATION_RANGE_OFFSET); in QuadEaseOut()
202 t = INTERPOLATION_RANGE - t; in QuintEaseOut()
205 int16_t x = INTERPOLATION_RANGE - ((t * t * t * t * t) >> (INTERPOLATION_RANGE_OFFSET * 4)); in QuintEaseOut()
/foundation/arkui/ui_lite/frameworks/draw/
H A Ddraw_curve.h30 static constexpr uint16_t INTERPOLATION_RANGE = 1024; member in OHOS::DrawCurve
H A Ddraw_curve.cpp30 for (int16_t t = 1; t <= INTERPOLATION_RANGE; t++) { in DrawCubicBezier()
/foundation/arkui/ui_lite/interfaces/kits/animator/
H A Deasing_equation.h417 static constexpr uint16_t INTERPOLATION_RANGE = 1024; member in OHOS::EasingEquation

Completed in 2 milliseconds