Home
last modified time | relevance | path

Searched refs:xpos (Results 1 – 11 of 11) sorted by relevance

/drivers/video/console/
Dsticon.c87 static void sticon_putc(struct vc_data *conp, int c, int ypos, int xpos) in sticon_putc() argument
97 if ((p->cursor_x == xpos) && (p->cursor_y == ypos)) { in sticon_putc()
103 sti_putc(sticon_sti, c, ypos, xpos); in sticon_putc()
110 int count, int ypos, int xpos) in sticon_putcs() argument
121 if ((p->cursor_y == ypos) && (xpos <= p->cursor_x) && in sticon_putcs()
122 (p->cursor_x < (xpos + count))) { in sticon_putcs()
129 sti_putc(sticon_sti, scr_readw(s++), ypos, xpos++); in sticon_putcs()
Dnewport_con.c365 int xpos) in newport_putc() argument
371 xpos <<= 3; in newport_putc()
374 newport_render_background(xpos, ypos, xpos, ypos, in newport_putc()
385 npregs->set.xystarti = (xpos << 16) | ((ypos + topscan) & 0x3ff); in newport_putc()
386 npregs->set.xyendi = ((xpos + 7) << 16); in newport_putc()
394 int count, int ypos, int xpos) in newport_putcs() argument
402 xpos <<= 3; in newport_putcs()
407 newport_render_background(xpos, ypos, in newport_putcs()
408 xpos + ((count - 1) << 3), ypos, in newport_putcs()
419 for (i = 0; i < count; i++, xpos += 8) { in newport_putcs()
[all …]
Dfbcon.c165 static void fbcon_putc(struct vc_data *vc, int c, int ypos, int xpos);
167 int count, int ypos, int xpos);
1296 int count, int ypos, int xpos) in fbcon_putcs() argument
1303 ops->putcs(vc, info, s, count, real_y(p, ypos), xpos, in fbcon_putcs()
1308 static void fbcon_putc(struct vc_data *vc, int c, int ypos, int xpos) in fbcon_putc() argument
1313 fbcon_putcs(vc, &chr, 1, ypos, xpos); in fbcon_putc()
Dvgacon.c652 static void vgacon_set_cursor_size(int xpos, int from, int to) in vgacon_set_cursor_size() argument
658 if (xpos < 16) in vgacon_set_cursor_size()
/drivers/video/
Dau1200fb.c111 unsigned int xpos; member
193 int xpos; member
711 int xpos, int ypos) in au1200_setlocation() argument
726 if ((xpos + win->w[plane].xres) > panel->Xres) { in au1200_setlocation()
728 xsz = panel->Xres - xpos; /* off by 1 ??? */ in au1200_setlocation()
738 if (xpos < 0) { in au1200_setlocation()
740 xsz = win->w[plane].xres + xpos; in au1200_setlocation()
741 fb_offset += (((0 - xpos) * winbpp(lcd->window[plane].winctrl1))/8); in au1200_setlocation()
742 xpos = 0; in au1200_setlocation()
755 win->w[plane].xpos = xpos; in au1200_setlocation()
[all …]
Dpxafb.c765 int xpos, ypos, pfor, bpp; in overlayfb_check_var() local
767 xpos = NONSTD_TO_XPOS(var->nonstd); in overlayfb_check_var()
797 if ((xpos * bpp) % 32) in overlayfb_check_var()
803 if ((xpos + var->xres > base_var->xres) || in overlayfb_check_var()
841 int xpos, ypos, pfor, bpp, ret; in overlayfb_set_par() local
848 xpos = NONSTD_TO_XPOS(var->nonstd); in overlayfb_set_par()
854 ofb->control[1] = OVLxC2_XPOS(xpos) | OVLxC2_YPOS(ypos); in overlayfb_set_par()
/drivers/input/touchscreen/
Dmigor_ts.c49 unsigned short xpos, ypos; in migor_ts_isr() local
80 xpos = ((buf[11] & 0x03) << 8 | buf[10]); in migor_ts_isr()
88 input_report_abs(priv->input, ABS_Y, xpos); in migor_ts_isr()
/drivers/media/video/davinci/
Dvpbe_osd.c883 lconfig->xpos = min(lconfig->xpos, (unsigned)MAX_WIN_SIZE); in try_layer_config()
1000 osd_write(sd, lconfig->xpos, OSD_OSDWIN0XP); in _osd_set_layer_config()
1017 osd_write(sd, lconfig->xpos, OSD_VIDWIN0XP); in _osd_set_layer_config()
1037 osd_write(sd, lconfig->xpos, OSD_VIDWIN1XP); in _osd_set_layer_config()
1149 osd_write(sd, lconfig->xpos, OSD_OSDWIN1XP); in _osd_set_layer_config()
1166 osd_write(sd, lconfig->xpos, OSD_VIDWIN1XP); in _osd_set_layer_config()
1185 osd_write(sd, lconfig->xpos, OSD_VIDWIN0XP); in _osd_set_layer_config()
1380 cfg->xpos = 0; in osd_init_layer()
Dvpbe_display.c496 cfg->xpos = min((unsigned int)left, in vpbe_disp_adj_position()
503 cfg->xpos, cfg->ypos); in vpbe_disp_adj_position()
722 rect->left = cfg->xpos; in vpbe_display_g_crop()
844 cfg->xpos = 0; in vpbe_display_s_fmt()
/drivers/video/pnx4008/
Dsdum.c332 u32 * frame_buffer, u32 xpos, u32 ypos, u32 w, u32 h) in display_open() argument
339 if ((xpos + w) > DISP_MAX_X_SIZE) in display_open()
340 w = DISP_MAX_X_SIZE - xpos; in display_open()
347 k.xmin = xpos; in display_open()
349 k.xmax = xpos + (w - 1); in display_open()
/drivers/gpu/drm/i915/
Dintel_tv.c1084 int xpos = 0x0, ypos = 0x0; in intel_tv_mode_set() local
1107 xpos += intel_tv->margin[TV_MARGIN_LEFT]; in intel_tv_mode_set()
1113 I915_WRITE(TV_WIN_POS, (xpos<<16)|ypos); in intel_tv_mode_set()