Home
last modified time | relevance | path

Searched refs:font (Results 1 – 32 of 32) sorted by relevance

/linux-4.4.14/lib/fonts/
DMakefile3 font-objs := fonts.o
5 font-objs-$(CONFIG_FONT_SUN8x16) += font_sun8x16.o
6 font-objs-$(CONFIG_FONT_SUN12x22) += font_sun12x22.o
7 font-objs-$(CONFIG_FONT_8x8) += font_8x8.o
8 font-objs-$(CONFIG_FONT_8x16) += font_8x16.o
9 font-objs-$(CONFIG_FONT_6x11) += font_6x11.o
10 font-objs-$(CONFIG_FONT_7x14) += font_7x14.o
11 font-objs-$(CONFIG_FONT_10x18) += font_10x18.o
12 font-objs-$(CONFIG_FONT_PEARL_8x8) += font_pearl_8x8.o
13 font-objs-$(CONFIG_FONT_ACORN_8x8) += font_acorn_8x8.o
[all …]
DKconfig24 bool "VGA 8x8 font" if FONTS
28 This is the "high resolution" font for the VGA frame buffer (the one
31 Note that this is a poor quality font. The VGA 8x16 font is quite a
38 bool "VGA 8x16 font" if FONTS
41 This is the "high resolution" font for the VGA frame buffer (the one
47 bool "Mac console 6x11 font (not supported by all drivers)" if FONTS
51 Small console font with Macintosh-style high-half glyphs. Some Mac
55 bool "console 7x14 font (not supported by all drivers)" if FONTS
58 Console font with characters just a bit smaller than the default.
59 If the standard 8x16 font is a little too big for you, say Y.
[all …]
/linux-4.4.14/arch/x86/platform/efi/
Dearly_printk.c15 static const struct font_desc *font; variable
88 for (i = 0; i < height - font->height; i++) { in early_efi_scroll_up()
93 src = early_efi_map((i + font->height) * len, len); in early_efi_scroll_up()
114 src = font->data + c * font->height; in early_efi_write_char()
147 linemax = (si->lfb_width - efi_x) / font->width; in early_efi_write()
151 for (h = 0; h < font->height; h++) { in early_efi_write()
164 x += font->width; in early_efi_write()
172 efi_x += count * font->width; in early_efi_write()
177 efi_y += font->height; in early_efi_write()
184 efi_y += font->height; in early_efi_write()
[all …]
/linux-4.4.14/arch/sparc/kernel/
Dbtext.c196 unsigned char *font = &vga_font[((unsigned int)c) * 16]; in draw_byte() local
202 draw_byte_32(font, (unsigned int *)base, rb); in draw_byte()
206 draw_byte_16(font, (unsigned int *)base, rb); in draw_byte()
209 draw_byte_8(font, (unsigned int *)base, rb); in draw_byte()
241 static void draw_byte_32(unsigned char *font, unsigned int *base, int rb) in draw_byte_32() argument
249 bits = *font++; in draw_byte_32()
262 static void draw_byte_16(unsigned char *font, unsigned int *base, int rb) in draw_byte_16() argument
271 bits = *font++; in draw_byte_16()
280 static void draw_byte_8(unsigned char *font, unsigned int *base, int rb) in draw_byte_8() argument
289 bits = *font++; in draw_byte_8()
/linux-4.4.14/drivers/video/console/
Dsticore.c139 .font_start_addr= STI_PTR(sti->font->raw), in sti_putc()
557 struct sti_cooked_font *font; in sti_select_font() local
562 if ((font = sti_select_fbfont(rom, font_name[index]))) in sti_select_font()
563 return font; in sti_select_font()
569 for (font = rom->font_start, i = font_index[index]; in sti_select_font()
570 font && (i > 0); in sti_select_font()
571 font = font->next_font, i--); in sti_select_font()
573 if (font) in sti_select_font()
574 return font; in sti_select_font()
633 struct sti_cooked_font *font; in sti_search_font() local
[all …]
Dfbcon.c923 const struct font_desc *font = NULL; in fbcon_startup() local
992 if (!fontname[0] || !(font = find_font(fontname))) in fbcon_startup()
993 font = get_default_font(info->var.xres, in fbcon_startup()
997 vc->vc_font.width = font->width; in fbcon_startup()
998 vc->vc_font.height = font->height; in fbcon_startup()
999 vc->vc_font.data = (void *)(p->fontdata = font->data); in fbcon_startup()
1063 const struct font_desc *font = NULL; in fbcon_init() local
1065 if (!fontname[0] || !(font = find_font(fontname))) in fbcon_init()
1066 font = get_default_font(info->var.xres, in fbcon_init()
1070 vc->vc_font.width = font->width; in fbcon_init()
[all …]
Dvgacon.c1271 static int vgacon_font_set(struct vc_data *c, struct console_font *font, unsigned flags) in vgacon_font_set() argument
1273 unsigned charcount = font->charcount; in vgacon_font_set()
1279 if (font->width != VGA_FONTWIDTH || in vgacon_font_set()
1283 rc = vgacon_do_font_op(&vgastate, font->data, 1, charcount == 512); in vgacon_font_set()
1288 rc = vgacon_adjust_height(c, font->height); in vgacon_font_set()
1292 static int vgacon_font_get(struct vc_data *c, struct console_font *font) in vgacon_font_get() argument
1297 font->width = VGA_FONTWIDTH; in vgacon_font_get()
1298 font->height = c->vc_font.height; in vgacon_font_get()
1299 font->charcount = vga_512_chars ? 512 : 256; in vgacon_font_get()
1300 if (!font->data) in vgacon_font_get()
[all …]
Dnewport_con.c572 static int newport_font_set(struct vc_data *vc, struct console_font *font, unsigned flags) in newport_font_set() argument
574 return newport_set_font(vc->vc_num, font); in newport_font_set()
/linux-4.4.14/arch/powerpc/kernel/
Dbtext.c425 static void draw_byte_32(unsigned char *font, unsigned int *base, int rb) in draw_byte_32() argument
433 bits = *font++; in draw_byte_32()
446 static inline void draw_byte_16(unsigned char *font, unsigned int *base, int rb) in draw_byte_16() argument
455 bits = *font++; in draw_byte_16()
464 static inline void draw_byte_8(unsigned char *font, unsigned int *base, int rb) in draw_byte_8() argument
473 bits = *font++; in draw_byte_8()
483 unsigned char *font = &vga_font[((unsigned int)c) * 16]; in draw_byte() local
490 draw_byte_32(font, (unsigned int *)base, rb); in draw_byte()
494 draw_byte_16(font, (unsigned int *)base, rb); in draw_byte()
497 draw_byte_8(font, (unsigned int *)base, rb); in draw_byte()
/linux-4.4.14/arch/unicore32/boot/compressed/
DMakefile20 $(obj)/font.c: $(srctree)/lib/fonts/font_8x8.c
38 targets := vmlinux vmlinux.lds font.o font.c head.o misc.o \
/linux-4.4.14/arch/arm/boot/compressed/
DMakefile31 OBJS += ll_char_wr.o font.o
95 bswapsdi2.S font.o font.c head.o misc.o $(OBJS)
184 $(obj)/font.c: $(FONTC)
D.gitignore3 font.c
/linux-4.4.14/drivers/usb/misc/sisusbvga/
Dsisusb_con.c1296 sisusbcon_font_set(struct vc_data *c, struct console_font *font, in sisusbcon_font_set() argument
1300 unsigned charcount = font->charcount; in sisusbcon_font_set()
1302 if (font->width != 8 || (charcount != 256 && charcount != 512)) in sisusbcon_font_set()
1326 memcpy(sisusb->font_backup, font->data, charcount * 32); in sisusbcon_font_set()
1328 sisusb->font_backup_height = font->height; in sisusbcon_font_set()
1334 return sisusbcon_do_font_op(sisusb, 1, 2, font->data, in sisusbcon_font_set()
1337 c, font->height, 1); in sisusbcon_font_set()
1342 sisusbcon_font_get(struct vc_data *c, struct console_font *font) in sisusbcon_font_get() argument
1352 font->width = 8; in sisusbcon_font_get()
1353 font->height = c->vc_font.height; in sisusbcon_font_get()
[all …]
/linux-4.4.14/Documentation/fb/
Dpvr2fb.txt28 font:X - default font to use. All fonts are supported, including the
29 SUN12x22 font which is very nice at high resolutions.
Dtgafb.txt43 font:X - default font to use. All fonts are supported, including the
44 SUN12x22 font which is very nice at high resolutions.
Dfbcon.txt14 high resolutions, varying font types, display rotation, primitive multihead,
37 usually an 8x16 font.
77 1. fbcon=font:<name>
79 Select the initial font to use. The value 'name' can be any of the
83 Note, not all drivers can handle font with widths not divisible by 8,
Dmatroxfb.txt199 font data, it must be >= (fontwidth*fontheight*chars_in_font)/8.
337 (for 32bpp it is about 3GB of data (exactly 3000 MB); for 8x16 font in
/linux-4.4.14/Documentation/
Dunicode.txt12 characters to fonts. By downloading a single Unicode-to-font table,
14 the font as indicated.
26 In particular, ESC ( U is no longer "straight to font", since the font
28 permits for example the use of block graphics even with a Latin-1 font
44 hard-coded to map directly to the loaded font, bypassing the
113 Unicode practice these differences are considered font variants.
Dsvga.txt25 EXTENDED_VGA - Standard 8-pixel font mode: 80x43 on EGA, 80x50 on VGA.
125 0x0f01 standard with 8-point font: 80x43 on EGA, 80x50 on VGA
126 0x0f02 VGA 80x43 (VGA switched to 350 scanlines with a 8-point font)
127 0x0f03 VGA 80x28 (standard VGA scans, but 14-point font)
129 0x0f05 VGA 80x30 (480 scans, 16-point font)
130 0x0f06 VGA 80x34 (480 scans, 14-point font)
131 0x0f07 VGA 80x60 (480 scans, 8-point font)
188 some useless logo using font download and then fail to reset the correct mode.
D00-INDEX447 - info on the Unicode character/font mapping used in Linux.
/linux-4.4.14/drivers/tty/vt/
Dvt.c4058 struct console_font font; in con_font_get() local
4063 font.data = kmalloc(max_font_size, GFP_KERNEL); in con_font_get()
4064 if (!font.data) in con_font_get()
4067 font.data = NULL; in con_font_get()
4073 rc = vc->vc_sw->con_font_get(vc, &font); in con_font_get()
4081 c = (font.width+7)/8 * 32 * font.charcount; in con_font_get()
4083 if (op->data && font.charcount > op->charcount) in con_font_get()
4086 if (font.width > op->width || font.height > op->height) in con_font_get()
4089 if (font.width != 8) in con_font_get()
4091 else if ((op->height && font.height > op->height) || in con_font_get()
[all …]
/linux-4.4.14/drivers/video/fbdev/
Dsticore.h51 #define sti_font_x(sti) (PTR_STI(sti->font)->width)
52 #define sti_font_y(sti) (PTR_STI(sti->font)->height)
364 struct sti_cooked_font *font; /* ptr to selected font (cooked) */ member
Darkfb.c121 const u8 *font = map->data; in arkfb_settile() local
135 fb_writeb(font[i], &fb[i * 4]); in arkfb_settile()
136 fb_writeb(font[i], &fb[i * 4 + (128 * 8)]); in arkfb_settile()
143 font += map->height; in arkfb_settile()
Dcg6.c197 u32 font; member
438 sbus_writel(val, &fbc->font); in cg6_imageblit()
463 sbus_writel(val, &fbc->font); in cg6_imageblit()
Dffb.c295 u32 font; member
597 upa_writel(val, &fbc->font); in ffb_imageblit()
617 upa_writel(val, &fbc->font); in ffb_imageblit()
Ds3fb.c292 const u8 *font = map->data; in s3fb_settile_fast() local
306 fb_writeb(font[c * map->height + i], fb + c * 4); in s3fb_settile_fast()
DKconfig1238 also use font widths different from 8.
1247 packed pixel and 32 bpp packed pixel. You can also use font widths
1257 pixel and 32 bpp packed pixel. You can also use font widths
1273 too. You can use only some font widths, as the driver uses generic
1324 too. You can use only some font widths, as the driver uses generic
/linux-4.4.14/scripts/
Danalyze_suspend.py2037 .summary {font: 22px Arial;border:1px solid;}\n\
2350 ….stamp {width: 100%;text-align:center;background-color:gray;line-height:30px;color:white;font: 25p…
2353 h1 {color:black;font: bold 30px Times;}\n\
2354 t0 {color:black;font: bold 30px Times;}\n\
2355 t1 {color:black;font: 30px Times;}\n\
2356 t2 {color:black;font: 25px Times;}\n\
2357 t3 {color:black;font: 20px Times;white-space:nowrap;}\n\
2358 t4 {color:black;font: bold 30px Times;line-height:60px;white-space:nowrap;}\n\
2364 .time1 {font: 22px Arial;border:1px solid;}\n\
2365 .time2 {font: 15px Arial;border-bottom:1px solid;border-left:1px solid;border-right:1px solid;}\n\
[all …]
/linux-4.4.14/drivers/video/fbdev/core/
Dsvgalib.c195 const u8 *font = map->data; in svga_settile() local
209 fb_writeb(font[i], fb + i * 4); in svga_settile()
213 font += map->height; in svga_settile()
/linux-4.4.14/Documentation/m68k/
Dkernel-options.txt358 4.1.3) font
361 Syntax: font:<fontname>
363 Specify the font to use in text modes. Currently you can choose only
366 `VGA8x16' font is the default.
739 5.1.4) font
742 Syntax: font:<fontname>
744 Specify the font to use in text modes. Functionally the same as the
745 "font" sub-option for the Atari, except that `PEARL8x8' is used instead
/linux-4.4.14/drivers/media/platform/vivid/
Dvivid-core.c1306 const struct font_desc *font = find_font("VGA8x16"); in vivid_probe() local
1309 if (font == NULL) { in vivid_probe()
1314 tpg_set_font(font->data); in vivid_probe()
/linux-4.4.14/drivers/tty/
DKconfig49 This enables support for font mapping and Unicode translation