Home
last modified time | relevance | path

Searched refs:ts_font (Results 1 – 9 of 9) sorted by relevance

/illumos-gate/usr/src/boot/common/
H A Dtem.c475 tems.ts_font.vf_map[i] = in tems_setup_font()
477 tems.ts_font.vf_map_count[i] = in tems_setup_font()
481 tems.ts_font.vf_bytes = font_data->font->vf_bytes; in tems_setup_font()
482 tems.ts_font.vf_width = font_data->font->vf_width; in tems_setup_font()
483 tems.ts_font.vf_height = font_data->font->vf_height; in tems_setup_font()
538 (tems.ts_c_dimension.height * tems.ts_font.vf_height)) / 2; in tems_setup_terminal()
540 (tems.ts_c_dimension.width * tems.ts_font.vf_width)) / 2; in tems_setup_terminal()
542 tems.ts_font.vf_width * tems.ts_font.vf_height; in tems_setup_terminal()
558 snprintf(env, sizeof (env), "%dx%d", tems.ts_font.vf_width, in tems_setup_terminal()
559 tems.ts_font.vf_height); in tems_setup_terminal()
[all …]
H A Dgfx_fb.c1485 vf_width = tems.ts_font.vf_width; in gfx_term_drawrect()
1486 vf_height = tems.ts_font.vf_height; in gfx_term_drawrect()
1696 da.row / tems.ts_font.vf_height, in gfx_fb_putimage()
1697 da.col / tems.ts_font.vf_width, in gfx_fb_putimage()
1698 (da.row + da.height) / tems.ts_font.vf_height, in gfx_fb_putimage()
1699 (da.col + da.width) / tems.ts_font.vf_width); in gfx_fb_putimage()
H A Dmodule.c552 if (tems.ts_font.vf_width == fl->font_data->width && in build_font_module()
553 tems.ts_font.vf_height == fl->font_data->height) { in build_font_module()
/illumos-gate/usr/src/uts/common/io/
H A Dtem.c559 tems.ts_font.vf_map[i] = in tems_setup_font()
561 tems.ts_font.vf_map_count[i] = in tems_setup_font()
565 tems.ts_font.vf_bytes = font_data->font->vf_bytes; in tems_setup_font()
566 tems.ts_font.vf_width = font_data->font->vf_width; in tems_setup_font()
567 tems.ts_font.vf_height = font_data->font->vf_height; in tems_setup_font()
614 (tems.ts_c_dimension.height * tems.ts_font.vf_height)) / 2; in tems_setup_terminal()
616 (tems.ts_c_dimension.width * tems.ts_font.vf_width)) / 2; in tems_setup_terminal()
619 tems.ts_font.vf_width * tems.ts_font.vf_height; in tems_setup_terminal()
839 ma.s_row = nrows * tems.ts_font.vf_height; in tem_prom_scroll_up()
850 width = tems.ts_font.vf_width; in tem_prom_scroll_up()
[all …]
H A Dtem_safe.c1911 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()
1953 ma.s_row = s_row * tems.ts_font.vf_height + tems.ts_p_offset.y; in tem_safe_pix_copy()
1954 ma.e_row = (e_row + 1) * tems.ts_font.vf_height + in tem_safe_pix_copy()
1956 ma.t_row = t_row * tems.ts_font.vf_height + tems.ts_p_offset.y; in tem_safe_pix_copy()
1968 ma.s_col = s_col * tems.ts_font.vf_width; in tem_safe_pix_copy()
1971 ma.t_col = t_col * tems.ts_font.vf_width; in tem_safe_pix_copy()
1973 ma.s_col = s_col * tems.ts_font.vf_width + tems.ts_p_offset.x; in tem_safe_pix_copy()
1974 ma.e_col = (e_col + 1) * tems.ts_font.vf_width + in tem_safe_pix_copy()
1976 ma.t_col = t_col * tems.ts_font.vf_width + tems.ts_p_offset.x; in tem_safe_pix_copy()
[all …]
/illumos-gate/usr/src/common/ficl/
H A Dloader.c96 x1 = tems.ts_p_offset.x + x1 * tems.ts_font.vf_width; in ficl_term_putimage()
97 y1 = tems.ts_p_offset.y + y1 * tems.ts_font.vf_height; in ficl_term_putimage()
100 x2 * tems.ts_font.vf_width; in ficl_term_putimage()
104 y2 * tems.ts_font.vf_height; in ficl_term_putimage()
/illumos-gate/usr/src/boot/sys/sys/
H A Dtem_impl.h252 struct font ts_font; /* font table */ member
/illumos-gate/usr/src/uts/common/sys/
H A Dtem_impl.h277 struct font ts_font; /* font table */ member
/illumos-gate/usr/src/boot/i386/libi386/
H A Dvidconsole.c790 from = font_lookup(&tems.ts_font, c); in vidc_install_font()