Searched refs:fontheight (Results 1 - 25 of 59) sorted by relevance

123

/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/video/
H A Dfbcon-mfb.c42 src = p->screen_base+sy*fontheight(p)*width;
43 dest = p->screen_base+dy*fontheight(p)*width;
44 fb_memmove(dest, src, height*fontheight(p)*width);
46 src = p->screen_base+sy*fontheight(p)*p->next_line+sx;
47 dest = p->screen_base+dy*fontheight(p)*p->next_line+dx;
48 for (rows = height*fontheight(p); rows--;) {
54 src = p->screen_base+((sy+height)*fontheight(p)-1)*p->next_line+sx;
55 dest = p->screen_base+((dy+height)*fontheight(p)-1)*p->next_line+dx;
56 for (rows = height*fontheight(p); rows--;) {
71 dest = p->screen_base+sy*fontheight(
[all...]
H A Dfbcon-ilbm.c48 fb_memmove(p->screen_base+dy*fontheight(p)*p->next_line,
49 p->screen_base+sy*fontheight(p)*p->next_line,
50 height*fontheight(p)*p->next_line);
56 src = p->screen_base+sy*fontheight(p)*p->next_line+sx;
57 dest = p->screen_base+dy*fontheight(p)*p->next_line+dx;
58 for (i = p->var.bits_per_pixel*height*fontheight(p); i--;) {
64 src = p->screen_base+(sy+height)*fontheight(p)*p->next_line+sx;
65 dest = p->screen_base+(dy+height)*fontheight(p)*p->next_line+dx;
66 for (i = p->var.bits_per_pixel*height*fontheight(p); i--;) {
82 dest = p->screen_base+sy*fontheight(
[all...]
H A Dfbcon-sti.c122 src = p->screen_base+sy*fontheight(p)*width;
123 dest = p->screen_base+dy*fontheight(p)*width;
124 memcpy_fromhp_tohp(dest, src, height*fontheight(p)*width);
126 src = p->screen_base+sy*fontheight(p)*p->next_line+sx;
127 dest = p->screen_base+dy*fontheight(p)*p->next_line+dx;
128 for (rows = height*fontheight(p); rows--;) {
134 src = p->screen_base+((sy+height)*fontheight(p)-1)*p->next_line+sx;
135 dest = p->screen_base+((dy+height)*fontheight(p)-1)*p->next_line+dx;
136 for (rows = height*fontheight(p); rows--;) {
153 dest = p->screen_base+sy*fontheight(
[all...]
H A Dfbcon-hga.c55 y1 = sy*fontheight(p);
56 y2 = dy*fontheight(p);
57 for (rows = height*fontheight(p); rows--; ) {
65 y1 = (sy+height)*fontheight(p)-1;
66 y2 = (dy+height)*fontheight(p)-1;
67 for (rows = height*fontheight(p); rows--;) {
86 y = sy*fontheight(p);
87 for (rows = height*fontheight(p); rows--; y++) {
104 cdat = p->fontdata+(c&p->charmask)*fontheight(p);
108 y = yy*fontheight(
[all...]
H A Dfbcon-vga-planes.c117 sy *= fontheight(p);
118 dy *= fontheight(p);
119 height *= fontheight(p);
167 sy *= fontheight(p);
168 height *= fontheight(p);
186 u8 *cdat = p->fontdata + (c & p->charmask) * fontheight(p);
187 char *where = p->screen_base + xx + yy * p->line_length * fontheight(p);
196 for (y = 0; y < fontheight(p); y++, where += p->line_length)
202 for (y = 0; y < fontheight(p); y++, where += p->line_length)
215 u8 *cdat = p->fontdata + (c & p->charmask) * fontheight(
[all...]
H A Dfbcon-cfb2.c60 int bytes = p->next_line, linesize = bytes * fontheight(p), rows;
72 for (rows = height * fontheight(p) ; rows-- ;) {
83 for (rows = height * fontheight(p) ; rows-- ;) {
96 int bytes=p->next_line,lines=height * fontheight(p), rows, i;
99 dest = p->screen_base + sy * fontheight(p) * bytes + sx * 2;
131 dest = p->screen_base + yy * fontheight(p) * bytes + xx * 2;
132 cdat = p->fontdata + (c & p->charmask) * fontheight(p);
142 for (rows = fontheight(p) ; rows-- ; dest += bytes) {
156 dest0 = p->screen_base + yy * fontheight(p) * bytes + xx * 2;
167 cdat = p->fontdata + c * fontheight(
[all...]
H A Dfbcon-cfb4.c60 int bytes = p->next_line, linesize = bytes * fontheight(p), rows;
72 for (rows = height * fontheight(p) ; rows-- ;) {
83 for (rows = height * fontheight(p) ; rows-- ;) {
96 int bytes=p->next_line,lines=height * fontheight(p), rows, i;
101 dest = p->screen_base + sy * fontheight(p) * bytes + sx * 4;
133 dest = p->screen_base + yy * fontheight(p) * bytes + xx * 4;
134 cdat = p->fontdata + (c & p->charmask) * fontheight(p);
144 for (rows = fontheight(p) ; rows-- ; dest += bytes) {
158 dest0 = p->screen_base + yy * fontheight(p) * bytes + xx * 4;
171 cdat = p->fontdata + c * fontheight(
[all...]
H A Dfbcon-cfb8.c51 int bytes = p->next_line, linesize = bytes * fontheight(p), rows;
68 for (rows = height * fontheight(p) ; rows-- ;) {
76 for (rows = height * fontheight(p) ; rows-- ;) {
97 int bytes=p->next_line,lines=height * fontheight(p);
100 dest = p->screen_base + sy * fontheight(p) * bytes + sx * fontwidth(p);
118 dest = p->screen_base + yy * fontheight(p) * bytes + xx * fontwidth(p);
120 cdat = p->fontdata + (c & p->charmask) * fontheight(p);
122 cdat = p->fontdata + ((c & p->charmask) * fontheight(p) << 1);
134 for (rows = fontheight(p) ; rows-- ; dest += bytes)
138 for (rows = fontheight(
[all...]
H A Dfbcon-mac.c60 src = (u8 *) (p->screen_base + sy * fontheight(p) * p->next_line);
61 dest = (u8 *) (p->screen_base + dy * fontheight(p) * p->next_line);
64 s = height * fontheight(p) * p->next_line;
71 t = sy * fontheight(p);
72 b = t + height * fontheight(p);
76 dt = dy * fontheight(p);
77 db = dt + height * fontheight(p);
146 src += height * fontheight(p);
147 dest += height * fontheight(p);
200 dest = (u8 *) (p->screen_base + sy * fontheight(
[all...]
H A Dfbcon-cfb16.c46 int bytes = p->next_line, linesize = bytes * fontheight(p), rows;
67 for (rows = height * fontheight(p); rows--;) {
75 for (rows = height * fontheight(p); rows--;) {
108 int bytes = p->next_line, lines = height * fontheight(p);
111 dest = p->screen_base + sy * fontheight(p) * bytes + sx * fontwidth(p) * 2;
129 dest = p->screen_base + yy * fontheight(p) * bytes + xx * fontwidth(p) * 2;
140 cdat = p->fontdata + (c & p->charmask) * fontheight(p);
141 for (rows = fontheight(p); rows--; dest += bytes) {
153 cdat = p->fontdata + ((c & p->charmask) * fontheight(p) << 1);
154 for (rows = fontheight(
[all...]
H A Dfbcon-iplan2p2.c175 fb_memmove(p->screen_base + dy * p->next_line * fontheight(p),
176 p->screen_base + sy * p->next_line * fontheight(p),
177 p->next_line * height * fontheight(p));
191 linesize = bytes * fontheight(p);
192 colsize = height * fontheight(p);
281 lines = height * fontheight(p);
287 offset = sy * bytes * fontheight(p);
294 offset = sy * bytes * fontheight(p) + (sx>>1)*4 + (sx & 1);
335 dest = (p->screen_base + yy * bytes * fontheight(p) +
337 cdat = p->fontdata + (c & p->charmask) * fontheight(
[all...]
H A Dfbcon-iplan2p4.c183 fb_memmove(p->screen_base + dy * p->next_line * fontheight(p),
184 p->screen_base + sy * p->next_line * fontheight(p),
185 p->next_line * height * fontheight(p));
199 linesize = bytes * fontheight(p);
200 colsize = height * fontheight(p);
291 lines = height * fontheight(p);
297 offset = sy * bytes * fontheight(p);
304 offset = sy * bytes * fontheight(p) + (sx>>1)*8 + (sx & 1);
345 dest = (p->screen_base + yy * bytes * fontheight(p) +
347 cdat = p->fontdata + (c & p->charmask) * fontheight(
[all...]
H A Ddn_cfb8.c430 dn_bitblt(p,sx,sy*p->fontheight,dx,dy*p->fontheight,width*p->fontwidth,
431 height*p->fontheight);
437 src = p->screen_base+sy*p->fontheight*width;
438 dest = p->screen_base+dy*p->fontheight*width;
439 mymemmove(dest, src, height*p->fontheight*width);
441 src = p->screen_base+sy*p->fontheight*p->next_line+sx;
442 dest = p->screen_base+dy*p->fontheight*p->next_line+dx;
443 for (rows = height*p->fontheight; rows--;) {
449 src = p->screen_base+((sy+height)*p->fontheight
[all...]
H A Dfbcon-cfb24.c35 int bytes = p->next_line, linesize = bytes * fontheight(p), rows;
57 for (rows = height * fontheight(p); rows--;) {
65 for (rows = height * fontheight(p); rows--;) {
122 int bytes = p->next_line, lines = height * fontheight(p);
125 dest = p->screen_base + sy * fontheight(p) * bytes + sx * fontwidth(p) * 3;
143 dest = p->screen_base + yy * fontheight(p) * bytes + xx * fontwidth(p) * 3;
145 cdat = p->fontdata + (c & p->charmask) * fontheight(p);
147 cdat = p->fontdata + ((c & p->charmask) * fontheight(p) << 1);
153 for (rows = fontheight(p); rows--; dest += bytes) {
193 dest0 = p->screen_base + yy * fontheight(
[all...]
H A Dfbcon-cfb32.c35 int bytes = p->next_line, linesize = bytes * fontheight(p), rows;
56 for (rows = height * fontheight(p); rows--;) {
64 for (rows = height * fontheight(p); rows--;) {
99 int bytes = p->next_line, lines = height * fontheight(p);
102 dest = p->screen_base + sy * fontheight(p) * bytes + sx * fontwidth(p) * 4;
120 dest = p->screen_base + yy * fontheight(p) * bytes + xx * fontwidth(p) * 4;
122 cdat = p->fontdata + (c & p->charmask) * fontheight(p);
124 cdat = p->fontdata + ((c & p->charmask) * fontheight(p) << 1);
129 for (rows = fontheight(p); rows--; dest += bytes) {
166 dest0 = p->screen_base + yy * fontheight(
[all...]
H A Ddnfb.c440 int fontheight,fontwidth; local
442 fontheight=fontheight(p);
446 dn_bitblt(p,sx,sy*fontheight,dx,dy*fontheight,width*fontwidth,
447 height*fontheight);
453 src = p->screen_base+sy*fontheight*width;
454 dest = p->screen_base+dy*fontheight*width;
455 mymemmove(dest, src, height*fontheight*width);
457 src = p->screen_base+sy*fontheight*next_lin
[all...]
H A Dfbcon-iplan2p8.c215 fast_memmove(p->screen_base + dy * p->next_line * fontheight(p),
216 p->screen_base + sy * p->next_line * fontheight(p),
217 p->next_line * height * fontheight(p));
231 linesize = bytes * fontheight(p);
232 colsize = height * fontheight(p);
323 lines = height * fontheight(p);
329 offset = sy * bytes * fontheight(p);
336 offset = sy * bytes * fontheight(p) + (sx>>1)*16 + (sx & 1);
377 dest = (p->screen_base + yy * bytes * fontheight(p) +
379 cdat = p->fontdata + (c & p->charmask) * fontheight(
[all...]
H A Dfbcon-afb.c177 src = p->screen_base+sy*fontheight(p)*width;
178 dest = p->screen_base+dy*fontheight(p)*width;
181 fb_memmove(dest, src, height*fontheight(p)*width);
186 src0 = p->screen_base+sy*fontheight(p)*p->next_line+sx;
187 dest0 = p->screen_base+dy*fontheight(p)*p->next_line+dx;
192 j = height*fontheight(p);
202 src0 = p->screen_base+(sy+height)*fontheight(p)*p->next_line+sx;
203 dest0 = p->screen_base+(dy+height)*fontheight(p)*p->next_line+dx;
208 j = height*fontheight(p);
227 dest0 = p->screen_base+sy*fontheight(
[all...]
H A Ddn_cfb4.c440 int fontheight,fontwidth; local
442 fontheight=fontheight(p);
446 dn_bitblt(p,sx,sy*fontheight,dx,dy*fontheight,width*fontwidth,
447 height*fontheight);
453 src = p->screen_base+sy*fontheight*width;
454 dest = p->screen_base+dy*fontheight*width;
455 mymemmove(dest, src, height*fontheight*width);
457 src = p->screen_base+sy*fontheight*
[all...]
H A Dleofb.c191 y = sy * fontheight(p); h = height * fontheight(p);
243 y = (yy * fontheight(p)) << 11;
244 i = (c & p->charmask) * fontheight(p);
263 for (i = 0; i < fontheight(p); i++, u += 2048) {
269 for (i = 0; i < fontheight(p); i++, u += 2048) {
306 y = (yy * fontheight(p)) << 11;
310 x = 4*fontwidth(p) - fontheight(p)*2048;
319 fd1 = p->fontdata + ((scr_readw(s++) & p->charmask) * fontheight(p));
320 fd2 = p->fontdata + ((scr_readw(s++) & p->charmask) * fontheight(
[all...]
H A Dcgsixfb.c255 y = sy * fontheight(p); h = height * fontheight(p);
316 y = fb->y_margin + (yy * fontheight(p));
317 i = (c & p->charmask) * fontheight(p);
344 for (i = 0; i < fontheight(p); i++) {
349 for (i = 0; i < fontheight(p); i++) {
391 y += (yy * fontheight(p));
406 fd1 = p->fontdata + ((scr_readw(s++) & p->charmask) * fontheight(p));
407 fd2 = p->fontdata + ((scr_readw(s++) & p->charmask) * fontheight(p));
408 fd3 = p->fontdata + ((scr_readw(s++) & p->charmask) * fontheight(
[all...]
H A Dcreatorfb.c381 yx = (u64)(sy * fontheight(p)) << 32; hw = (u64)(height * fontheight(p)) << 32;
432 xy = ((yy * fontheight(p)) << 16);
433 i = (c & p->charmask) * fontheight(p);
450 FFBFifo(fb, 2 + fontheight(p));
454 for (i = 0; i < fontheight(p); i++) {
460 for (i = 0; i < fontheight(p); i++) {
498 xy += ((yy * fontheight(p)) << 16);
502 FFBFifo(fb, 2 + fontheight(p));
511 fd1 = p->fontdata + ((scr_readw(s++) & p->charmask) * fontheight(
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/video/riva/
H A Daccel.c60 sy *= fontheight(p);
62 dy *= fontheight(p);
64 height *= fontheight(p);
80 unsigned int bottom_start = conp->vc_rows*fontheight(p);
130 h = fontheight(p);
181 sy *= fontheight(p);
183 height *= fontheight(p);
197 yy *= fontheight(p);
210 yy *= fontheight(p);
227 yy *= fontheight(
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/video/matrox/
H A Dmatroxfb_accel.c158 height *= fontheight(p);
159 sy *= fontheight(p);
160 dy *= fontheight(p);
208 height *= fontheight(p);
209 sy *= fontheight(p);
210 dy *= fontheight(p);
267 matroxfb_accel_clear(PMXINFO(p) color, sy * fontheight(p), sx * fontwidth(p),
268 height * fontheight(p), width * fontwidth(p));
287 sy *= fontheight(p);
289 height *= fontheight(
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/video/sis/
H A Dsis_accel.c367 srcy *= fontheight(p);
369 dsty *= fontheight(p);
371 height *= fontheight(p);
401 srcy *= fontheight(p);
403 height *= fontheight(p);
452 srcy *= fontheight(p);
457 SiS300SubsequentSolidFillRect(srcx, srcy, fontwidth(p), fontheight(p));
463 SiS310SubsequentSolidFillRect(srcx, srcy, fontwidth(p), fontheight(p));

Completed in 178 milliseconds

123