/lvgl-latest/libs/nema_gfx/include/ |
D | nema_blender.h | 55 #define NEMA_BL_SIMPLE ( (uint32_t)NEMA_BF_SRCALPHA | ((uint32_t)NEMA_BF_INVSRCALPHA <… 56 #define NEMA_BL_CLEAR ( (uint32_t)NEMA_BF_ZERO /*| ((uint32_t)NEMA_BF_ZERO <… 57 #define NEMA_BL_SRC ( (uint32_t)NEMA_BF_ONE /*| ((uint32_t)NEMA_BF_ZERO <… 58 #define NEMA_BL_SRC_OVER ( (uint32_t)NEMA_BF_ONE | ((uint32_t)NEMA_BF_INVSRCALPHA <… 59 #define NEMA_BL_DST_OVER ( (uint32_t)NEMA_BF_INVDESTALPHA | ((uint32_t)NEMA_BF_ONE <… 60 #define NEMA_BL_SRC_IN ( (uint32_t)NEMA_BF_DESTALPHA /*| ((uint32_t)NEMA_BF_ZERO <… 61 #define NEMA_BL_DST_IN (/*(uint32_t)NEMA_BF_ZERO |*/ ((uint32_t)NEMA_BF_SRCALPHA <… 62 #define NEMA_BL_SRC_OUT ( (uint32_t)NEMA_BF_INVDESTALPHA/*| ((uint32_t)NEMA_BF_ZERO <… 63 #define NEMA_BL_DST_OUT (/*(uint32_t)NEMA_BF_ZERO |*/ ((uint32_t)NEMA_BF_INVSRCALPHA <… 64 #define NEMA_BL_SRC_ATOP ( (uint32_t)NEMA_BF_DESTALPHA | ((uint32_t)NEMA_BF_INVSRCALPHA <… [all …]
|
D | nema_graphics.h | 45 uint32_t color; 129 typedef uint32_t nema_tex_format_t; 203 uint32_t width, uint32_t height, 212 void nema_set_tex_color(uint32_t color); 222 void nema_set_const_reg(int reg, uint32_t value); 234 void nema_set_clip(int32_t x, int32_t y, uint32_t w, uint32_t h); 249 uint32_t nema_enable_aa(uint8_t e0, uint8_t e1, uint8_t e2, uint8_t e3); 330 uint32_t nema_rgba(unsigned char R, 341 uint32_t nema_premultiply_rgba(uint32_t rgba); 373 uint32_t width, uint32_t height, [all …]
|
/lvgl-latest/src/others/sysmon/ |
D | lv_sysmon_private.h | 38 uint32_t refr_start; 39 uint32_t refr_interval_sum; 40 uint32_t refr_elaps_sum; 41 uint32_t refr_cnt; 42 uint32_t render_start; 43 uint32_t render_elaps_sum; /*Contains the flush time too*/ 44 uint32_t render_cnt; 45 uint32_t flush_in_render_start; 46 uint32_t flush_in_render_elaps_sum; 47 uint32_t flush_not_in_render_start; [all …]
|
/lvgl-latest/src/misc/ |
D | lv_text.c | 33 static uint32_t lv_text_unicode_to_utf8(uint32_t letter_uni); 34 static uint32_t lv_text_utf8_conv_wc(uint32_t c); 35 static uint32_t lv_text_utf8_next(const char * txt, uint32_t * i); 36 static uint32_t lv_text_utf8_prev(const char * txt, uint32_t * i_start); 37 static uint32_t lv_text_utf8_get_byte_id(const char * txt, uint32_t utf8_id); 38 static uint32_t lv_text_utf8_get_char_id(const char * txt, uint32_t byte_id); 39 static uint32_t lv_text_utf8_get_length(const char * txt); 42 static uint32_t lv_text_unicode_to_iso8859_1(uint32_t letter_uni); 43 static uint32_t lv_text_iso8859_1_conv_wc(uint32_t c); 44 static uint32_t lv_text_iso8859_1_next(const char * txt, uint32_t * i); [all …]
|
D | lv_text_private.h | 45 uint32_t lv_text_get_next_line(const char * txt, uint32_t len, const lv_font_t * font, int32_t lett… 54 void lv_text_ins(char * txt_buf, uint32_t pos, const char * ins_txt); 63 void lv_text_cut(char * txt, uint32_t pos, uint32_t len); 83 …id lv_text_encoded_letter_next_2(const char * txt, uint32_t * letter, uint32_t * letter_next, uint… 90 static inline bool lv_text_is_break_char(uint32_t letter) in lv_text_is_break_char() 97 if(letter == (uint32_t)LV_TXT_BREAK_CHARS[i]) { in lv_text_is_break_char() 111 static inline bool lv_text_is_a_word(uint32_t letter) in lv_text_is_a_word() 166 static inline bool lv_text_is_marker(uint32_t letter) in lv_text_is_marker() 210 extern uint32_t (*const lv_text_unicode_to_encoded)(uint32_t letter_uni); 217 extern uint32_t (*const lv_text_encoded_conv_wc)(uint32_t c); [all …]
|
D | lv_array.h | 37 uint32_t size; 38 uint32_t capacity; 39 uint32_t element_size; 54 void lv_array_init(lv_array_t * array, uint32_t capacity, uint32_t element_size); 65 void lv_array_init_from_buf(lv_array_t * array, void * buf, uint32_t capacity, uint32_t element_siz… 73 bool lv_array_resize(lv_array_t * array, uint32_t new_capacity); 86 uint32_t lv_array_size(const lv_array_t * array); 93 uint32_t lv_array_capacity(const lv_array_t * array); 135 lv_result_t lv_array_remove(lv_array_t * array, uint32_t index); 146 lv_result_t lv_array_erase(lv_array_t * array, uint32_t start, uint32_t end); [all …]
|
D | lv_bidi.c | 31 uint32_t bracket_pos; 44 static uint32_t lv_bidi_get_next_paragraph(const char * txt); 45 static lv_base_dir_t lv_bidi_get_letter_dir(uint32_t letter); 46 static bool lv_bidi_letter_is_weak(uint32_t letter); 47 static bool lv_bidi_letter_is_rtl(uint32_t letter); 48 static bool lv_bidi_letter_is_neutral(uint32_t letter); 50 …dir_t get_next_run(lv_bidi_ctx_t * ctx, const char * txt, lv_base_dir_t base_dir, uint32_t max_len, 51 uint32_t * len, 53 static void rtl_reverse(char * dest, const char * src, uint32_t len, uint16_t * pos_conv_out, uint1… 55 static uint32_t char_change_to_pair(uint32_t letter); [all …]
|
D | lv_anim.h | 140 …uint32_t reverse_delay; /**< Wait (in ms) after forward play ends and before rev… 141 uint32_t reverse_duration; /**< Reverse animation duration in ms */ 142 uint32_t repeat_delay; /**< Wait before repeating */ 143 uint32_t repeat_cnt; /**< Repeat count for animation */ 149 uint32_t last_timer_run; 150 uint32_t pause_time; /**<The time when the animation was paused*/ 151 …uint32_t pause_duration; /**<The amount of the time the animation must stay pause… 196 void lv_anim_set_duration(lv_anim_t * a, uint32_t duration); 203 void lv_anim_set_delay(lv_anim_t * a, uint32_t delay); 222 void lv_anim_pause_for(lv_anim_t * a, uint32_t ms); [all …]
|
D | lv_circle_buf.h | 28 typedef bool (*lv_circle_buf_fill_cb_t)(void * buf, uint32_t buff_len, int32_t index, void * user_d… 40 lv_circle_buf_t * lv_circle_buf_create(uint32_t capacity, uint32_t element_size); 49 lv_circle_buf_t * lv_circle_buf_create_from_buf(void * buf, uint32_t capacity, uint32_t element_siz… 64 lv_result_t lv_circle_buf_resize(lv_circle_buf_t * circle_buf, uint32_t capacity); 77 uint32_t lv_circle_buf_size(const lv_circle_buf_t * circle_buf); 84 uint32_t lv_circle_buf_capacity(const lv_circle_buf_t * circle_buf); 91 uint32_t lv_circle_buf_remain(const lv_circle_buf_t * circle_buf); 152 uint32_t lv_circle_buf_fill(lv_circle_buf_t * circle_buf, uint32_t count, lv_circle_buf_fill_cb_t f… 177 lv_result_t lv_circle_buf_peek_at(const lv_circle_buf_t * circle_buf, uint32_t index, void * data);
|
D | lv_timer_private.h | 31 uint32_t period; /**< How often the timer should run */ 32 uint32_t last_run; /**< Last time the timer ran */ 36 uint32_t paused : 1; 37 uint32_t auto_delete : 1; 47 uint32_t timer_time_until_next; 50 uint32_t periodic_last_tick; 51 uint32_t busy_time; 52 uint32_t idle_period_start; 53 uint32_t run_cnt;
|
D | lv_fs.h | 71 uint32_t cache_size; 76 … lv_fs_res_t (*read_cb)(lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * br); 77 …res_t (*write_cb)(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint32_t * bw); 78 lv_fs_res_t (*seek_cb)(lv_fs_drv_t * drv, void * file_p, uint32_t pos, lv_fs_whence_t whence); 79 lv_fs_res_t (*tell_cb)(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p); 82 lv_fs_res_t (*dir_read_cb)(lv_fs_drv_t * drv, void * rddir_p, char * fn, uint32_t fn_len); 151 void lv_fs_make_path_from_buffer(lv_fs_path_ex_t * path, char letter, const void * buf, uint32_t si… 168 lv_fs_res_t lv_fs_read(lv_fs_file_t * file_p, void * buf, uint32_t btr, uint32_t * br); 178 lv_fs_res_t lv_fs_write(lv_fs_file_t * file_p, const void * buf, uint32_t btw, uint32_t * bw); 187 lv_fs_res_t lv_fs_seek(lv_fs_file_t * file_p, uint32_t pos, lv_fs_whence_t whence); [all …]
|
D | lv_text_ap.c | 39 static uint32_t lv_ap_get_char_index(uint16_t c); 40 static uint32_t lv_text_lam_alef(uint32_t ch_curr, uint32_t ch_next); 110 uint32_t lv_text_ap_calc_bytes_count(const char * txt) in lv_text_ap_calc_bytes_count() 112 uint32_t txt_length = 0; in lv_text_ap_calc_bytes_count() 113 uint32_t chars_cnt = 0; in lv_text_ap_calc_bytes_count() 114 uint32_t current_ap_idx = 0; in lv_text_ap_calc_bytes_count() 115 uint32_t i, j; in lv_text_ap_calc_bytes_count() 116 uint32_t ch_enc; in lv_text_ap_calc_bytes_count() 146 uint32_t txt_length = 0; in lv_text_ap_proc() 147 uint32_t index_current, idx_next, idx_previous, i, j; in lv_text_ap_proc() [all …]
|
/lvgl-latest/src/libs/thorvg/rapidjson/internal/ |
D | itoa.h | 39 inline char* u32toa(uint32_t value, char* buffer) { in u32toa() 45 const uint32_t d1 = (value / 100) << 1; in u32toa() 46 const uint32_t d2 = (value % 100) << 1; in u32toa() 58 const uint32_t b = value / 10000; in u32toa() 59 const uint32_t c = value % 10000; in u32toa() 61 const uint32_t d1 = (b / 100) << 1; in u32toa() 62 const uint32_t d2 = (b % 100) << 1; in u32toa() 64 const uint32_t d3 = (c / 100) << 1; in u32toa() 65 const uint32_t d4 = (c % 100) << 1; in u32toa() 83 const uint32_t a = value / 100000000; // 1 to 42 in u32toa() [all …]
|
/lvgl-latest/src/draw/ |
D | lv_image_dsc.h | 79 uint32_t reserved_2: 16; /**< Reserved to be used later*/ 80 uint32_t stride: 16; /**< Number of bytes in a row*/ 81 uint32_t h: 16; 82 uint32_t w: 16; 83 uint32_t flags: 16; /**< Image flags, see `lv_image_flags_t`*/ 84 uint32_t cf : 8; /**< Color format: See `lv_color_format_t`*/ 85 uint32_t magic: 8; /**< Magic number. Must be LV_IMAGE_HEADER_MAGIC*/ 89 uint32_t magic: 8; /**< Magic number. Must be LV_IMAGE_HEADER_MAGIC*/ 90 uint32_t cf : 8; /**< Color format: See `lv_color_format_t`*/ 91 uint32_t flags: 16; /**< Image flags, see `lv_image_flags_t`*/ [all …]
|
D | lv_draw_buf.h | 86 typedef uint32_t (*lv_draw_buf_width_to_stride_cb)(uint32_t w, lv_color_format_t color_format); 90 uint32_t data_size; /**< Total buf size in bytes */ 176 uint32_t lv_draw_buf_width_to_stride(uint32_t w, lv_color_format_t color_format); 185 uint32_t lv_draw_buf_width_to_stride_ex(const lv_draw_buf_handlers_t * handlers, uint32_t w, 220 lv_draw_buf_t * lv_draw_buf_create(uint32_t w, uint32_t h, lv_color_format_t cf, uint32_t stride); 236 lv_draw_buf_t * lv_draw_buf_create_ex(const lv_draw_buf_handlers_t * handlers, uint32_t w, uint32_t… 237 lv_color_format_t cf, uint32_t stride); 265 …ult_t lv_draw_buf_init(lv_draw_buf_t * draw_buf, uint32_t w, uint32_t h, lv_color_format_t cf, uin… 266 void * data, uint32_t data_size); 277 …buf_t * lv_draw_buf_reshape(lv_draw_buf_t * draw_buf, lv_color_format_t cf, uint32_t w, uint32_t h, [all …]
|
/lvgl-latest/src/widgets/table/ |
D | lv_table.h | 71 void lv_table_set_cell_value(lv_obj_t * obj, uint32_t row, uint32_t col, const char * txt); 81 void lv_table_set_cell_value_fmt(lv_obj_t * obj, uint32_t row, uint32_t col, const char * fmt, 89 void lv_table_set_row_count(lv_obj_t * obj, uint32_t row_cnt); 96 void lv_table_set_column_count(lv_obj_t * obj, uint32_t col_cnt); 104 void lv_table_set_column_width(lv_obj_t * obj, uint32_t col_id, int32_t w); 113 void lv_table_add_cell_ctrl(lv_obj_t * obj, uint32_t row, uint32_t col, lv_table_cell_ctrl_t ctrl); 122 void lv_table_clear_cell_ctrl(lv_obj_t * obj, uint32_t row, uint32_t col, lv_table_cell_ctrl_t ctrl… 155 const char * lv_table_get_cell_value(lv_obj_t * obj, uint32_t row, uint32_t col); 162 uint32_t lv_table_get_row_count(lv_obj_t * obj); 169 uint32_t lv_table_get_column_count(lv_obj_t * obj); [all …]
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgSwCommon.h | 106 Array<uint32_t> cntrs; //the contour end points 122 uint32_t alloc; 123 uint32_t size; 156 uint32_t* ctable; 165 uint32_t ptsCnt; 166 uint32_t maxPts; 207 uint32_t cnt = 0; 230 uint32_t* buf32; //for explicit 32bits channels 233 uint32_t w, h, stride; 244 typedef uint32_t(*SwBlender)(uint32_t s, uint32_t d, uint8_t a); //src, dst, alpha [all …]
|
/lvgl-latest/src/draw/sw/ |
D | lv_draw_sw_utils.h | 44 void lv_draw_sw_i1_to_argb8888(const void * buf_i1, void * buf_argb8888, uint32_t width, uint32_t h… 45 …uint32_t buf_i1_stride, uint32_t buf_argb8888_stride, uint32_t index0_color, uint32_t index1_color… 54 void lv_draw_sw_rgb565_swap(void * buf, uint32_t buf_size_px); 64 void lv_draw_sw_i1_invert(void * buf, uint32_t buf_size); 79 void lv_draw_sw_i1_convert_to_vtiled(const void * buf, uint32_t buf_size, uint32_t width, uint32_t … 81 uint32_t out_buf_size, bool bit_order_lsb);
|
/lvgl-latest/src/drivers/display/st_ltdc/ |
D | lv_st_ltdc.c | 44 static lv_display_t * create(void * buf1, void * buf2, uint32_t buf_size, uint32_t layer_idx, 48 static lv_color_format_t get_lv_cf_from_layer_cf(uint32_t cf); 53 static uint32_t get_dma2d_output_cf_from_layer_cf(uint32_t cf); 54 static uint32_t get_dma2d_input_cf_from_lv_cf(uint32_t cf); 66 volatile uint32_t dma2d_interrupt_owner; /*layer_idx + 1, or 0 for none*/ 88 lv_display_t * lv_st_ltdc_create_direct(void * fb_adr_1, void * fb_adr_2, uint32_t layer_idx) in lv_st_ltdc_create_direct() 93 lv_display_t * lv_st_ltdc_create_partial(void * render_buf_1, void * render_buf_2, uint32_t buf_siz… in lv_st_ltdc_create_partial() 94 uint32_t layer_idx) in lv_st_ltdc_create_partial() 103 static lv_display_t * create(void * buf1, void * buf2, uint32_t buf_size, uint32_t layer_idx, in create() 107 uint32_t layer_width = layer_cfg->ImageWidth; in create() [all …]
|
/lvgl-latest/src/draw/sw/blend/arm2d/ |
D | lv_blend_arm2d.h | 327 uint32_t src_px_size) in lv_rgb888_blend_normal_to_rgb565_arm2d() 335 int16_t src_stride = dsc->src_stride / sizeof(uint32_t); in lv_rgb888_blend_normal_to_rgb565_arm2d() 337 __arm_2d_impl_cccn888_to_rgb565((uint32_t *)dsc->src_buf, in lv_rgb888_blend_normal_to_rgb565_arm2d() 347 uint32_t src_px_size) in lv_rgb888_blend_normal_to_rgb565_with_opa_arm2d() 355 int16_t src_stride = dsc->src_stride / sizeof(uint32_t); in lv_rgb888_blend_normal_to_rgb565_with_opa_arm2d() 363 __arm_2d_impl_cccn888_to_rgb565((uint32_t *)dsc->src_buf, in lv_rgb888_blend_normal_to_rgb565_with_opa_arm2d() 376 __arm_2d_impl_ccca8888_tile_copy_to_rgb565_with_opacity((uint32_t *)dsc->src_buf, in lv_rgb888_blend_normal_to_rgb565_with_opa_arm2d() 388 uint32_t src_px_size) in lv_rgb888_blend_normal_to_rgb565_with_mask_arm2d() 396 int16_t src_stride = dsc->src_stride / sizeof(uint32_t); in lv_rgb888_blend_normal_to_rgb565_with_mask_arm2d() 404 __arm_2d_impl_cccn888_to_rgb565((uint32_t *)dsc->src_buf, in lv_rgb888_blend_normal_to_rgb565_with_mask_arm2d() [all …]
|
/lvgl-latest/src/draw/dma2d/ |
D | lv_draw_dma2d_private.h | 84 uint32_t w; 85 uint32_t h; 88 uint32_t output_offset; 91 uint32_t reg_to_mem_mode_color; 94 uint32_t fg_offset; 96 uint32_t fg_color; 97 uint32_t fg_alpha_mode; 98 uint32_t fg_alpha; 101 uint32_t bg_offset; 103 uint32_t bg_color; [all …]
|
/lvgl-latest/tests/src/test_libs/rnd_unicodes/rnd_unicodes/src/ |
D | library.h | 31 typedef uint32_t unicode_t; 34 extern const uint32_t ALPHANUM_AND_CJK_TABLE[]; 35 extern const uint32_t ALPHANUM_AND_CJK_TABLE_LEN; 37 extern const uint32_t ONLY_CJK_TABLE[]; 38 extern const uint32_t ONLY_CJK_TABLE_LEN; 40 extern const uint32_t ALPHANUM_TABLE[]; 41 extern const uint32_t ALPHANUM_TABLE_LEN; 43 uint32_t RANDOM_CALL_PROCESS(void); 45 int random_utf8_chars(utf8_t * buf, int buf_len, const unicode_t * ranges, uint32_t range_num, int …
|
/lvgl-latest/src/draw/nxp/vglite/ |
D | lv_vglite_buf.h | 83 void vglite_set_dest_buf(const void * buf, uint32_t width, uint32_t height, uint32_t stride, 96 void vglite_set_src_buf(const void * buf, uint32_t width, uint32_t height, uint32_t stride, 111 uint32_t width, uint32_t height, uint32_t stride,
|
/lvgl-latest/src/widgets/chart/ |
D | lv_chart_private.h | 37 uint32_t start_point; 38 uint32_t hidden : 1; 39 uint32_t x_ext_buf_assigned : 1; 40 uint32_t y_ext_buf_assigned : 1; 41 uint32_t x_axis_sec : 1; 42 uint32_t y_axis_sec : 1; 51 uint32_t pos_set: 1; /**< 1: pos is set; 0: point_id is set */ 63 uint32_t hdiv_cnt; /**< Number of horizontal division lines */ 64 uint32_t vdiv_cnt; /**< Number of vertical division lines */ 65 uint32_t point_cnt; /**< Number of points in all series */
|
/lvgl-latest/src/widgets/scale/ |
D | lv_scale_private.h | 39 …uint32_t first_tick_idx_in_section; /**< Internal (set during drawing): Tick index of first tic… 41 …uint32_t last_tick_idx_in_section; /**< Internal (set during drawing): Tick index of last tick… 47 uint32_t first_tick_idx_is_major : 1; /**< Internal (set during drawing): true if 49 uint32_t last_tick_idx_is_major : 1; /**< Internal (set during drawing): true if 61 uint32_t total_tick_count : 15; /**< Total number of ticks (major and minor) */ 62 uint32_t major_tick_every : 15; /**< Frequency of major ticks to minor ticks */ 63 uint32_t label_enabled : 1; /**< Draw labels for major ticks? */ 64 uint32_t post_draw : 1; /**< false: drawing occurs during LV_EVENT_DRAW_MAIN; 66 uint32_t draw_ticks_on_top : 1; /**< Draw ticks on top of main line? */ 68 uint32_t angle_range; /**< Degrees between low end and high end of scale */
|