Lines Matching refs:tt

156 INT tt;  in _gx_utility_bounce_ease_out()  local
159 tt = 11 * t; in _gx_utility_bounce_ease_out()
160 if (tt < 4 * d) in _gx_utility_bounce_ease_out()
162 tt = tt * tt; in _gx_utility_bounce_ease_out()
165 else if (tt < 8 * d) in _gx_utility_bounce_ease_out()
168 tt = (tt - 6 * d); in _gx_utility_bounce_ease_out()
169 tt = tt * tt + 12 * dd; in _gx_utility_bounce_ease_out()
172 else if (tt < 10 * d) in _gx_utility_bounce_ease_out()
175 tt = tt - 9 * d; in _gx_utility_bounce_ease_out()
176 tt = tt * tt + 15 * dd; in _gx_utility_bounce_ease_out()
182 tt = 2 * tt - 21 * d; in _gx_utility_bounce_ease_out()
183 tt = tt * tt + 63 * dd; in _gx_utility_bounce_ease_out()
187 *return_tt = tt; in _gx_utility_bounce_ease_out()
240 INT tt; in _gx_utility_easing_function_calculate() local
278 _gx_utility_bounce_ease_out(t, d, &tt, &dd); in _gx_utility_easing_function_calculate()
279 tt = dd - tt; in _gx_utility_easing_function_calculate()
280 y = ((end_val - start_val) * tt / dd) + start_val; in _gx_utility_easing_function_calculate()
283 _gx_utility_bounce_ease_out(t, d, &tt, &dd); in _gx_utility_easing_function_calculate()
284 y = ((end_val - start_val) * tt / dd) + start_val; in _gx_utility_easing_function_calculate()
291 _gx_utility_bounce_ease_out(t, d, &tt, &dd); in _gx_utility_easing_function_calculate()
293 y = (end_val - start_val) * tt / dd / 2; in _gx_utility_easing_function_calculate()
299 _gx_utility_bounce_ease_out(t, d, &tt, &dd); in _gx_utility_easing_function_calculate()
300 y = (end_val - start_val) * tt / dd / 2; in _gx_utility_easing_function_calculate()
310 tt = (INT)_gx_utility_math_sqrt((UINT)dd); in _gx_utility_easing_function_calculate()
311 tt = 256 - tt; in _gx_utility_easing_function_calculate()
313 y = ((end_val - start_val) * tt / dd) + start_val; in _gx_utility_easing_function_calculate()
321 tt = (INT)_gx_utility_math_sqrt((UINT)dd); in _gx_utility_easing_function_calculate()
323 y = ((end_val - start_val) * tt / dd) + start_val; in _gx_utility_easing_function_calculate()
333 tt = (INT)_gx_utility_math_sqrt((UINT)dd); in _gx_utility_easing_function_calculate()
334 tt = 256 - tt; in _gx_utility_easing_function_calculate()
343 tt = (INT)_gx_utility_math_sqrt((UINT)dd); in _gx_utility_easing_function_calculate()
344 tt = 256 + tt; in _gx_utility_easing_function_calculate()
347 y = ((end_val - start_val) * tt / dd) + start_val; in _gx_utility_easing_function_calculate()
378 tt = 1000 * (d - t) / d; in _gx_utility_easing_function_calculate()
379 dd = _gx_utility_pow_0_10(tt); in _gx_utility_easing_function_calculate()
380 tt = 900 * t / d - 967; in _gx_utility_easing_function_calculate()
381 tt = _gx_utility_math_sin(GX_FIXED_VAL_MAKE(tt)); in _gx_utility_easing_function_calculate()
382 tt = GX_FIXED_VAL_TO_INT(tt << 8); in _gx_utility_easing_function_calculate()
383 y = (start_val - end_val) * tt / dd + start_val; in _gx_utility_easing_function_calculate()
386 tt = 1000 * t / d; in _gx_utility_easing_function_calculate()
387 dd = _gx_utility_pow_0_10(tt); in _gx_utility_easing_function_calculate()
388 tt = 900 * t / d - 67; in _gx_utility_easing_function_calculate()
389 tt = _gx_utility_math_sin(GX_FIXED_VAL_MAKE(tt)); in _gx_utility_easing_function_calculate()
390 tt = GX_FIXED_VAL_TO_INT(tt << 8); in _gx_utility_easing_function_calculate()
391 y = (end_val - start_val) * tt / dd + end_val; in _gx_utility_easing_function_calculate()
397 tt = 1000 * (d - t) / d; in _gx_utility_easing_function_calculate()
398 dd = _gx_utility_pow_0_10(tt); in _gx_utility_easing_function_calculate()
399 tt = 400 * t / d - 445; in _gx_utility_easing_function_calculate()
400 tt = _gx_utility_math_sin(GX_FIXED_VAL_MAKE(tt)); in _gx_utility_easing_function_calculate()
401 tt = GX_FIXED_VAL_TO_INT(tt << 8); in _gx_utility_easing_function_calculate()
403 y = (start_val - end_val) * tt / dd; in _gx_utility_easing_function_calculate()
408 tt = 1000 * (t - d) / d; in _gx_utility_easing_function_calculate()
409 dd = _gx_utility_pow_0_10(tt); in _gx_utility_easing_function_calculate()
410 tt = 400 * t / d - 445; in _gx_utility_easing_function_calculate()
411 tt = _gx_utility_math_sin(GX_FIXED_VAL_MAKE(tt)); in _gx_utility_easing_function_calculate()
412 tt = GX_FIXED_VAL_TO_INT(tt << 8); in _gx_utility_easing_function_calculate()
414 y = (end_val - start_val) * tt / dd; in _gx_utility_easing_function_calculate()
459 tt = t * t; in _gx_utility_easing_function_calculate()
463 tt = (tt << 1); in _gx_utility_easing_function_calculate()
467 tt = -(2 * tt - 4 * t * d + dd); in _gx_utility_easing_function_calculate()
470 y = ((end_val - start_val) * tt / dd) + start_val; in _gx_utility_easing_function_calculate()