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

/linux-master/drivers/video/console/
H A Dsticon.c157 unsigned int vpitch)
169 if ((w < 6) || (h < 6) || (w > 32) || (h > 32) || (vpitch != 32)
258 unsigned int vpitch, unsigned int flags)
260 return sticon_set_font(vc, font, vpitch);
156 sticon_set_font(struct vc_data *vc, const struct console_font *op, unsigned int vpitch) argument
257 sticon_font_set(struct vc_data *vc, const struct console_font *font, unsigned int vpitch, unsigned int flags) argument
H A Dvgacon.c1043 unsigned int vpitch, unsigned int flags)
1051 if (font->width != VGA_FONTWIDTH || font->height > 32 || vpitch != 32 ||
1064 static int vgacon_font_get(struct vc_data *c, struct console_font *font, unsigned int vpitch) argument
1066 if (vga_video_type < VIDEO_TYPE_EGAM || vpitch != 32)
1042 vgacon_font_set(struct vc_data *c, const struct console_font *font, unsigned int vpitch, unsigned int flags) argument
H A Dnewport_con.c500 unsigned int vpitch)
510 if ((w != 8) || (h != 16) || (vpitch != 32)
574 unsigned int vpitch, unsigned int flags)
576 return newport_set_font(vc->vc_num, font, vpitch);
499 newport_set_font(int unit, const struct console_font *op, unsigned int vpitch) argument
573 newport_font_set(struct vc_data *vc, const struct console_font *font, unsigned int vpitch, unsigned int flags) argument
/linux-master/include/linux/
H A Dconsole.h58 * @con_font_set: set console @vc font to @font with height @vpitch. @flags can
60 * @con_font_get: fetch the current font on @vc of height @vpitch into @font.
107 unsigned int vpitch, unsigned int flags);
109 unsigned int vpitch);
/linux-master/drivers/video/fbdev/core/
H A Dfbcon.c2265 static int fbcon_get_font(struct vc_data *vc, struct console_font *font, unsigned int vpitch) argument
2273 if (font->height > vpitch)
2286 memset(data + j, 0, vpitch - j);
2287 data += vpitch;
2297 memset(data + j, 0, 2*vpitch - j);
2298 data += 2*vpitch;
2312 memset(data, 0, 3 * (vpitch - j));
2313 data += 3 * (vpitch - j);
2322 memset(data + j, 0, 4 * vpitch - j);
2323 data += 4 * vpitch;
2460 fbcon_set_font(struct vc_data *vc, const struct console_font *font, unsigned int vpitch, unsigned int flags) argument
[all...]
/linux-master/drivers/tty/vt/
H A Dvt.c4713 unsigned int vpitch = op->op == KD_FONT_OP_GET_TALL ? op->height : 32; local
4715 if (vpitch > max_font_height)
4729 rc = vc->vc_sw->con_font_get(vc, &font, vpitch);
4737 c = (font.width+7)/8 * vpitch * font.charcount;
4763 unsigned int vpitch = op->op == KD_FONT_OP_SET_TALL ? op->height : 32; local
4774 if (vpitch < op->height)
4776 size = (op->width+7)/8 * vpitch * op->charcount;
4794 rc = vc->vc_sw->con_font_set(vc, &font, vpitch, op->flags);

Completed in 137 milliseconds