Lines Matching refs:da
2304 struct vis_consdisplay da; in tem_text_display() local
2312 da.data = (unsigned char *)&c; in tem_text_display()
2313 da.width = 1; in tem_text_display()
2314 da.row = row; in tem_text_display()
2315 da.col = col; in tem_text_display()
2319 tem_set_color(&fg, &da.fg_color); in tem_text_display()
2320 tem_set_color(&bg, &da.bg_color); in tem_text_display()
2322 tems_display(&da); in tem_text_display()
2323 da.col++; in tem_text_display()
2354 struct vis_conscopy da; in tem_text_copy() local
2356 da.s_row = s_row; in tem_text_copy()
2357 da.s_col = s_col; in tem_text_copy()
2358 da.e_row = e_row; in tem_text_copy()
2359 da.e_col = e_col; in tem_text_copy()
2360 da.t_row = t_row; in tem_text_copy()
2361 da.t_col = t_col; in tem_text_copy()
2362 tems_copy(&da); in tem_text_copy()
2391 struct vis_consdisplay da; in tem_pix_display() local
2394 da.data = (uint8_t *)tem->tvs_pix_data; in tem_pix_display()
2395 da.width = tems.ts_font.vf_width; in tem_pix_display()
2396 da.height = tems.ts_font.vf_height; in tem_pix_display()
2397 da.row = (row * da.height) + tems.ts_p_offset.y; in tem_pix_display()
2398 da.col = (col * da.width) + tems.ts_p_offset.x; in tem_pix_display()
2402 tems_display(&da); in tem_pix_display()
2403 da.col += da.width; in tem_pix_display()
2958 struct vis_consdisplay da; in tem_pix_cls_range() local
2967 da.width = tems.ts_font.vf_width; in tem_pix_cls_range()
2968 da.height = tems.ts_font.vf_height; in tem_pix_cls_range()
2976 da.data = (uint8_t *)tem->tvs_pix_data; in tem_pix_cls_range()
2979 da.row = (row + row_add) * da.height + offset_y; in tem_pix_cls_range()
2980 da.col = col * da.width + offset_x; in tem_pix_cls_range()
2982 tems_display(&da); in tem_pix_cls_range()
2983 da.col += da.width; in tem_pix_cls_range()