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