Lines Matching refs:da
1280 struct vis_consdisplay da; in tem_safe_text_display() local
1285 da.data = string; in tem_safe_text_display()
1286 da.width = (screen_size_t)count; in tem_safe_text_display()
1287 da.row = row; in tem_safe_text_display()
1288 da.col = col; in tem_safe_text_display()
1290 da.fg_color = fg_color; in tem_safe_text_display()
1291 da.bg_color = bg_color; in tem_safe_text_display()
1293 tems_safe_display(&da, credp, called_from); in tem_safe_text_display()
1312 struct vis_consdisplay da; in tem_safe_image_display() local
1317 da.data = image; in tem_safe_image_display()
1318 da.width = (screen_size_t)width; in tem_safe_image_display()
1319 da.height = (screen_size_t)height; in tem_safe_image_display()
1320 da.row = row; in tem_safe_image_display()
1321 da.col = col; in tem_safe_image_display()
1323 tems_safe_display(&da, credp, called_from); in tem_safe_image_display()
1338 struct vis_conscopy da; in tem_safe_text_copy() local
1343 da.s_row = s_row; in tem_safe_text_copy()
1344 da.s_col = s_col; in tem_safe_text_copy()
1345 da.e_row = e_row; in tem_safe_text_copy()
1346 da.e_col = e_col; in tem_safe_text_copy()
1347 da.t_row = t_row; in tem_safe_text_copy()
1348 da.t_col = t_col; in tem_safe_text_copy()
1350 tems_safe_copy(&da, credp, called_from); in tem_safe_text_copy()
1358 struct vis_consdisplay da; in tem_safe_text_cls() local
1363 da.data = tems.ts_blank_line; in tem_safe_text_cls()
1364 da.width = (screen_size_t)count; in tem_safe_text_cls()
1365 da.row = row; in tem_safe_text_cls()
1366 da.col = col; in tem_safe_text_cls()
1368 tem_safe_get_color(tem, &da.fg_color, &da.bg_color, in tem_safe_text_cls()
1370 tems_safe_display(&da, credp, called_from); in tem_safe_text_cls()
1382 struct vis_consdisplay da; in tem_safe_pix_display() local
1388 da.data = (uchar_t *)tem->tvs_pix_data; in tem_safe_pix_display()
1389 da.width = tems.ts_font.width; in tem_safe_pix_display()
1390 da.height = tems.ts_font.height; in tem_safe_pix_display()
1391 da.row = (row * da.height) + tems.ts_p_offset.y; in tem_safe_pix_display()
1392 da.col = (col * da.width) + tems.ts_p_offset.x; in tem_safe_pix_display()
1396 tems_safe_display(&da, credp, called_from); in tem_safe_pix_display()
1397 da.col += da.width; in tem_safe_pix_display()
2193 struct vis_consdisplay da; in tem_safe_pix_cls_range() local
2205 da.width = tems.ts_font.width; in tem_safe_pix_cls_range()
2206 da.height = tems.ts_font.height; in tem_safe_pix_cls_range()
2211 da.data = (uchar_t *)tem->tvs_pix_data; in tem_safe_pix_cls_range()
2214 da.row = (row + row_add) * da.height + offset_y; in tem_safe_pix_cls_range()
2215 da.col = col * da.width + offset_x; in tem_safe_pix_cls_range()
2217 tems_safe_display(&da, credp, called_from); in tem_safe_pix_cls_range()
2218 da.col += da.width; in tem_safe_pix_cls_range()