/Linux-v5.4/lib/fonts/ |
D | Makefile | 4 font-objs := fonts.o 6 font-objs-$(CONFIG_FONT_SUN8x16) += font_sun8x16.o 7 font-objs-$(CONFIG_FONT_SUN12x22) += font_sun12x22.o 8 font-objs-$(CONFIG_FONT_8x8) += font_8x8.o 9 font-objs-$(CONFIG_FONT_8x16) += font_8x16.o 10 font-objs-$(CONFIG_FONT_6x11) += font_6x11.o 11 font-objs-$(CONFIG_FONT_7x14) += font_7x14.o 12 font-objs-$(CONFIG_FONT_10x18) += font_10x18.o 13 font-objs-$(CONFIG_FONT_PEARL_8x8) += font_pearl_8x8.o 14 font-objs-$(CONFIG_FONT_ACORN_8x8) += font_acorn_8x8.o [all …]
|
D | Kconfig | 25 bool "VGA 8x8 font" if FONTS 29 This is the "high resolution" font for the VGA frame buffer (the one 32 Note that this is a poor quality font. The VGA 8x16 font is quite a 39 bool "VGA 8x16 font" if FONTS 42 This is the "high resolution" font for the VGA frame buffer (the one 48 bool "Mac console 6x11 font (not supported by all drivers)" if FONTS 52 Small console font with Macintosh-style high-half glyphs. Some Mac 56 bool "console 7x14 font (not supported by all drivers)" if FONTS 59 Console font with characters just a bit smaller than the default. 60 If the standard 8x16 font is a little too big for you, say Y. [all …]
|
/Linux-v5.4/drivers/firmware/efi/ |
D | earlycon.c | 16 static const struct font_desc *font; variable 54 for (i = 0; i < height - font->height; i++) { in efi_earlycon_scroll_up() 59 src = efi_earlycon_map((i + font->height) * len, len); in efi_earlycon_scroll_up() 80 src = font->data + c * font->height; in efi_earlycon_write_char() 113 linemax = (si->lfb_width - efi_x) / font->width; in efi_earlycon_write() 117 for (h = 0; h < font->height; h++) { in efi_earlycon_write() 130 x += font->width; in efi_earlycon_write() 138 efi_x += count * font->width; in efi_earlycon_write() 143 efi_y += font->height; in efi_earlycon_write() 148 if (efi_x + font->width > si->lfb_width) { in efi_earlycon_write() [all …]
|
/Linux-v5.4/Documentation/sphinx-static/ |
D | theme_overrides.css | 10 font-family: serif; 12 font-size: 100%; 16 font-family: sans-serif; 28 font-family: monospace; 30 font-size: 100%; 34 font-family: sans-serif; 38 font-style: normal; 42 font-size: 100%; 75 .rst-content table.docutils caption { text-align: left; font-size: 100%; } 79 * - captions should have 100% (not 85%) font size [all …]
|
/Linux-v5.4/Documentation/input/ |
D | interactive.svg | 18 …<text x="2775" y="7725" font-family="sans-serif" font-size="144px" stroke="#000000" stroke-width="… 19 …<text x="5400" y="5700" font-family="sans-serif" font-size="144px" stroke="#000000" stroke-width="… 20 …<text x="5400" y="3600" font-family="sans-serif" font-size="144px" stroke="#000000" stroke-width="… 21 …<text x="5400" y="3900" font-family="sans-serif" font-size="144px" stroke="#000000" stroke-width="… 22 …<text x="5475" y="5100" font-family="sans-serif" font-size="144px" stroke="#000000" stroke-width="… 23 …<text x="5400" y="4425" font-family="sans-serif" font-size="144px" stroke="#000000" stroke-width="…
|
D | shape.svg | 33 …<text x="5953.125" y="5256.6001" fill="#000000" font-family="sans-serif" font-size="144px" stroke-… 34 …<text x="10078.125" y="2931.5999" fill="#000000" font-family="sans-serif" font-size="144px" stroke… 35 …<text x="9028.125" y="3381.5999" fill="#000000" font-family="sans-serif" font-size="144px" stroke-… 36 …<text x="4153.125" y="1131.6" fill="#000000" font-family="sans-serif" font-size="144px" stroke-wid… 37 …<text x="8053.125" y="1131.6" fill="#000000" font-family="sans-serif" font-size="144px" stroke-wid… 38 …<text x="2803.125" y="3306.5999" fill="#000000" font-family="sans-serif" font-size="144px" stroke-…
|
/Linux-v5.4/arch/sparc/kernel/ |
D | btext.c | 197 unsigned char *font = &vga_font[((unsigned int)c) * 16]; in draw_byte() local 203 draw_byte_32(font, (unsigned int *)base, rb); in draw_byte() 207 draw_byte_16(font, (unsigned int *)base, rb); in draw_byte() 210 draw_byte_8(font, (unsigned int *)base, rb); in draw_byte() 242 static void draw_byte_32(unsigned char *font, unsigned int *base, int rb) in draw_byte_32() argument 250 bits = *font++; in draw_byte_32() 263 static void draw_byte_16(unsigned char *font, unsigned int *base, int rb) in draw_byte_16() argument 272 bits = *font++; in draw_byte_16() 281 static void draw_byte_8(unsigned char *font, unsigned int *base, int rb) in draw_byte_8() argument 290 bits = *font++; in draw_byte_8()
|
/Linux-v5.4/drivers/video/console/ |
D | sticore.c | 140 .font_start_addr= STI_PTR(sti->font->raw), in sti_putc() 558 struct sti_cooked_font *font; in sti_select_font() local 563 if ((font = sti_select_fbfont(rom, font_name[index]))) in sti_select_font() 564 return font; in sti_select_font() 570 for (font = rom->font_start, i = font_index[index]; in sti_select_font() 571 font && (i > 0); in sti_select_font() 572 font = font->next_font, i--); in sti_select_font() 574 if (font) in sti_select_font() 575 return font; in sti_select_font() 634 struct sti_cooked_font *font; in sti_search_font() local [all …]
|
D | dummycon.c | 127 static int dummycon_font_set(struct vc_data *vc, struct console_font *font, in dummycon_font_set() argument 134 struct console_font *font, char *name) in dummycon_font_default() argument
|
D | vgacon.c | 1281 static int vgacon_font_set(struct vc_data *c, struct console_font *font, in vgacon_font_set() argument 1284 unsigned charcount = font->charcount; in vgacon_font_set() 1290 if (font->width != VGA_FONTWIDTH || in vgacon_font_set() 1294 rc = vgacon_do_font_op(&vgastate, font->data, 1, charcount == 512); in vgacon_font_set() 1299 rc = vgacon_adjust_height(c, font->height); in vgacon_font_set() 1303 static int vgacon_font_get(struct vc_data *c, struct console_font *font) in vgacon_font_get() argument 1308 font->width = VGA_FONTWIDTH; in vgacon_font_get() 1309 font->height = c->vc_font.height; in vgacon_font_get() 1310 font->charcount = vga_512_chars ? 512 : 256; in vgacon_font_get() 1311 if (!font->data) in vgacon_font_get() [all …]
|
/Linux-v5.4/arch/powerpc/kernel/ |
D | btext.c | 418 static void draw_byte_32(unsigned char *font, unsigned int *base, int rb) in draw_byte_32() argument 426 bits = *font++; in draw_byte_32() 439 static inline void draw_byte_16(unsigned char *font, unsigned int *base, int rb) in draw_byte_16() argument 448 bits = *font++; in draw_byte_16() 457 static inline void draw_byte_8(unsigned char *font, unsigned int *base, int rb) in draw_byte_8() argument 466 bits = *font++; in draw_byte_8() 476 unsigned char *font = &vga_font[((unsigned int)c) * 16]; in draw_byte() local 483 draw_byte_32(font, (unsigned int *)base, rb); in draw_byte() 487 draw_byte_16(font, (unsigned int *)base, rb); in draw_byte() 490 draw_byte_8(font, (unsigned int *)base, rb); in draw_byte()
|
/Linux-v5.4/arch/unicore32/boot/compressed/ |
D | Makefile | 20 $(obj)/font.c: $(srctree)/lib/fonts/font_8x8.c 38 targets := vmlinux vmlinux.lds font.o font.c head.o misc.o \
|
/Linux-v5.4/drivers/usb/misc/sisusbvga/ |
D | sisusb_con.c | 1199 sisusbcon_font_set(struct vc_data *c, struct console_font *font, in sisusbcon_font_set() argument 1203 unsigned charcount = font->charcount; in sisusbcon_font_set() 1205 if (font->width != 8 || (charcount != 256 && charcount != 512)) in sisusbcon_font_set() 1229 memcpy(sisusb->font_backup, font->data, charcount * 32); in sisusbcon_font_set() 1231 sisusb->font_backup_height = font->height; in sisusbcon_font_set() 1237 return sisusbcon_do_font_op(sisusb, 1, 2, font->data, in sisusbcon_font_set() 1240 c, font->height, 1); in sisusbcon_font_set() 1245 sisusbcon_font_get(struct vc_data *c, struct console_font *font) in sisusbcon_font_get() argument 1255 font->width = 8; in sisusbcon_font_get() 1256 font->height = c->vc_font.height; in sisusbcon_font_get() [all …]
|
/Linux-v5.4/include/linux/ |
D | console.h | 64 int (*con_font_set)(struct vc_data *vc, struct console_font *font, 66 int (*con_font_get)(struct vc_data *vc, struct console_font *font); 68 struct console_font *font, char *name);
|
/Linux-v5.4/Documentation/fb/ |
D | pvr2fb.rst | 29 font:X default font to use. All fonts are supported, including the 30 SUN12x22 font which is very nice at high resolutions.
|
D | tgafb.rst | 44 font:X default font to use. All fonts are supported, including the 45 SUN12x22 font which is very nice at high resolutions.
|
D | fbcon.rst | 15 high resolutions, varying font types, display rotation, primitive multihead, 38 Also, you will need to select at least one compiled-in font, but if 40 usually an 8x16 font. 81 1. fbcon=font:<name> 83 Select the initial font to use. The value 'name' can be any of the 87 Note, not all drivers can handle font with widths not divisible by 8,
|
/Linux-v5.4/Documentation/admin-guide/ |
D | unicode.rst | 16 characters to fonts. By downloading a single Unicode-to-font table, 18 the font as indicated. 32 In particular, ESC ( U is no longer "straight to font", since the font 34 permits for example the use of block graphics even with a Latin-1 font 50 hard-coded to map directly to the loaded font, bypassing the 125 Unicode practice these differences are considered font variants.
|
D | svga.rst | 32 EXTENDED_VGA - Standard 8-pixel font mode: 80x43 on EGA, 80x50 on VGA. 133 0x0f01 standard with 8-point font: 80x43 on EGA, 80x50 on VGA 134 0x0f02 VGA 80x43 (VGA switched to 350 scanlines with a 8-point font) 135 0x0f03 VGA 80x28 (standard VGA scans, but 14-point font) 137 0x0f05 VGA 80x30 (480 scans, 16-point font) 138 0x0f06 VGA 80x34 (480 scans, 14-point font) 139 0x0f07 VGA 80x60 (480 scans, 8-point font)
|
/Linux-v5.4/drivers/video/fbdev/core/ |
D | fbcon.c | 970 const struct font_desc *font = NULL; in fbcon_startup() local 1046 if (!fontname[0] || !(font = find_font(fontname))) in fbcon_startup() 1047 font = get_default_font(info->var.xres, in fbcon_startup() 1051 vc->vc_font.width = font->width; in fbcon_startup() 1052 vc->vc_font.height = font->height; in fbcon_startup() 1053 vc->vc_font.data = (void *)(p->fontdata = font->data); in fbcon_startup() 1123 const struct font_desc *font = NULL; in fbcon_init() local 1125 if (!fontname[0] || !(font = find_font(fontname))) in fbcon_init() 1126 font = get_default_font(info->var.xres, in fbcon_init() 1130 vc->vc_font.width = font->width; in fbcon_init() [all …]
|
D | svgalib.c | 195 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-v5.4/drivers/tty/vt/ |
D | vt.c | 4431 struct console_font font; in con_font_get() local 4436 font.data = kmalloc(max_font_size, GFP_KERNEL); in con_font_get() 4437 if (!font.data) in con_font_get() 4440 font.data = NULL; in con_font_get() 4446 rc = vc->vc_sw->con_font_get(vc, &font); in con_font_get() 4454 c = (font.width+7)/8 * 32 * font.charcount; in con_font_get() 4456 if (op->data && font.charcount > op->charcount) in con_font_get() 4459 if (font.width > op->width || font.height > op->height) in con_font_get() 4462 if (font.width != 8) in con_font_get() 4464 else if ((op->height && font.height > op->height) || in con_font_get() [all …]
|
/Linux-v5.4/drivers/video/fbdev/ |
D | sticore.h | 52 #define sti_font_x(sti) (PTR_STI(sti->font)->width) 53 #define sti_font_y(sti) (PTR_STI(sti->font)->height) 365 struct sti_cooked_font *font; /* ptr to selected font (cooked) */ member
|
/Linux-v5.4/arch/arm/boot/compressed/ |
D | .gitignore | 3 font.c
|
D | Makefile | 35 OBJS += ll_char_wr.o font.o 196 $(obj)/font.c: $(FONTC)
|