Lines Matching refs:txt_out_temp
150 char * txt_out_temp; in lv_text_ap_proc() local
225 txt_out_temp = txt_out; in lv_text_ap_proc()
230 *(txt_out_temp++) = ch_enc[i] & 0xFF; in lv_text_ap_proc()
233 *(txt_out_temp++) = ((ch_enc[i] >> 6) & 0x1F) | 0xC0; in lv_text_ap_proc()
234 *(txt_out_temp++) = ((ch_enc[i] >> 0) & 0x3F) | 0x80; in lv_text_ap_proc()
237 *(txt_out_temp++) = ((ch_enc[i] >> 12) & 0x0F) | 0xE0; in lv_text_ap_proc()
238 *(txt_out_temp++) = ((ch_enc[i] >> 6) & 0x3F) | 0x80; in lv_text_ap_proc()
239 *(txt_out_temp++) = ((ch_enc[i] >> 0) & 0x3F) | 0x80; in lv_text_ap_proc()
242 *(txt_out_temp++) = ((ch_enc[i] >> 18) & 0x07) | 0xF0; in lv_text_ap_proc()
243 *(txt_out_temp++) = ((ch_enc[i] >> 12) & 0x3F) | 0x80; in lv_text_ap_proc()
244 *(txt_out_temp++) = ((ch_enc[i] >> 6) & 0x3F) | 0x80; in lv_text_ap_proc()
245 *(txt_out_temp++) = ((ch_enc[i] >> 0) & 0x3F) | 0x80; in lv_text_ap_proc()
250 *(txt_out_temp) = '\0'; in lv_text_ap_proc()