Lines Matching refs:da

1790 	struct vis_consdisplay da;  in tem_safe_text_display()  local
1798 da.data = (uint8_t *)&c; in tem_safe_text_display()
1799 da.width = 1; in tem_safe_text_display()
1800 da.row = row; in tem_safe_text_display()
1801 da.col = col; in tem_safe_text_display()
1805 tem_safe_set_color(&fg, &da.fg_color); in tem_safe_text_display()
1806 tem_safe_set_color(&bg, &da.bg_color); in tem_safe_text_display()
1808 tems_safe_display(&da, credp, called_from); in tem_safe_text_display()
1809 da.col++; in tem_safe_text_display()
1830 struct vis_consdisplay da;
1835 da.data = image;
1836 da.width = (screen_size_t)width;
1837 da.height = (screen_size_t)height;
1838 da.row = row;
1839 da.col = col;
1841 tems_safe_display(&da, credp, called_from);
1856 struct vis_conscopy da; in tem_safe_text_copy() local
1861 da.s_row = s_row; in tem_safe_text_copy()
1862 da.s_col = s_col; in tem_safe_text_copy()
1863 da.e_row = e_row; in tem_safe_text_copy()
1864 da.e_col = e_col; in tem_safe_text_copy()
1865 da.t_row = t_row; in tem_safe_text_copy()
1866 da.t_col = t_col; in tem_safe_text_copy()
1868 tems_safe_copy(&da, credp, called_from); in tem_safe_text_copy()
1904 struct vis_consdisplay da; in tem_safe_pix_display() local
1910 da.data = (uchar_t *)tem->tvs_pix_data; in tem_safe_pix_display()
1911 da.width = (screen_size_t)tems.ts_font.vf_width; in tem_safe_pix_display()
1912 da.height = (screen_size_t)tems.ts_font.vf_height; in tem_safe_pix_display()
1913 da.row = (row * da.height) + tems.ts_p_offset.y; in tem_safe_pix_display()
1914 da.col = (col * da.width) + tems.ts_p_offset.x; in tem_safe_pix_display()
1920 tems_safe_display(&da, credp, called_from); in tem_safe_pix_display()
1922 da.col += da.width; in tem_safe_pix_display()
2667 struct vis_consdisplay da; in tem_safe_pix_cls_range() local
2679 da.width = (screen_size_t)tems.ts_font.vf_width; in tem_safe_pix_cls_range()
2680 da.height = (screen_size_t)tems.ts_font.vf_height; in tem_safe_pix_cls_range()
2688 da.data = (uchar_t *)tem->tvs_pix_data; in tem_safe_pix_cls_range()
2691 da.row = (row + row_add) * da.height + offset_y; in tem_safe_pix_cls_range()
2692 da.col = col * da.width + offset_x; in tem_safe_pix_cls_range()
2694 tems_safe_display(&da, credp, called_from); in tem_safe_pix_cls_range()
2695 da.col += da.width; in tem_safe_pix_cls_range()