/lvgl-latest/src/misc/ |
D | lv_gc.h | 35 #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
|
D | lv_math.h | 134 #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
|
D | lv_anim.c | 229 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
|
D | lv_log.c | 85 uint32_t t = lv_tick_get(); in _lv_log_add() local
|
D | lv_math.c | 83 uint32_t lv_bezier3(uint32_t t, uint32_t u0, uint32_t u1, uint32_t u2, uint32_t u3) in lv_bezier3()
|
D | lv_color.c | 159 uint8_t region, remainder, p, q, t; in lv_color_hsv_to_rgb() local
|
/lvgl-latest/src/draw/sw/ |
D | lv_draw_sw_dither.c | 56 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
|
D | lv_draw_sw_gradient.c | 18 #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/ |
D | lv_example_chart_9.py | 4 def add_data(t): argument
|
D | lv_example_chart_9.c | 4 static void add_data(lv_timer_t * t) in add_data()
|
/lvgl-latest/examples/widgets/table/ |
D | lv_example_table_2.py | 64 t = ticks_ms() variable
|
D | lv_example_table_2.c | 61 uint32_t t = lv_tick_get(); in lv_example_table_2() local
|
/lvgl-latest/examples/anim/ |
D | lv_example_anim_3.c | 67 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/ |
D | patch.py | 70 t = com.ver_format(ver_new) + "-dev" variable
|
/lvgl-latest/src/extra/libs/gif/ |
D | lv_gif.c | 130 static void next_frame_task_cb(lv_timer_t * t) in next_frame_task_cb()
|
/lvgl-latest/demos/music/ |
D | lv_demo_music.c | 178 static void auto_step_cb(lv_timer_t * t) in auto_step_cb()
|
D | lv_demo_music_list.c | 167 uint32_t t = _lv_demo_music_get_track_length(track_id); in add_list_btn() local
|
D | lv_demo_music_main.c | 819 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/ |
D | lv_flex.c | 257 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/ |
D | lv_demo_stress.c | 111 lv_obj_t * t = lv_tabview_add_tab(obj, "First"); in obj_test_timer_cb() local
|
/lvgl-latest/src/draw/nxp/vglite/ |
D | lv_draw_vglite_arc.c | 334 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/ |
D | lv_test_indev.c | 132 uint32_t t = lv_tick_get(); in lv_test_indev_wait() local
|
/lvgl-latest/demos/benchmark/ |
D | lv_demo_benchmark.c | 738 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/ |
D | lv_rlottie.c | 225 static void next_frame_task_cb(lv_timer_t * t) in next_frame_task_cb()
|
/lvgl-latest/src/extra/libs/bmp/ |
D | lv_bmp.c | 229 uint8_t * t = &buf[i * 3]; in decoder_read_line() local
|