Symbol: font_desc
arch/m68k/kernel/asm-offsets.c
83
DEFINE(FONT_DESC_IDX, offsetof(struct font_desc, idx));
arch/m68k/kernel/asm-offsets.c
84
DEFINE(FONT_DESC_NAME, offsetof(struct font_desc, name));
arch/m68k/kernel/asm-offsets.c
85
DEFINE(FONT_DESC_WIDTH, offsetof(struct font_desc, width));
arch/m68k/kernel/asm-offsets.c
86
DEFINE(FONT_DESC_HEIGHT, offsetof(struct font_desc, height));
arch/m68k/kernel/asm-offsets.c
87
DEFINE(FONT_DESC_DATA, offsetof(struct font_desc, data));
arch/m68k/kernel/asm-offsets.c
88
DEFINE(FONT_DESC_PREF, offsetof(struct font_desc, pref));
drivers/firmware/efi/earlycon.c
18
static const struct font_desc *font;
drivers/gpu/drm/clients/drm_log.c
111
const struct font_desc *font = scanout->font;
drivers/gpu/drm/clients/drm_log.c
42
const struct font_desc *font;
drivers/gpu/drm/drm_draw_internal.h
21
static inline const u8 *drm_draw_get_char_bitmap(const struct font_desc *font,
drivers/gpu/drm/drm_panic.c
422
const struct font_desc *font,
drivers/gpu/drm/drm_panic.c
454
static void drm_panic_logo_rect(struct drm_rect *rect, const struct font_desc *font)
drivers/gpu/drm/drm_panic.c
466
const struct font_desc *font, u32 fg_color)
drivers/gpu/drm/drm_panic.c
485
const struct font_desc *font = get_default_font(sb->width, sb->height, NULL, NULL);
drivers/gpu/drm/drm_panic.c
515
static int draw_line_with_wrap(struct drm_scanout_buffer *sb, const struct font_desc *font,
drivers/gpu/drm/drm_panic.c
554
const struct font_desc *font = get_default_font(sb->width, sb->height, NULL, NULL);
drivers/gpu/drm/drm_panic.c
742
const struct font_desc *font = get_default_font(sb->width, sb->height, NULL, NULL);
drivers/media/pci/solo6x10/solo6x10-enc.c
133
const struct font_desc *vga = find_font("VGA8x16");
drivers/media/test-drivers/vimc/vimc-core.c
340
const struct font_desc *font = find_font("VGA8x16");
drivers/media/test-drivers/visl/visl-video.c
83
const struct font_desc *font;
drivers/media/test-drivers/vivid/vivid-core.c
2082
const struct font_desc *font = find_font("VGA8x16");
drivers/video/fbdev/core/fbcon.c
1019
const struct font_desc *font = NULL;
drivers/video/fbdev/core/fbcon.c
1135
const struct font_desc *font = NULL;
drivers/video/fbdev/core/fbcon.c
2528
const struct font_desc *f;
drivers/video/sticore.c
523
const struct font_desc *fbfont = NULL;
include/linux/font.h
133
extern const struct font_desc *find_font(const char *name);
include/linux/font.h
137
extern const struct font_desc *get_default_font(int xres, int yres,
include/linux/font.h
148
extern const struct font_desc font_10x18;
include/linux/font.h
149
extern const struct font_desc font_6x10;
include/linux/font.h
150
extern const struct font_desc font_6x8;
include/linux/font.h
151
extern const struct font_desc font_7x14;
include/linux/font.h
152
extern const struct font_desc font_acorn_8x8;
include/linux/font.h
153
extern const struct font_desc font_mini_4x6;
include/linux/font.h
154
extern const struct font_desc font_pearl_8x8;
include/linux/font.h
155
extern const struct font_desc font_sun_12x22;
include/linux/font.h
156
extern const struct font_desc font_sun_8x16;
include/linux/font.h
157
extern const struct font_desc font_ter_10x18;
include/linux/font.h
158
extern const struct font_desc font_ter_16x32;
include/linux/font.h
159
extern const struct font_desc font_vga_6x11;
include/linux/font.h
160
extern const struct font_desc font_vga_8x16;
include/linux/font.h
161
extern const struct font_desc font_vga_8x8;
lib/fonts/font_10x18.c
5135
const struct font_desc font_10x18 = {
lib/fonts/font_6x10.c
3082
const struct font_desc font_6x10 = {
lib/fonts/font_6x11.c
3344
const struct font_desc font_vga_6x11 = {
lib/fonts/font_6x8.c
2570
const struct font_desc font_6x8 = {
lib/fonts/font_7x14.c
4111
const struct font_desc font_7x14 = {
lib/fonts/font_8x16.c
4626
const struct font_desc font_vga_8x16 = {
lib/fonts/font_8x8.c
2576
const struct font_desc font_vga_8x8 = {
lib/fonts/font_acorn_8x8.c
273
const struct font_desc font_acorn_8x8 = {
lib/fonts/font_mini_4x6.c
2150
const struct font_desc font_mini_4x6 = {
lib/fonts/font_pearl_8x8.c
2580
const struct font_desc font_pearl_8x8 = {
lib/fonts/font_sun12x22.c
6155
const struct font_desc font_sun_12x22 = {
lib/fonts/font_sun8x16.c
267
const struct font_desc font_sun_8x16 = {
lib/fonts/font_ter10x18.c
5133
const struct font_desc font_ter_10x18 = {
lib/fonts/font_ter16x32.c
2062
const struct font_desc font_ter_16x32 = {
lib/fonts/fonts.c
251
static const struct font_desc *fonts[] = {
lib/fonts/fonts.c
313
const struct font_desc *find_font(const char *name)
lib/fonts/fonts.c
342
const struct font_desc *get_default_font(int xres, int yres,
lib/fonts/fonts.c
347
const struct font_desc *f, *g;