OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VIDEO_FONT_HEIGHT
(Results
1 - 9
of
9
) sorted by null
/external/u-boot/common/
lcd_console_rotation.c
22
uchar *pfont = video_fontdata + c *
VIDEO_FONT_HEIGHT
;
24
for (i = 0; i <
VIDEO_FONT_HEIGHT
; ++i)
27
dst += (pcons->lcdsizex +
VIDEO_FONT_HEIGHT
);
36
row*
VIDEO_FONT_HEIGHT
+1;
39
for (i = 0; i <
VIDEO_FONT_HEIGHT
; i++)
41
dst += (pcons->lcdsizex +
VIDEO_FONT_HEIGHT
);
51
(rowdst*
VIDEO_FONT_HEIGHT
+1);
55
(rowsrc*
VIDEO_FONT_HEIGHT
+1);
58
for (i = 0; i <
VIDEO_FONT_HEIGHT
; i++)
60
src += (pcons->lcdsizex +
VIDEO_FONT_HEIGHT
);
[
all
...]
lcd_console.c
53
for (row = 0; row <
VIDEO_FONT_HEIGHT
; row++) {
54
uchar bits = video_fontdata[c *
VIDEO_FONT_HEIGHT
+ row];
67
row *
VIDEO_FONT_HEIGHT
*
70
for (i = 0; i < (
VIDEO_FONT_HEIGHT
* pcons->lcdsizex); i++)
79
rowdst *
VIDEO_FONT_HEIGHT
*
83
rowsrc *
VIDEO_FONT_HEIGHT
*
86
for (i = 0; i < (
VIDEO_FONT_HEIGHT
* pcons->lcdsizex); i++)
100
cons.curr_row *
VIDEO_FONT_HEIGHT
, ' ');
127
pcons->rows /=
VIDEO_FONT_HEIGHT
;
129
pcons->rows = sizey /
VIDEO_FONT_HEIGHT
;
[
all
...]
lcd.c
277
lcd_set_row(7 + BMP_LOGO_HEIGHT /
VIDEO_FONT_HEIGHT
);
744
lcd_set_row(LCD_INFO_Y /
VIDEO_FONT_HEIGHT
);
/external/u-boot/drivers/video/
console_rotate.c
22
(row + 1) *
VIDEO_FONT_HEIGHT
* pbytes;
29
for (i = 0; i <
VIDEO_FONT_HEIGHT
; i++)
38
for (i = 0; i <
VIDEO_FONT_HEIGHT
; i++)
47
for (i = 0; i <
VIDEO_FONT_HEIGHT
; i++)
71
(rowdst + count) *
VIDEO_FONT_HEIGHT
* pbytes;
73
(rowsrc + count) *
VIDEO_FONT_HEIGHT
* pbytes;
76
memmove(dst, src,
VIDEO_FONT_HEIGHT
* pbytes * count);
93
uchar *pfont = video_fontdata + ch *
VIDEO_FONT_HEIGHT
;
100
for (col = 0; col <
VIDEO_FONT_HEIGHT
; col++) {
106
for (i = 0; i <
VIDEO_FONT_HEIGHT
; i++)
[
all
...]
console_normal.c
20
int pixels =
VIDEO_FONT_HEIGHT
* vid_priv->xsize;
23
line = vid_priv->fb + row *
VIDEO_FONT_HEIGHT
* vid_priv->line_length;
66
dst = vid_priv->fb + rowdst *
VIDEO_FONT_HEIGHT
* vid_priv->line_length;
67
src = vid_priv->fb + rowsrc *
VIDEO_FONT_HEIGHT
* vid_priv->line_length;
68
memmove(dst, src,
VIDEO_FONT_HEIGHT
* vid_priv->line_length * count);
86
for (row = 0; row <
VIDEO_FONT_HEIGHT
; row++) {
87
uchar bits = video_fontdata[ch *
VIDEO_FONT_HEIGHT
+ row];
142
vc_priv->y_charsize =
VIDEO_FONT_HEIGHT
;
144
vc_priv->rows = vid_priv->ysize /
VIDEO_FONT_HEIGHT
;
cfb_console.c
56
* VIDEO_INFO_Y + i*
VIDEO_FONT_HEIGHT
,
171
#define VIDEO_INFO_Y (
VIDEO_FONT_HEIGHT
/2)
186
#define CONSOLE_ROWS ((VIDEO_ROWS - video_logo_height) /
VIDEO_FONT_HEIGHT
)
188
#define CONSOLE_ROWS (VIDEO_ROWS /
VIDEO_FONT_HEIGHT
)
192
#define CONSOLE_ROW_SIZE (
VIDEO_FONT_HEIGHT
* VIDEO_LINE_LEN)
332
cdat = video_fontdata + c *
VIDEO_FONT_HEIGHT
;
333
for (rows =
VIDEO_FONT_HEIGHT
, dest = dest0;
356
cdat = video_fontdata + c *
VIDEO_FONT_HEIGHT
;
357
for (rows =
VIDEO_FONT_HEIGHT
, dest = dest0;
390
cdat = video_fontdata + c *
VIDEO_FONT_HEIGHT
;
[
all
...]
/external/u-boot/include/
lcd.h
151
#define LCD_INFO_Y (BMP_LOGO_HEIGHT +
VIDEO_FONT_HEIGHT
)
154
#define LCD_INFO_Y
VIDEO_FONT_HEIGHT
157
#define LCD_INFO_Y
VIDEO_FONT_HEIGHT
video_font_4x6.h
46
#define
VIDEO_FONT_HEIGHT
6
47
#define VIDEO_FONT_SIZE (VIDEO_FONT_CHARS *
VIDEO_FONT_HEIGHT
)
[
all
...]
video_font_data.h
14
#define
VIDEO_FONT_HEIGHT
16
15
#define VIDEO_FONT_SIZE (VIDEO_FONT_CHARS *
VIDEO_FONT_HEIGHT
)
[
all
...]
Completed in 129 milliseconds