Home
last modified time | relevance | path

Searched refs:vpitch (Results 1 – 3 of 3) sorted by relevance

/linux/drivers/video/console/
H A Dsticon.c157 unsigned int vpitch) in sticon_set_font() argument
169 if ((w < 6) || (h < 6) || (w > 32) || (h > 32) || (vpitch != 32) in sticon_set_font()
258 unsigned int vpitch, unsigned int flags) in sticon_font_set() argument
260 return sticon_set_font(vc, font, vpitch); in sticon_font_set()
H A Dvgacon.c1043 unsigned int vpitch, unsigned int flags) in vgacon_font_set() argument
1051 if (font->width != VGA_FONTWIDTH || font->height > 32 || vpitch != 32 || in vgacon_font_set()
1064 static int vgacon_font_get(struct vc_data *c, struct console_font *font, unsigned int vpitch) in vgacon_font_get() argument
1066 if (vga_video_type < VIDEO_TYPE_EGAM || vpitch != 32) in vgacon_font_get()
/linux/drivers/tty/vt/
H A Dvt.c4916 unsigned int vpitch = op->op == KD_FONT_OP_GET_TALL ? op->height : 32; in con_font_get() local
4918 if (vpitch > max_font_height) in con_font_get()
4935 int ret = vc->vc_sw->con_font_get(vc, &font, vpitch); in con_font_get()
4940 c = DIV_ROUND_UP(font.width, 8) * vpitch * font.charcount; in con_font_get()
4961 unsigned int vpitch = op->op == KD_FONT_OP_SET_TALL ? op->height : 32; in con_font_set() local
4970 if (vpitch < op->height) in con_font_set()
4972 size = DIV_ROUND_UP(op->width, 8) * vpitch * op->charcount; in con_font_set()
4994 return vc->vc_sw->con_font_set(vc, &font, vpitch, op->flags); in con_font_set()