tag | line | file | source code |
fontheight | 2621 | drivers/char/console.c | int con_adjust_height(unsigned long fontheight) |
fontheight | 2626 | drivers/char/console.c | if (fontheight > 32 || (video_type != VIDEO_TYPE_VGAC && |
fontheight | 2630 | drivers/char/console.c | if ( fontheight == video_font_height || fontheight == 0 ) |
fontheight | 2633 | drivers/char/console.c | video_font_height = fontheight; |
fontheight | 2635 | drivers/char/console.c | rows = video_scan_lines/fontheight; /* Number of video rows we end up with */ |
fontheight | 2636 | drivers/char/console.c | maxscan = rows*fontheight - 1; /* Scan lines to actually display-1 */ |
fontheight | 2663 | drivers/char/console.c | fsr = (fsr & 0xe0) + (fontheight-1); /* Font size register */ |
fontheight | 2664 | drivers/char/console.c | curs = (curs & 0xc0) + fontheight - (fontheight < 10 ? 2 : 3); |
fontheight | 2665 | drivers/char/console.c | cure = (cure & 0xe0) + fontheight - (fontheight < 10 ? 1 : 2); |
fontheight | 81 | drivers/char/vt.c | extern int con_adjust_height(unsigned long fontheight); |