Home
last modified time | relevance | path

Searched defs:t (Results 1 – 25 of 38) sorted by relevance

12

/lvgl-latest/src/misc/
Dlv_gc.h35 #define LV_DISPATCH(f, t, n) f(t, n) argument
36 #define LV_DISPATCH_COND(f, t, n, m, v) LV_CONCAT3(LV_DISPATCH, m, v)(f, t, n) argument
38 #define LV_DISPATCH00(f, t, n) LV_DISPATCH(f, t, n) argument
39 #define LV_DISPATCH01(f, t, n) argument
40 #define LV_DISPATCH10(f, t, n) argument
41 #define LV_DISPATCH11(f, t, n) LV_DISPATCH(f, t, n) argument
Dlv_math.h134 #define LV_IS_SIGNED(t) (((t)(-1)) < ((t)0)) argument
135 #define LV_UMAX_OF(t) (((0x1ULL << ((sizeof(t) * 8ULL) - 1ULL)) - 1ULL) | (0xFULL << ((sizeof(t) * … argument
136 #define LV_SMAX_OF(t) (((0x1ULL << ((sizeof(t) * 8ULL) - 1ULL)) - 1ULL) | (0x7ULL << ((sizeof(t) * … argument
137 #define LV_MAX_OF(t) ((unsigned long)(LV_IS_SIGNED(t) ? LV_SMAX_OF(t) : LV_UMAX_OF(t))) argument
Dlv_anim.c229 uint32_t t = lv_map(a->act_time, 0, a->time, 0, LV_BEZIER_VAL_MAX); in lv_anim_path_ease_in() local
243 uint32_t t = lv_map(a->act_time, 0, a->time, 0, LV_BEZIER_VAL_MAX); in lv_anim_path_ease_out() local
257 uint32_t t = lv_map(a->act_time, 0, a->time, 0, LV_BEZIER_VAL_MAX); in lv_anim_path_ease_in_out() local
271 uint32_t t = lv_map(a->act_time, 0, a->time, 0, LV_BEZIER_VAL_MAX); in lv_anim_path_overshoot() local
285 int32_t t = lv_map(a->act_time, 0, a->time, 0, LV_BEZIER_VAL_MAX); in lv_anim_path_bounce() local
Dlv_log.c85 uint32_t t = lv_tick_get(); in _lv_log_add() local
Dlv_math.c83 uint32_t lv_bezier3(uint32_t t, uint32_t u0, uint32_t u1, uint32_t u2, uint32_t u3) in lv_bezier3()
Dlv_color.c159 uint8_t region, remainder, p, q, t; in lv_color_hsv_to_rgb() local
/lvgl-latest/src/draw/sw/
Dlv_draw_sw_dither.c56 lv_color32_t t; in lv_dither_ordered_hor() local
81 lv_color32_t t; in lv_dither_ordered_ver() local
116 #define FS_QUANT_ERROR(e, t, q) { lv_color32_t u; u.full = lv_color_to32(q); e.r = (int8_t)(t.ch.re… in lv_dither_err_diff_hor() argument
121 lv_color32_t t = grad->hmap[x]; in lv_dither_err_diff_hor() local
190 lv_color32_t t = grad->hmap[y]; in lv_dither_err_diff_ver() local
197 lv_color32_t t = grad->hmap[y]; in lv_dither_err_diff_ver() local
Dlv_draw_sw_gradient.c18 #define GRAD_CONV(t, x) t.full = lv_color_to32(x) argument
21 #define GRAD_CONV(t, x) t = x argument
/lvgl-latest/examples/widgets/chart/
Dlv_example_chart_9.py4 def add_data(t): argument
Dlv_example_chart_9.c4 static void add_data(lv_timer_t * t) in add_data()
/lvgl-latest/examples/widgets/table/
Dlv_example_table_2.py64 t = ticks_ms() variable
Dlv_example_table_2.c61 uint32_t t = lv_tick_get(); in lv_example_table_2() local
/lvgl-latest/examples/anim/
Dlv_example_anim_3.c67 uint32_t t = lv_map(a->act_time, 0, a->time, 0, 1024); in anim_path_bezier3_cb() local
79 uint32_t t = i * (1024 / CHART_POINTS_NUM); in refer_chart_cubic_bezier() local
/lvgl-latest/scripts/release/
Dpatch.py70 t = com.ver_format(ver_new) + "-dev" variable
/lvgl-latest/src/extra/libs/gif/
Dlv_gif.c130 static void next_frame_task_cb(lv_timer_t * t) in next_frame_task_cb()
/lvgl-latest/demos/music/
Dlv_demo_music.c178 static void auto_step_cb(lv_timer_t * t) in auto_step_cb()
Dlv_demo_music_list.c167 uint32_t t = _lv_demo_music_get_track_length(track_id); in add_list_btn() local
Dlv_demo_music_main.c819 int32_t t = BAR_PER_BAND_CNT * s - band_w / 2 + f; in spectrum_draw_event_cb() local
984 static void timer_cb(lv_timer_t * t) in timer_cb()
998 static void stop_start_anim_timer_cb(lv_timer_t * t) in stop_start_anim_timer_cb()
/lvgl-latest/src/extra/layouts/flex/
Dlv_flex.c257 track_t t; in flex_update() local
281 track_t t; in flex_update() local
315 lv_coord_t item_gap, track_t * t) in find_track_end()
402 … lv_coord_t abs_y, lv_coord_t max_main_size, lv_coord_t item_gap, track_t * t) in children_repos()
/lvgl-latest/demos/stress/
Dlv_demo_stress.c111 lv_obj_t * t = lv_tabview_add_tab(obj, "First"); in obj_test_timer_cb() local
/lvgl-latest/src/draw/nxp/vglite/
Dlv_draw_vglite_arc.c334 static inline float lerp(float coord_a, float coord_b, uint16_t t) in lerp()
343 static inline float comp_bezier_point(float t, cubic_cont_pt cp) in comp_bezier_point()
495 uint16_t t = TperDegree[arc->angle]; in get_arc_control_points() local
/lvgl-latest/tests/src/
Dlv_test_indev.c132 uint32_t t = lv_tick_get(); in lv_test_indev_wait() local
/lvgl-latest/demos/benchmark/
Dlv_demo_benchmark.c738 lv_timer_t * t = lv_timer_create(report_cb, SCENE_TIME, NULL); in lv_demo_benchmark_run_scene() local
1132 uint32_t t = rnd_next(ANIM_TIME_MIN / 4, ANIM_TIME_MAX / 4); in arc_create() local
1157 uint32_t t = rnd_next(ANIM_TIME_MIN, ANIM_TIME_MAX); in fall_anim() local
1183 int32_t t = min; in rnd_next() local
/lvgl-latest/src/extra/libs/rlottie/
Dlv_rlottie.c225 static void next_frame_task_cb(lv_timer_t * t) in next_frame_task_cb()
/lvgl-latest/src/extra/libs/bmp/
Dlv_bmp.c229 uint8_t * t = &buf[i * 3]; in decoder_read_line() local

12