tag | line | file | source code |
fontheight | 2656 | drivers/char/console.c | int con_adjust_height(unsigned long fontheight) |
fontheight | 2661 | drivers/char/console.c | if (fontheight > 32 || (video_type != VIDEO_TYPE_VGAC && |
fontheight | 2665 | drivers/char/console.c | if ( fontheight == video_font_height || fontheight == 0 ) |
fontheight | 2668 | drivers/char/console.c | video_font_height = fontheight; |
fontheight | 2670 | drivers/char/console.c | rows = video_scan_lines/fontheight; /* Number of video rows we end up with */ |
fontheight | 2671 | drivers/char/console.c | maxscan = rows*fontheight - 1; /* Scan lines to actually display-1 */ |
fontheight | 2698 | drivers/char/console.c | fsr = (fsr & 0xe0) + (fontheight-1); /* Font size register */ |
fontheight | 2699 | drivers/char/console.c | curs = (curs & 0xc0) + fontheight - (fontheight < 10 ? 2 : 3); |
fontheight | 2700 | drivers/char/console.c | cure = (cure & 0xe0) + fontheight - (fontheight < 10 ? 1 : 2); |
fontheight | 80 | drivers/char/vt.c | extern int con_adjust_height(unsigned long fontheight); |