Lines Matching refs:dd

157 INT dd;  in _gx_utility_bounce_ease_out()  local
163 dd = 16 * d * d; in _gx_utility_bounce_ease_out()
167 dd = d * d; in _gx_utility_bounce_ease_out()
169 tt = tt * tt + 12 * dd; in _gx_utility_bounce_ease_out()
170 dd = 16 * dd; in _gx_utility_bounce_ease_out()
174 dd = d * d; in _gx_utility_bounce_ease_out()
176 tt = tt * tt + 15 * dd; in _gx_utility_bounce_ease_out()
177 dd = 16 * dd; in _gx_utility_bounce_ease_out()
181 dd = d * d; in _gx_utility_bounce_ease_out()
183 tt = tt * tt + 63 * dd; in _gx_utility_bounce_ease_out()
184 dd = 64 * dd; in _gx_utility_bounce_ease_out()
188 *return_dd = dd; in _gx_utility_bounce_ease_out()
241 INT dd; 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()
305 dd = (1 << 16); in _gx_utility_easing_function_calculate()
306 dd = dd * t / d; in _gx_utility_easing_function_calculate()
307 dd = dd * t / d; in _gx_utility_easing_function_calculate()
308 dd = (1 << 16) - dd; in _gx_utility_easing_function_calculate()
310 tt = (INT)_gx_utility_math_sqrt((UINT)dd); in _gx_utility_easing_function_calculate()
312 dd = 256; in _gx_utility_easing_function_calculate()
313 y = ((end_val - start_val) * tt / dd) + start_val; in _gx_utility_easing_function_calculate()
316 dd = (1 << 16); in _gx_utility_easing_function_calculate()
317 dd = dd * (t - d) / d; in _gx_utility_easing_function_calculate()
318 dd = dd * (t - d) / d; in _gx_utility_easing_function_calculate()
319 dd = (1 << 16) - dd; in _gx_utility_easing_function_calculate()
321 tt = (INT)_gx_utility_math_sqrt((UINT)dd); in _gx_utility_easing_function_calculate()
322 dd = 256; in _gx_utility_easing_function_calculate()
323 y = ((end_val - start_val) * tt / dd) + start_val; in _gx_utility_easing_function_calculate()
328 dd = (1 << 18); in _gx_utility_easing_function_calculate()
329 dd = dd * t / d; in _gx_utility_easing_function_calculate()
330 dd = dd * t / d; in _gx_utility_easing_function_calculate()
331 dd = (1 << 16) - dd; in _gx_utility_easing_function_calculate()
333 tt = (INT)_gx_utility_math_sqrt((UINT)dd); in _gx_utility_easing_function_calculate()
338 dd = (1 << 18); in _gx_utility_easing_function_calculate()
339 dd = dd * (t - d) / d; in _gx_utility_easing_function_calculate()
340 dd = dd * (t - d) / d; in _gx_utility_easing_function_calculate()
341 dd = (1 << 16) - dd; in _gx_utility_easing_function_calculate()
343 tt = (INT)_gx_utility_math_sqrt((UINT)dd); in _gx_utility_easing_function_calculate()
346 dd = 512; in _gx_utility_easing_function_calculate()
347 y = ((end_val - start_val) * tt / dd) + start_val; in _gx_utility_easing_function_calculate()
379 dd = _gx_utility_pow_0_10(tt); in _gx_utility_easing_function_calculate()
383 y = (start_val - end_val) * tt / dd + start_val; in _gx_utility_easing_function_calculate()
387 dd = _gx_utility_pow_0_10(tt); in _gx_utility_easing_function_calculate()
391 y = (end_val - start_val) * tt / dd + end_val; in _gx_utility_easing_function_calculate()
398 dd = _gx_utility_pow_0_10(tt); in _gx_utility_easing_function_calculate()
403 y = (start_val - end_val) * tt / dd; in _gx_utility_easing_function_calculate()
409 dd = _gx_utility_pow_0_10(tt); in _gx_utility_easing_function_calculate()
414 y = (end_val - start_val) * tt / dd; in _gx_utility_easing_function_calculate()
460 dd = d * d; 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()