Home
last modified time | relevance | path

Searched refs:font_data (Results 1 – 18 of 18) sorted by relevance

/openbmc/linux/drivers/video/console/
H A Dsticon.c64 static struct sti_cooked_font *font_data[MAX_NR_CONSOLES]; variable
82 sti_putc(sticon_sti, c, ypos, xpos, font_data[conp->vc_num]); in sticon_putc()
96 font_data[conp->vc_num]); in sticon_putcs()
112 font_data[conp->vc_num]); in sticon_cursor()
123 conp->state.y, conp->state.x, font_data[conp->vc_num]); in sticon_cursor()
143 font_data[conp->vc_num]); in sticon_scroll()
145 conp->vc_video_erase_char, font_data[conp->vc_num]); in sticon_scroll()
150 font_data[conp->vc_num]); in sticon_scroll()
152 conp->vc_video_erase_char, font_data[conp->vc_num]); in sticon_scroll()
161 if (font_data[unit] != STI_DEF_FONT) { in sticon_set_def_font()
[all …]
H A Dnewport_con.c38 static unsigned char *font_data[MAX_NR_CONSOLES]; variable
314 font_data[i] = FONT_DATA; in newport_startup()
375 p = &font_data[vc->vc_num][(charattr & 0xff) << 4]; in newport_putc()
426 p = &font_data[vc->vc_num][(scr_readw(s++) & 0xff) << 4]; in newport_putcs()
532 if (font_data[i] != FONT_DATA in newport_set_font()
533 && FNTSIZE(font_data[i]) == size in newport_set_font()
534 && !memcmp(font_data[i], new_data, size)) { in newport_set_font()
539 new_data = font_data[i]; in newport_set_font()
544 if (font_data[unit] != FONT_DATA) { in newport_set_font()
545 if (--REFCOUNT(font_data[unit]) == 0) in newport_set_font()
[all …]
/openbmc/qemu/hw/display/
H A Dvga-helpers.h25 static inline void vga_draw_glyph_line(uint8_t *d, uint32_t font_data, in vga_draw_glyph_line() argument
28 ((uint32_t *)d)[0] = (-((font_data >> 7)) & xorcol) ^ bgcol; in vga_draw_glyph_line()
29 ((uint32_t *)d)[1] = (-((font_data >> 6) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line()
30 ((uint32_t *)d)[2] = (-((font_data >> 5) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line()
31 ((uint32_t *)d)[3] = (-((font_data >> 4) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line()
32 ((uint32_t *)d)[4] = (-((font_data >> 3) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line()
33 ((uint32_t *)d)[5] = (-((font_data >> 2) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line()
34 ((uint32_t *)d)[6] = (-((font_data >> 1) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line()
35 ((uint32_t *)d)[7] = (-((font_data >> 0) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line()
42 uint32_t font_data, xorcol; in vga_draw_glyph8() local
[all …]
/openbmc/u-boot/drivers/video/
H A Dconsole_truetype.c116 u8 *font_data; member
509 priv->font_data = console_truetype_find_font(); in console_truetype_probe()
510 if (!priv->font_data) { in console_truetype_probe()
522 if (!stbtt_InitFont(font, priv->font_data, 0)) { in console_truetype_probe()
/openbmc/linux/lib/fonts/
H A Dfont_mini_4x6.c46 static const struct font_data fontdata_mini_4x6 = {
H A Dfont_6x8.c6 static const struct font_data fontdata_6x8 = {
H A Dfont_6x11.c12 static const struct font_data fontdata_6x11 = {
H A Dfont_7x14.c11 static const struct font_data fontdata_7x14 = {
H A Dfont_pearl_8x8.c17 static const struct font_data fontdata_pearl8x8 = {
H A Dfont_6x10.c6 static const struct font_data fontdata_6x10 = {
H A Dfont_8x8.c12 static const struct font_data fontdata_8x8 = {
H A Dfont_sun12x22.c6 static const struct font_data fontdata_sun12x22 = {
H A Dfont_sun8x16.c6 static const struct font_data fontdata_sun8x16 = {
H A Dfont_ter16x32.c7 static const struct font_data fontdata_ter16x32 = {
H A Dfont_10x18.c11 static const struct font_data fontdata_10x18 = {
H A Dfont_acorn_8x8.c8 static const struct font_data acorndata_8x8 = {
H A Dfont_8x16.c13 static const struct font_data fontdata_8x16 = {
/openbmc/linux/include/linux/
H A Dfont.h73 struct font_data { struct