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

/freebsd-13-stable/sys/dev/syscons/
H A Dscvidctl.c138 int fontsize, int fontwidth)
153 if (fontsize <= 0)
154 fontsize = info.vi_cheight;
155 if (fontsize < 14)
156 fontsize = 8;
157 else if (fontsize >= 16)
158 fontsize = 16;
160 fontsize = 14;
162 switch (fontsize) {
217 scp->ypixel = scp->ysize*fontsize;
137 sc_set_text_mode(scr_stat *scp, struct tty *tp, int mode, int xsize, int ysize, int fontsize, int fontwidth) argument
307 sc_set_pixel_mode(scr_stat *scp, struct tty *tp, int xsize, int ysize, int fontsize, int fontwidth) argument
[all...]
H A Dsyscons.h295 int font_size; /* fontsize in Y direction */
296 int font_width; /* fontsize in X direction */
622 int xsize, int ysize, int fontsize,
626 int ysize, int fontsize, int font_width);
H A Dsyscons.c452 int fontsize; local
482 fontsize = info.vi_cheight;
484 fontsize = scp->font_size;
486 if (fontsize < 14)
487 fontsize = 8;
488 else if (fontsize >= 16)
489 fontsize = 16;
491 fontsize = 14;
493 switch (fontsize) {
530 scp->ysize = scp->ypixel / fontsize;
[all...]
/freebsd-13-stable/sys/dev/fb/
H A Dvga.c1840 vga_save_font(video_adapter_t *adp, int page, int fontsize, int fontwidth, argument
1854 if (fontsize < 14) {
1856 fontsize = 8;
1857 } else if (fontsize >= 32) {
1858 fontsize = 32;
1859 } else if (fontsize >= 16) {
1861 fontsize = 16;
1864 fontsize = 14;
1885 if (fontsize == 32) {
1886 bcopy_fromio((uintptr_t)segment + ch*32, data, fontsize*coun
1920 vga_load_font(video_adapter_t *adp, int page, int fontsize, int fontwidth, u_char *data, int ch, int count) argument
1969 bcopy_toio(data, (uintptr_t)segment + c*32, fontsize); local
[all...]
H A Ds3_pci.c309 s3lfb_save_font(video_adapter_t *adp, int page, int fontsize, int fontwidth, argument
312 return (*prevvidsw->save_font)(adp, page, fontsize, fontwidth, data,
317 s3lfb_load_font(video_adapter_t *adp, int page, int fontsize, int fontwidth, argument
320 return (*prevvidsw->load_font)(adp, page, fontsize, fontwidth, data,
H A Dvesa.c1416 vesa_save_font(video_adapter_t *adp, int page, int fontsize, int fontwidth, argument
1420 return ((*prevvidsw->save_font)(adp, page, fontsize, fontwidth, data,
1425 vesa_load_font(video_adapter_t *adp, int page, int fontsize, int fontwidth, argument
1429 return ((*prevvidsw->load_font)(adp, page, fontsize, fontwidth, data,

Completed in 102 milliseconds