drivers/tty/vt/vt.c
244
unsigned int vc_font_pitch(const struct vc_font *font)
drivers/tty/vt/vt.c
261
unsigned int vc_font_size(const struct vc_font *font)
drivers/video/console/vgacon.c
1035
c->vc_font.height = c->vc_cell_height = fontheight;
drivers/video/console/vgacon.c
1070
font->height = c->vc_font.height;
drivers/video/console/vgacon.c
385
c->vc_font.height = c->vc_cell_height = vga_video_font_height;
drivers/video/fbdev/core/bitblit.c
118
unsigned int charcnt = vc->vc_font.charcount;
drivers/video/fbdev/core/bitblit.c
119
u32 shift_low = 0, mod = vc->vc_font.width % 8;
drivers/video/fbdev/core/bitblit.c
121
u32 idx = vc->vc_font.width >> 3;
drivers/video/fbdev/core/bitblit.c
129
src = vc->vc_font.data + (unsigned int)ch * cellsize;
drivers/video/fbdev/core/bitblit.c
154
u32 width = DIV_ROUND_UP(vc->vc_font.width, 8);
drivers/video/fbdev/core/bitblit.c
155
u32 cellsize = width * vc->vc_font.height;
drivers/video/fbdev/core/bitblit.c
159
u32 mod = vc->vc_font.width % 8, cnt, pitch, size;
drivers/video/fbdev/core/bitblit.c
165
image.dx = xx * vc->vc_font.width;
drivers/video/fbdev/core/bitblit.c
166
image.dy = yy * vc->vc_font.height;
drivers/video/fbdev/core/bitblit.c
167
image.height = vc->vc_font.height;
drivers/video/fbdev/core/bitblit.c
187
image.width = vc->vc_font.width * cnt;
drivers/video/fbdev/core/bitblit.c
194
cnt = image.width / vc->vc_font.width;
drivers/video/fbdev/core/bitblit.c
197
image.width = cnt * vc->vc_font.width;
drivers/video/fbdev/core/bitblit.c
215
image.dx += cnt * vc->vc_font.width;
drivers/video/fbdev/core/bitblit.c
231
unsigned int cw = vc->vc_font.width;
drivers/video/fbdev/core/bitblit.c
232
unsigned int ch = vc->vc_font.height;
drivers/video/fbdev/core/bitblit.c
265
int w = DIV_ROUND_UP(vc->vc_font.width, 8), c;
drivers/video/fbdev/core/bitblit.c
27
int i, offset = (vc->vc_font.height < 10) ? 1 : 2;
drivers/video/fbdev/core/bitblit.c
273
if (!vc->vc_font.data)
drivers/video/fbdev/core/bitblit.c
278
src = vc->vc_font.data + ((c & charmask) * (w * vc->vc_font.height));
drivers/video/fbdev/core/bitblit.c
28
int width = DIV_ROUND_UP(vc->vc_font.width, 8);
drivers/video/fbdev/core/bitblit.c
289
dst = kmalloc_array(w, vc->vc_font.height, GFP_ATOMIC);
drivers/video/fbdev/core/bitblit.c
29
unsigned int cellsize = vc->vc_font.height * width;
drivers/video/fbdev/core/bitblit.c
306
if ((par->cursor_state.image.dx != (vc->vc_font.width * vc->state.x)) ||
drivers/video/fbdev/core/bitblit.c
307
(par->cursor_state.image.dy != (vc->vc_font.height * y)) ||
drivers/video/fbdev/core/bitblit.c
309
par->cursor_state.image.dx = vc->vc_font.width * vc->state.x;
drivers/video/fbdev/core/bitblit.c
310
par->cursor_state.image.dy = vc->vc_font.height * y;
drivers/video/fbdev/core/bitblit.c
314
if (par->cursor_state.image.height != vc->vc_font.height ||
drivers/video/fbdev/core/bitblit.c
315
par->cursor_state.image.width != vc->vc_font.width ||
drivers/video/fbdev/core/bitblit.c
317
par->cursor_state.image.height = vc->vc_font.height;
drivers/video/fbdev/core/bitblit.c
318
par->cursor_state.image.width = vc->vc_font.width;
drivers/video/fbdev/core/bitblit.c
332
unsigned char *mask = kmalloc_array(vc->vc_font.height, w, GFP_ATOMIC);
drivers/video/fbdev/core/bitblit.c
50
area.sx = sx * vc->vc_font.width;
drivers/video/fbdev/core/bitblit.c
51
area.sy = sy * vc->vc_font.height;
drivers/video/fbdev/core/bitblit.c
52
area.dx = dx * vc->vc_font.width;
drivers/video/fbdev/core/bitblit.c
53
area.dy = dy * vc->vc_font.height;
drivers/video/fbdev/core/bitblit.c
54
area.height = height * vc->vc_font.height;
drivers/video/fbdev/core/bitblit.c
55
area.width = width * vc->vc_font.width;
drivers/video/fbdev/core/bitblit.c
66
region.dx = sx * vc->vc_font.width;
drivers/video/fbdev/core/bitblit.c
67
region.dy = sy * vc->vc_font.height;
drivers/video/fbdev/core/bitblit.c
68
region.width = width * vc->vc_font.width;
drivers/video/fbdev/core/bitblit.c
69
region.height = height * vc->vc_font.height;
drivers/video/fbdev/core/bitblit.c
81
unsigned int charcnt = vc->vc_font.charcount;
drivers/video/fbdev/core/bitblit.c
82
u32 idx = vc->vc_font.width >> 3;
drivers/video/fbdev/core/bitblit.c
90
src = vc->vc_font.data + (unsigned int)ch * cellsize;
drivers/video/fbdev/core/fbcon.c
1063
vc->vc_font.width = font->width;
drivers/video/fbdev/core/fbcon.c
1064
vc->vc_font.height = font->height;
drivers/video/fbdev/core/fbcon.c
1065
vc->vc_font.data = font_data_buf(font->data);
drivers/video/fbdev/core/fbcon.c
1066
vc->vc_font.charcount = font->charcount;
drivers/video/fbdev/core/fbcon.c
1074
cols /= vc->vc_font.width;
drivers/video/fbdev/core/fbcon.c
1075
rows /= vc->vc_font.height;
drivers/video/fbdev/core/fbcon.c
1127
vc->vc_font.data = fvc->vc_font.data;
drivers/video/fbdev/core/fbcon.c
1128
vc->vc_font.width = fvc->vc_font.width;
drivers/video/fbdev/core/fbcon.c
1129
vc->vc_font.height = fvc->vc_font.height;
drivers/video/fbdev/core/fbcon.c
1130
vc->vc_font.charcount = fvc->vc_font.charcount;
drivers/video/fbdev/core/fbcon.c
1142
vc->vc_font.width = font->width;
drivers/video/fbdev/core/fbcon.c
1143
vc->vc_font.height = font->height;
drivers/video/fbdev/core/fbcon.c
1144
vc->vc_font.data = font_data_buf(font->data);
drivers/video/fbdev/core/fbcon.c
1145
vc->vc_font.charcount = font->charcount;
drivers/video/fbdev/core/fbcon.c
1154
if (vc->vc_font.charcount == 256) {
drivers/video/fbdev/core/fbcon.c
1182
new_cols /= vc->vc_font.width;
drivers/video/fbdev/core/fbcon.c
1183
new_rows /= vc->vc_font.height;
drivers/video/fbdev/core/fbcon.c
1299
vc->vc_font.data = NULL;
drivers/video/fbdev/core/fbcon.c
1460
vc->vc_font.data = font_data_buf(t->fontdata);
drivers/video/fbdev/core/fbcon.c
1461
vc->vc_font.width = (*default_mode)->vc_font.width;
drivers/video/fbdev/core/fbcon.c
1462
vc->vc_font.height = (*default_mode)->vc_font.height;
drivers/video/fbdev/core/fbcon.c
1463
vc->vc_font.charcount = (*default_mode)->vc_font.charcount;
drivers/video/fbdev/core/fbcon.c
1476
if (vc->vc_font.charcount == 256) {
drivers/video/fbdev/core/fbcon.c
1491
cols /= vc->vc_font.width;
drivers/video/fbdev/core/fbcon.c
1492
rows /= vc->vc_font.height;
drivers/video/fbdev/core/fbcon.c
1509
par->var.yoffset = p->yscroll * vc->vc_font.height;
drivers/video/fbdev/core/fbcon.c
1528
par->var.yoffset = p->yscroll * vc->vc_font.height;
drivers/video/fbdev/core/fbcon.c
1551
par->var.yoffset = p->yscroll * vc->vc_font.height;
drivers/video/fbdev/core/fbcon.c
1575
par->var.yoffset = p->yscroll * vc->vc_font.height;
drivers/video/fbdev/core/fbcon.c
1599
par->var.yoffset = p->yscroll * vc->vc_font.height;
drivers/video/fbdev/core/fbcon.c
1623
par->var.yoffset = p->yscroll * vc->vc_font.height;
drivers/video/fbdev/core/fbcon.c
2039
divides(ypan, vc->vc_font.height) && vyres > yres;
drivers/video/fbdev/core/fbcon.c
2041
divides(ywrap, vc->vc_font.height) &&
drivers/video/fbdev/core/fbcon.c
2042
divides(vc->vc_font.height, vyres) &&
drivers/video/fbdev/core/fbcon.c
2043
divides(vc->vc_font.height, yres);
drivers/video/fbdev/core/fbcon.c
2071
int fh = vc->vc_font.height;
drivers/video/fbdev/core/fbcon.c
2095
unsigned int size = vc_font_size(&vc->vc_font);
drivers/video/fbdev/core/fbcon.c
2110
virt_fw = FBCON_SWAP(par->rotate, vc->vc_font.width, vc->vc_font.height);
drivers/video/fbdev/core/fbcon.c
2111
virt_fh = FBCON_SWAP(par->rotate, vc->vc_font.height, vc->vc_font.width);
drivers/video/fbdev/core/fbcon.c
2225
if (vc->vc_font.charcount > 256)
drivers/video/fbdev/core/fbcon.c
2330
font->width = vc->vc_font.width;
drivers/video/fbdev/core/fbcon.c
2331
font->height = vc->vc_font.height;
drivers/video/fbdev/core/fbcon.c
2408
const u8 *old_data = vc->vc_font.data;
drivers/video/fbdev/core/fbcon.c
2413
resize = (w != vc->vc_font.width) || (h != vc->vc_font.height);
drivers/video/fbdev/core/fbcon.c
2415
vc->vc_font.data = font_data_buf(p->fontdata);
drivers/video/fbdev/core/fbcon.c
2416
old_width = vc->vc_font.width;
drivers/video/fbdev/core/fbcon.c
2417
old_height = vc->vc_font.height;
drivers/video/fbdev/core/fbcon.c
2418
old_charcount = vc->vc_font.charcount;
drivers/video/fbdev/core/fbcon.c
2420
vc->vc_font.width = w;
drivers/video/fbdev/core/fbcon.c
2421
vc->vc_font.height = h;
drivers/video/fbdev/core/fbcon.c
2422
vc->vc_font.charcount = charcount;
drivers/video/fbdev/core/fbcon.c
2451
vc->vc_font.data = old_data;
drivers/video/fbdev/core/fbcon.c
2452
vc->vc_font.width = old_width;
drivers/video/fbdev/core/fbcon.c
2453
vc->vc_font.height = old_height;
drivers/video/fbdev/core/fbcon.c
2454
vc->vc_font.charcount = old_charcount;
drivers/video/fbdev/core/fbcon.c
2651
cols /= vc->vc_font.width;
drivers/video/fbdev/core/fbcon.c
2652
rows /= vc->vc_font.height;
drivers/video/fbdev/core/fbcon.c
2694
cols /= vc->vc_font.width;
drivers/video/fbdev/core/fbcon.c
2695
rows /= vc->vc_font.height;
drivers/video/fbdev/core/fbcon.c
2731
if (vc->vc_font.width > FBCON_SWAP(var->rotate, var->xres, var->yres) ||
drivers/video/fbdev/core/fbcon.c
2732
vc->vc_font.height > FBCON_SWAP(var->rotate, var->yres, var->xres))
drivers/video/fbdev/core/fbcon.c
3070
set_bit(vc->vc_font.width - 1, caps->x);
drivers/video/fbdev/core/fbcon.c
3071
set_bit(vc->vc_font.height - 1, caps->y);
drivers/video/fbdev/core/fbcon.c
3072
charcnt = vc->vc_font.charcount;
drivers/video/fbdev/core/fbcon.c
3083
set_bit(vc->vc_font.width - 1, caps->x);
drivers/video/fbdev/core/fbcon.c
3085
set_bit(vc->vc_font.height - 1, caps->y);
drivers/video/fbdev/core/fbcon.c
3086
caps->len = vc->vc_font.charcount;
drivers/video/fbdev/core/fbcon.c
451
unsigned int pitch = vc_font_pitch(&vc->vc_font);
drivers/video/fbdev/core/fbcon.c
459
if (vc->vc_font.height < 10)
drivers/video/fbdev/core/fbcon.c
465
cur_height = vc->vc_font.height / 3;
drivers/video/fbdev/core/fbcon.c
468
cur_height = vc->vc_font.height / 2;
drivers/video/fbdev/core/fbcon.c
471
cur_height = (vc->vc_font.height * 2) / 3;
drivers/video/fbdev/core/fbcon.c
475
cur_height = vc->vc_font.height;
drivers/video/fbdev/core/fbcon.c
479
size = (vc->vc_font.height - cur_height) * pitch;
drivers/video/fbdev/core/fbcon.c
662
logo_lines = DIV_ROUND_UP(logo_height, vc->vc_font.height);
drivers/video/fbdev/core/fbcon_ccw.c
105
u32 idx = font_glyph_pitch(vc->vc_font.height);
drivers/video/fbdev/core/fbcon_ccw.c
118
vc->vc_font.width);
drivers/video/fbdev/core/fbcon_ccw.c
121
vc->vc_font.width);
drivers/video/fbdev/core/fbcon_ccw.c
123
dst += d_pitch * vc->vc_font.width;
drivers/video/fbdev/core/fbcon_ccw.c
135
u32 width = font_glyph_pitch(vc->vc_font.height);
drivers/video/fbdev/core/fbcon_ccw.c
136
u32 cellsize = width * vc->vc_font.width;
drivers/video/fbdev/core/fbcon_ccw.c
150
image.dx = yy * vc->vc_font.height;
drivers/video/fbdev/core/fbcon_ccw.c
151
image.dy = vyres - ((xx + count) * vc->vc_font.width);
drivers/video/fbdev/core/fbcon_ccw.c
152
image.width = vc->vc_font.height;
drivers/video/fbdev/core/fbcon_ccw.c
169
image.height = vc->vc_font.width * cnt;
drivers/video/fbdev/core/fbcon_ccw.c
194
unsigned int cw = vc->vc_font.width;
drivers/video/fbdev/core/fbcon_ccw.c
195
unsigned int ch = vc->vc_font.height;
drivers/video/fbdev/core/fbcon_ccw.c
227
int w = font_glyph_pitch(vc->vc_font.height);
drivers/video/fbdev/core/fbcon_ccw.c
242
src = par->rotated.buf + ((c & charmask) * (w * vc->vc_font.width));
drivers/video/fbdev/core/fbcon_ccw.c
253
dst = kmalloc_array(w, vc->vc_font.width, GFP_ATOMIC);
drivers/video/fbdev/core/fbcon_ccw.c
270
if (par->cursor_state.image.height != vc->vc_font.width ||
drivers/video/fbdev/core/fbcon_ccw.c
271
par->cursor_state.image.width != vc->vc_font.height ||
drivers/video/fbdev/core/fbcon_ccw.c
273
par->cursor_state.image.height = vc->vc_font.width;
drivers/video/fbdev/core/fbcon_ccw.c
274
par->cursor_state.image.width = vc->vc_font.height;
drivers/video/fbdev/core/fbcon_ccw.c
278
dx = y * vc->vc_font.height;
drivers/video/fbdev/core/fbcon_ccw.c
279
dy = vyres - ((vc->state.x + 1) * vc->vc_font.width);
drivers/video/fbdev/core/fbcon_ccw.c
29
int i, j, offset = (vc->vc_font.height < 10) ? 1 : 2;
drivers/video/fbdev/core/fbcon_ccw.c
30
int width = font_glyph_pitch(vc->vc_font.height);
drivers/video/fbdev/core/fbcon_ccw.c
301
tmp = kmalloc_array(vc->vc_font.height, vc_font_pitch(&vc->vc_font), GFP_ATOMIC);
drivers/video/fbdev/core/fbcon_ccw.c
306
mask = kmalloc_array(vc->vc_font.width, w, GFP_ATOMIC);
drivers/video/fbdev/core/fbcon_ccw.c
31
int mod = vc->vc_font.height % 8;
drivers/video/fbdev/core/fbcon_ccw.c
311
font_glyph_rotate_270(tmp, vc->vc_font.width, vc->vc_font.height, mask);
drivers/video/fbdev/core/fbcon_ccw.c
40
for (i = 0; i < vc->vc_font.width; i++) {
drivers/video/fbdev/core/fbcon_ccw.c
71
area.sx = sy * vc->vc_font.height;
drivers/video/fbdev/core/fbcon_ccw.c
72
area.sy = vyres - ((sx + width) * vc->vc_font.width);
drivers/video/fbdev/core/fbcon_ccw.c
73
area.dx = dy * vc->vc_font.height;
drivers/video/fbdev/core/fbcon_ccw.c
74
area.dy = vyres - ((dx + width) * vc->vc_font.width);
drivers/video/fbdev/core/fbcon_ccw.c
75
area.width = height * vc->vc_font.height;
drivers/video/fbdev/core/fbcon_ccw.c
76
area.height = width * vc->vc_font.width;
drivers/video/fbdev/core/fbcon_ccw.c
89
region.dx = sy * vc->vc_font.height;
drivers/video/fbdev/core/fbcon_ccw.c
90
region.dy = vyres - ((sx + width) * vc->vc_font.width);
drivers/video/fbdev/core/fbcon_ccw.c
91
region.height = width * vc->vc_font.width;
drivers/video/fbdev/core/fbcon_ccw.c
92
region.width = height * vc->vc_font.height;
drivers/video/fbdev/core/fbcon_cw.c
103
vc->vc_font.width);
drivers/video/fbdev/core/fbcon_cw.c
106
vc->vc_font.width);
drivers/video/fbdev/core/fbcon_cw.c
108
dst += d_pitch * vc->vc_font.width;
drivers/video/fbdev/core/fbcon_cw.c
120
u32 width = font_glyph_pitch(vc->vc_font.height);
drivers/video/fbdev/core/fbcon_cw.c
121
u32 cellsize = width * vc->vc_font.width;
drivers/video/fbdev/core/fbcon_cw.c
135
image.dx = vxres - ((yy + 1) * vc->vc_font.height);
drivers/video/fbdev/core/fbcon_cw.c
136
image.dy = xx * vc->vc_font.width;
drivers/video/fbdev/core/fbcon_cw.c
137
image.width = vc->vc_font.height;
drivers/video/fbdev/core/fbcon_cw.c
152
image.height = vc->vc_font.width * cnt;
drivers/video/fbdev/core/fbcon_cw.c
177
unsigned int cw = vc->vc_font.width;
drivers/video/fbdev/core/fbcon_cw.c
178
unsigned int ch = vc->vc_font.height;
drivers/video/fbdev/core/fbcon_cw.c
210
int w = font_glyph_pitch(vc->vc_font.height);
drivers/video/fbdev/core/fbcon_cw.c
225
src = par->rotated.buf + ((c & charmask) * (w * vc->vc_font.width));
drivers/video/fbdev/core/fbcon_cw.c
236
dst = kmalloc_array(w, vc->vc_font.width, GFP_ATOMIC);
drivers/video/fbdev/core/fbcon_cw.c
253
if (par->cursor_state.image.height != vc->vc_font.width ||
drivers/video/fbdev/core/fbcon_cw.c
254
par->cursor_state.image.width != vc->vc_font.height ||
drivers/video/fbdev/core/fbcon_cw.c
256
par->cursor_state.image.height = vc->vc_font.width;
drivers/video/fbdev/core/fbcon_cw.c
257
par->cursor_state.image.width = vc->vc_font.height;
drivers/video/fbdev/core/fbcon_cw.c
261
dx = vxres - ((y * vc->vc_font.height) + vc->vc_font.height);
drivers/video/fbdev/core/fbcon_cw.c
262
dy = vc->state.x * vc->vc_font.width;
drivers/video/fbdev/core/fbcon_cw.c
284
tmp = kmalloc_array(vc->vc_font.height, vc_font_pitch(&vc->vc_font), GFP_ATOMIC);
drivers/video/fbdev/core/fbcon_cw.c
289
mask = kmalloc_array(vc->vc_font.width, w, GFP_ATOMIC);
drivers/video/fbdev/core/fbcon_cw.c
29
int i, j, offset = (vc->vc_font.height < 10) ? 1 : 2;
drivers/video/fbdev/core/fbcon_cw.c
294
font_glyph_rotate_90(tmp, vc->vc_font.width, vc->vc_font.height, mask);
drivers/video/fbdev/core/fbcon_cw.c
30
int width = font_glyph_pitch(vc->vc_font.height);
drivers/video/fbdev/core/fbcon_cw.c
33
for (i = 0; i < vc->vc_font.width; i++) {
drivers/video/fbdev/core/fbcon_cw.c
56
area.sx = vxres - ((sy + height) * vc->vc_font.height);
drivers/video/fbdev/core/fbcon_cw.c
57
area.sy = sx * vc->vc_font.width;
drivers/video/fbdev/core/fbcon_cw.c
58
area.dx = vxres - ((dy + height) * vc->vc_font.height);
drivers/video/fbdev/core/fbcon_cw.c
59
area.dy = dx * vc->vc_font.width;
drivers/video/fbdev/core/fbcon_cw.c
60
area.width = height * vc->vc_font.height;
drivers/video/fbdev/core/fbcon_cw.c
61
area.height = width * vc->vc_font.width;
drivers/video/fbdev/core/fbcon_cw.c
74
region.dx = vxres - ((sy + height) * vc->vc_font.height);
drivers/video/fbdev/core/fbcon_cw.c
75
region.dy = sx * vc->vc_font.width;
drivers/video/fbdev/core/fbcon_cw.c
76
region.height = width * vc->vc_font.width;
drivers/video/fbdev/core/fbcon_cw.c
77
region.width = height * vc->vc_font.height;
drivers/video/fbdev/core/fbcon_cw.c
90
u32 idx = font_glyph_pitch(vc->vc_font.height);
drivers/video/fbdev/core/fbcon_rotate.c
33
buf = font_data_rotate(par->rotated.fontdata, vc->vc_font.width,
drivers/video/fbdev/core/fbcon_rotate.c
34
vc->vc_font.height, vc->vc_font.charcount,
drivers/video/fbdev/core/fbcon_ud.c
124
u32 shift_low = 0, mod = vc->vc_font.width % 8;
drivers/video/fbdev/core/fbcon_ud.c
126
u32 idx = vc->vc_font.width >> 3;
drivers/video/fbdev/core/fbcon_ud.c
156
u32 width = font_glyph_pitch(vc->vc_font.width);
drivers/video/fbdev/core/fbcon_ud.c
157
u32 cellsize = width * vc->vc_font.height;
drivers/video/fbdev/core/fbcon_ud.c
161
u32 mod = vc->vc_font.width % 8, cnt, pitch, size;
drivers/video/fbdev/core/fbcon_ud.c
172
image.dy = vyres - ((yy * vc->vc_font.height) + vc->vc_font.height);
drivers/video/fbdev/core/fbcon_ud.c
173
image.dx = vxres - ((xx + count) * vc->vc_font.width);
drivers/video/fbdev/core/fbcon_ud.c
174
image.height = vc->vc_font.height;
drivers/video/fbdev/core/fbcon_ud.c
191
image.width = vc->vc_font.width * cnt;
drivers/video/fbdev/core/fbcon_ud.c
224
unsigned int cw = vc->vc_font.width;
drivers/video/fbdev/core/fbcon_ud.c
225
unsigned int ch = vc->vc_font.height;
drivers/video/fbdev/core/fbcon_ud.c
256
int w = font_glyph_pitch(vc->vc_font.width);
drivers/video/fbdev/core/fbcon_ud.c
272
src = par->rotated.buf + ((c & charmask) * (w * vc->vc_font.height));
drivers/video/fbdev/core/fbcon_ud.c
28
int i, offset = (vc->vc_font.height < 10) ? 1 : 2;
drivers/video/fbdev/core/fbcon_ud.c
283
dst = kmalloc_array(w, vc->vc_font.height, GFP_ATOMIC);
drivers/video/fbdev/core/fbcon_ud.c
29
int width = font_glyph_pitch(vc->vc_font.width);
drivers/video/fbdev/core/fbcon_ud.c
30
unsigned int cellsize = vc->vc_font.height * width;
drivers/video/fbdev/core/fbcon_ud.c
300
if (par->cursor_state.image.height != vc->vc_font.height ||
drivers/video/fbdev/core/fbcon_ud.c
301
par->cursor_state.image.width != vc->vc_font.width ||
drivers/video/fbdev/core/fbcon_ud.c
303
par->cursor_state.image.height = vc->vc_font.height;
drivers/video/fbdev/core/fbcon_ud.c
304
par->cursor_state.image.width = vc->vc_font.width;
drivers/video/fbdev/core/fbcon_ud.c
308
dy = vyres - ((y * vc->vc_font.height) + vc->vc_font.height);
drivers/video/fbdev/core/fbcon_ud.c
309
dx = vxres - ((vc->state.x * vc->vc_font.width) + vc->vc_font.width);
drivers/video/fbdev/core/fbcon_ud.c
331
tmp = kmalloc_array(vc->vc_font.height, w, GFP_ATOMIC);
drivers/video/fbdev/core/fbcon_ud.c
336
mask = kmalloc_array(vc->vc_font.height, w, GFP_ATOMIC);
drivers/video/fbdev/core/fbcon_ud.c
341
font_glyph_rotate_180(tmp, vc->vc_font.width, vc->vc_font.height, mask);
drivers/video/fbdev/core/fbcon_ud.c
56
area.sy = vyres - ((sy + height) * vc->vc_font.height);
drivers/video/fbdev/core/fbcon_ud.c
57
area.sx = vxres - ((sx + width) * vc->vc_font.width);
drivers/video/fbdev/core/fbcon_ud.c
58
area.dy = vyres - ((dy + height) * vc->vc_font.height);
drivers/video/fbdev/core/fbcon_ud.c
59
area.dx = vxres - ((dx + width) * vc->vc_font.width);
drivers/video/fbdev/core/fbcon_ud.c
60
area.height = height * vc->vc_font.height;
drivers/video/fbdev/core/fbcon_ud.c
61
area.width = width * vc->vc_font.width;
drivers/video/fbdev/core/fbcon_ud.c
75
region.dy = vyres - ((sy + height) * vc->vc_font.height);
drivers/video/fbdev/core/fbcon_ud.c
76
region.dx = vxres - ((sx + width) * vc->vc_font.width);
drivers/video/fbdev/core/fbcon_ud.c
77
region.width = width * vc->vc_font.width;
drivers/video/fbdev/core/fbcon_ud.c
78
region.height = height * vc->vc_font.height;
drivers/video/fbdev/core/fbcon_ud.c
91
u32 idx = vc->vc_font.width >> 3;
drivers/video/fbdev/core/tileblit.c
181
map.width = vc->vc_font.width;
drivers/video/fbdev/core/tileblit.c
182
map.height = vc->vc_font.height;
drivers/video/fbdev/core/tileblit.c
184
map.length = vc->vc_font.charcount;
drivers/video/fbdev/core/tileblit.c
77
unsigned int cw = vc->vc_font.width;
drivers/video/fbdev/core/tileblit.c
78
unsigned int ch = vc->vc_font.height;
include/linux/console_struct.h
152
struct vc_font vc_font; /* Current VC font set */
include/linux/console_struct.h
85
unsigned int vc_font_pitch(const struct vc_font *font);
include/linux/console_struct.h
86
unsigned int vc_font_size(const struct vc_font *font);