Home
last modified time | relevance | path

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

/lvgl-latest/src/misc/
Dlv_txt_ap.c149 char * txt_out_temp; in _lv_txt_ap_proc() local
224 txt_out_temp = txt_out; in _lv_txt_ap_proc()
229 *(txt_out_temp++) = ch_enc[i] & 0xFF; in _lv_txt_ap_proc()
232 *(txt_out_temp++) = ((ch_enc[i] >> 6) & 0x1F) | 0xC0; in _lv_txt_ap_proc()
233 *(txt_out_temp++) = ((ch_enc[i] >> 0) & 0x3F) | 0x80; in _lv_txt_ap_proc()
236 *(txt_out_temp++) = ((ch_enc[i] >> 12) & 0x0F) | 0xE0; in _lv_txt_ap_proc()
237 *(txt_out_temp++) = ((ch_enc[i] >> 6) & 0x3F) | 0x80; in _lv_txt_ap_proc()
238 *(txt_out_temp++) = ((ch_enc[i] >> 0) & 0x3F) | 0x80; in _lv_txt_ap_proc()
241 *(txt_out_temp++) = ((ch_enc[i] >> 18) & 0x07) | 0xF0; in _lv_txt_ap_proc()
242 *(txt_out_temp++) = ((ch_enc[i] >> 12) & 0x3F) | 0x80; in _lv_txt_ap_proc()
[all …]