Lines Matching defs:da
1330 struct vis_consdisplay da;
1335 da.data = string;
1336 da.width = (screen_size_t)count;
1337 da.row = row;
1338 da.col = col;
1340 da.fg_color = fg_color;
1341 da.bg_color = bg_color;
1343 tems_safe_display(&da, credp, called_from);
1362 struct vis_consdisplay da;
1367 da.data = image;
1368 da.width = (screen_size_t)width;
1369 da.height = (screen_size_t)height;
1370 da.row = row;
1371 da.col = col;
1373 tems_safe_display(&da, credp, called_from);
1388 struct vis_conscopy da;
1393 da.s_row = s_row;
1394 da.s_col = s_col;
1395 da.e_row = e_row;
1396 da.e_col = e_col;
1397 da.t_row = t_row;
1398 da.t_col = t_col;
1400 tems_safe_copy(&da, credp, called_from);
1408 struct vis_consdisplay da;
1413 da.data = tems.ts_blank_line;
1414 da.width = (screen_size_t)count;
1415 da.row = row;
1416 da.col = col;
1418 tem_safe_get_color(tem, &da.fg_color, &da.bg_color,
1420 tems_safe_display(&da, credp, called_from);
1432 struct vis_consdisplay da;
1438 da.data = (uchar_t *)tem->tvs_pix_data;
1439 da.width = tems.ts_font.width;
1440 da.height = tems.ts_font.height;
1441 da.row = (row * da.height) + tems.ts_p_offset.y;
1442 da.col = (col * da.width) + tems.ts_p_offset.x;
1446 tems_safe_display(&da, credp, called_from);
1447 da.col += da.width;
2247 struct vis_consdisplay da;
2259 da.width = tems.ts_font.width;
2260 da.height = tems.ts_font.height;
2265 da.data = (uchar_t *)tem->tvs_pix_data;
2268 da.row = (row + row_add) * da.height + offset_y;
2269 da.col = col * da.width + offset_x;
2271 tems_safe_display(&da, credp, called_from);
2272 da.col += da.width;