Searched refs:screen (Results 1 - 8 of 8) sorted by relevance

/u-boot/board/gdsys/common/
H A Dosd.h10 int ch7301_probe(unsigned screen, bool power);
11 int osd_probe(unsigned screen);
H A Ddp501.h29 int dp501_probe(unsigned screen, bool power);
H A Dosd.c42 #define OSD_SET_REG(screen, fld, val) \
44 if (screen >= OSD_DH_BASE) \
45 FPGA_SET_REG(screen - OSD_DH_BASE, osd1.fld, val); \
47 FPGA_SET_REG(screen, osd0.fld, val); \
50 #define OSD_SET_REG(screen, fld, val) \
51 FPGA_SET_REG(screen, osd0.fld, val)
55 #define OSD_GET_REG(screen, fld, val) \
57 if (screen >= OSD_DH_BASE) \
58 FPGA_GET_REG(screen - OSD_DH_BASE, osd1.fld, val); \
60 FPGA_GET_REG(screen, osd
108 mpc92469ac_set(unsigned screen, unsigned int fout) argument
242 osd_write_videomem(unsigned screen, unsigned offset, u16 *data, size_t charcount) argument
267 unsigned screen; local
307 osd_probe(unsigned screen) argument
404 unsigned screen; local
457 unsigned screen; local
[all...]
H A Ddp501.c141 int dp501_probe(unsigned screen, bool power) argument
144 uint8_t dp501_addr = dp501_base[screen];
150 i2c_set_bus_num(dp501_i2c[screen]);
/u-boot/arch/sandbox/cpu/
H A Dsdl.c48 * @screen: SDL window to use
68 SDL_Window *screen; member in struct:sdl_info
116 SDL_DestroyWindow(sdl.screen);
119 sdl.screen = NULL;
160 sdl.screen = SDL_CreateWindow("U-Boot", SDL_WINDOWPOS_UNDEFINED,
163 if (!sdl.screen) {
164 printf("Unable to initialise SDL screen: %s\n",
168 sdl.renderer = SDL_CreateRenderer(sdl.screen, -1,
/u-boot/scripts/kconfig/lxdialog/
H A Ddialog.h98 struct dialog_color screen; member in struct:dialog_info
H A Dutil.c20 dlg.screen.atr = A_NORMAL;
60 DLG_COLOR(screen, COLOR_CYAN, COLOR_BLUE, true);
93 DLG_COLOR(screen, COLOR_RED, COLOR_BLACK, true);
180 init_one_color(&dlg.screen);
249 attr_clear(stdscr, lines, columns, dlg.screen.atr);
255 wattrset(stdscr, dlg.screen.atr);
570 /* redraw screen in new size */
/u-boot/drivers/video/
H A Dstb_truetype.h167 // As you draw text to the screen, you keep track of a "current point"
207 // screen where y=0, then you would set the baseline to SF*-y0.
301 // assume orthographic projection with units = screen pixels, origin at top left
373 unsigned char screen[20][79]; variable
394 stbtt_MakeCodepointBitmapSubpixel(&font, &screen[baseline + y0][(int) xpos + x0], x1-x0,y1-y0, 79, scale,scale,x_shift,0, text[ch]);
407 putchar(" .:ioVM@"[screen[j][i]>>5]);
551 float *xpos, float *ypos, // pointers to current position in screen pixel space
659 float *xpos, float *ypos, // pointers to current position in screen pixel space

Completed in 80 milliseconds