Searched refs:str_out (Results 1 – 2 of 2) sorted by relevance
/lvgl-latest/src/misc/ |
D | lv_bidi.c | 77 void lv_bidi_process(const char * str_in, char * str_out, lv_base_dir_t base_dir) in lv_bidi_process() argument 85 str_out[par_start] = str_in[par_start]; in lv_bidi_process() 91 … lv_bidi_process_paragraph(&str_in[par_start], &str_out[par_start], par_len, base_dir, NULL, 0); in lv_bidi_process() 95 str_out[par_start] = str_in[par_start]; in lv_bidi_process() 100 str_out[par_start] = '\0'; in lv_bidi_process() 182 void lv_bidi_process_paragraph(const char * str_in, char * str_out, uint32_t len, lv_base_dir_t bas… in lv_bidi_process_paragraph() argument 203 if(str_out) str_out[len] = '\0'; in lv_bidi_process_paragraph() 227 if(str_out) { in lv_bidi_process_paragraph() 228 lv_memcpy(&str_out[wr], str_in, rd); in lv_bidi_process_paragraph() 239 …rtl_reverse(str_out ? &str_out[wr] : NULL, str_in, rd, pos_conv_out ? &pos_conv_out[pos_conv_wr] :… in lv_bidi_process_paragraph() [all …]
|
D | lv_bidi_private.h | 39 void lv_bidi_process(const char * str_in, char * str_out, lv_base_dir_t base_dir); 88 void lv_bidi_process_paragraph(const char * str_in, char * str_out, uint32_t len, lv_base_dir_t bas…
|