Searched refs:fontsize (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/sys/dev/syscons/
H A Dscvidctl.c137 int fontsize, int fontwidth)
152 if (fontsize <= 0)
153 fontsize = info.vi_cheight;
154 if (fontsize < 14)
155 fontsize = 8;
156 else if (fontsize >= 16)
157 fontsize = 16;
159 fontsize = 14;
161 switch (fontsize) {
216 scp->ypixel = scp->ysize*fontsize;
136 sc_set_text_mode(scr_stat *scp, struct tty *tp, int mode, int xsize, int ysize, int fontsize, int fontwidth) argument
306 sc_set_pixel_mode(scr_stat *scp, struct tty *tp, int xsize, int ysize, int fontsize, int fontwidth) argument
[all...]
H A Dsyscons.h309 int font_size; /* fontsize in Y direction */
310 int font_width; /* fontsize in X direction */
637 int xsize, int ysize, int fontsize,
641 int ysize, int fontsize, int font_width);
H A Dsyscons.c431 int fontsize; local
461 fontsize = info.vi_cheight;
463 fontsize = scp->font_size;
465 if (fontsize < 14)
466 fontsize = 8;
467 else if (fontsize >= 16)
468 fontsize = 16;
470 fontsize = 14;
472 switch (fontsize) {
509 scp->ysize = scp->ypixel / fontsize;
[all...]
/freebsd-11-stable/sys/dev/fb/
H A Dvga.c1793 vga_save_font(video_adapter_t *adp, int page, int fontsize, int fontwidth, argument
1807 if (fontsize < 14) {
1809 fontsize = 8;
1810 } else if (fontsize >= 32) {
1811 fontsize = 32;
1812 } else if (fontsize >= 16) {
1814 fontsize = 16;
1817 fontsize = 14;
1838 if (fontsize == 32) {
1839 bcopy_fromio((uintptr_t)segment + ch*32, data, fontsize*coun
1873 vga_load_font(video_adapter_t *adp, int page, int fontsize, int fontwidth, u_char *data, int ch, int count) argument
1922 bcopy_toio(data, (uintptr_t)segment + c*32, fontsize); local
[all...]
H A Ds3_pci.c307 s3lfb_save_font(video_adapter_t *adp, int page, int fontsize, int fontwidth, argument
310 return (*prevvidsw->save_font)(adp, page, fontsize, fontwidth, data,
315 s3lfb_load_font(video_adapter_t *adp, int page, int fontsize, int fontwidth, argument
318 return (*prevvidsw->load_font)(adp, page, fontsize, fontwidth, data,
H A Dvesa.c1405 vesa_save_font(video_adapter_t *adp, int page, int fontsize, int fontwidth, argument
1409 return ((*prevvidsw->save_font)(adp, page, fontsize, fontwidth, data,
1414 vesa_load_font(video_adapter_t *adp, int page, int fontsize, int fontwidth, argument
1418 return ((*prevvidsw->load_font)(adp, page, fontsize, fontwidth, data,

Completed in 96 milliseconds