Home
last modified time | relevance | path

Searched refs:sin (Results 1 – 2 of 2) sorted by relevance

/GUIX-v6.4.1/common/src/
Dgx_image_reader_jpeg_decode.c780 #define VBUTTERFLY_MULTIPLICATION(a, b, cos, sin) \ argument
782 vtempb = vmulq_n_s32(b, sin); \
784 vtempa = vmulq_n_s32(a, sin); \
789 #define VBUTTERFLY_MULTIPLICATION_SHR6(a, b, cos, sin) \ argument
791 vtempb = vmulq_n_s32(b, sin); \
793 vtempa = vmulq_n_s32(a, sin); \
807 #define BUTTERFLY_MULTIPLICATION(a, b, cos, sin) \ argument
808 t = (a * cos + b * sin); \
809 b = (b * cos - a * sin); \
812 #define BUTTERFLY_MULTIPLICATION_SHR6(a, b, cos, sin) \ argument
[all …]
/GUIX-v6.4.1/guix_studio/
Deasing_function_select_dlg.cpp428 return (float)(-pow(2, 10 * t) * sin(20.93 * t -1.57)); in ElasticEaseIn()
445 return (float)(pow(2, -10 * t) * sin(20.93 * t - 1.57) + 1); in ElasticEaseOut()
465 return (float)(-pow(2, 10 * t) * sin(13.96*t - 1.57) / 2); in ElasticEaseInOut()
470 return (float)(pow(2, -10 * t) * sin(13.96*t - 1.57) / 2 + 1); in ElasticEaseInOut()
600 return (float)sin(t / d * 1.57); in SinEaseOut()