Home
last modified time | relevance | path

Searched refs:t2 (Results 1 – 9 of 9) sorted by relevance

/lvgl-latest/src/libs/thorvg/
DtvgSwFill.cpp573 auto t2 = static_cast<int32_t>(t * FIXPT_SIZE); in fillLinear() local
576 *dst = opBlendNormal(_fixedPixel(fill, t2), *dst, alpha(cmp)); in fillLinear()
577 t2 += inc2; in fillLinear()
604 auto t2 = static_cast<int32_t>(t * FIXPT_SIZE); in fillLinear() local
607 *dst = opBlendNormal(_fixedPixel(fill, t2), *dst, MULTIPLY(alpha(cmp), opacity)); in fillLinear()
608 t2 += inc2; in fillLinear()
646 auto t2 = static_cast<int32_t>(t * FIXPT_SIZE); in fillLinear() local
649 auto src = MULTIPLY(A(_fixedPixel(fill, t2)), a); in fillLinear()
651 t2 += inc2; in fillLinear()
690 auto t2 = static_cast<int32_t>(t * FIXPT_SIZE); in fillLinear() local
[all …]
/lvgl-latest/src/draw/nxp/vglite/
Dlv_draw_vglite_arc.c287 uint16_t t2 = TperDegree[arc->angle + span]; in _get_subarc_control_points() local
290 float a2x = _lerp((float)fullarc.p0x, (float)fullarc.p1x, t2); in _get_subarc_control_points()
291 float a2y = _lerp((float)fullarc.p0y, (float)fullarc.p1y, t2); in _get_subarc_control_points()
293 float b2x = _lerp((float)fullarc.p1x, (float)fullarc.p2x, t2); in _get_subarc_control_points()
294 float b2y = _lerp((float)fullarc.p1y, (float)fullarc.p2y, t2); in _get_subarc_control_points()
296 float c2x = _lerp((float)fullarc.p2x, (float)fullarc.p3x, t2); in _get_subarc_control_points()
297 float c2y = _lerp((float)fullarc.p2y, (float)fullarc.p3y, t2); in _get_subarc_control_points()
300 float d2x = _lerp(a2x, b2x, t2); in _get_subarc_control_points()
301 float d2y = _lerp(a2y, b2y, t2); in _get_subarc_control_points()
303 float e2x = _lerp(b2x, c2x, t2); in _get_subarc_control_points()
[all …]
/lvgl-latest/tests/src/test_cases/
Dtest_math.c105 uint32_t t2 = (t * t) >> 10; in lv_bezier3_legacy() local
106 uint32_t t3 = (t2 * t) >> 10; in lv_bezier3_legacy()
110 uint32_t v3 = (3 * t_rem * t2 * u2) >> 20; in lv_bezier3_legacy()
/lvgl-latest/demos/keypad_encoder/
Dlv_demo_keypad_encoder.c37 static lv_obj_t * t2; variable
72 t2 = lv_tabview_add_tab(tv, "Text input"); in lv_demo_keypad_encoder()
75 text_input_create(t2); in lv_demo_keypad_encoder()
/lvgl-latest/docs/
Dbuild.py626 t2 = datetime.now()
627 print('Current time: ' + str(t2))
631 print('Sphinx run time: ' + str(t3 - t2))
/lvgl-latest/demos/benchmark/
Dlv_demo_benchmark.c763 uint32_t t2 = rnd_next(1000, 3000); in arc_anim() local
769 lv_anim_set_reverse_duration(&a, t2); in arc_anim()
803 uint32_t t2 = rnd_next(300, 3000); in fall_anim() local
811 lv_anim_set_reverse_duration(&a, t2); in fall_anim()
/lvgl-latest/src/libs/thorvg/rapidjson/
Dreader.h1101 const __m128i t2 = _mm_cmpeq_epi8(s, bs); in ScanCopyUnescapedString() local
1103 const __m128i x = _mm_or_si128(_mm_or_si128(t1, t2), t3); in ScanCopyUnescapedString()
1164 const __m128i t2 = _mm_cmpeq_epi8(s, bs); in ScanCopyUnescapedString() local
1166 const __m128i x = _mm_or_si128(_mm_or_si128(t1, t2), t3); in ScanCopyUnescapedString()
1212 const __m128i t2 = _mm_cmpeq_epi8(s, bs); in SkipUnescapedString() local
1214 const __m128i x = _mm_or_si128(_mm_or_si128(t1, t2), t3); in SkipUnescapedString()
Dwriter.h608 const __m128i t2 = _mm_cmpeq_epi8(s, bs); in ScanWriteUnescapedString() local
610 const __m128i x = _mm_or_si128(_mm_or_si128(t1, t2), t3); in ScanWriteUnescapedString()
/lvgl-latest/demos/widgets/
Dlv_demo_widgets.c192 lv_obj_t * t2 = lv_tabview_add_tab(tv, "Analytics"); in lv_demo_widgets() local
218 analytics_create(t2); in lv_demo_widgets()