Searched refs:xend (Results 1 - 17 of 17) sorted by relevance

/xsrc/external/mit/xf86-video-nsc/dist/src/gfx/
H A Dvid_1400.c347 unsigned long xstart, ystart, xend, yend; local in function:sc1400_set_video_window
383 xend = x + w;
384 if (xend > gfx_get_hactive())
385 xend = gfx_get_hactive();
386 xend += hadjust;
423 WRITE_VID32(SC1400_VIDEO_X_POS, (xend << 16) | xstart);
H A Dvid_5530.c717 unsigned long xstart, ystart, xend, yend; local in function:cs5530_set_video_window
740 xend = (unsigned long)x + (unsigned long)w + hadjust;
742 xend = (unsigned long)gfx_get_hactive() + hadjust;
763 WRITE_VID32(CS5530_VIDEO_X_POS, (xend << 16) | xstart);
H A Dvid_1200.c929 unsigned long xstart, ystart, xend, yend; local in function:sc1200_set_video_window
959 xend = (unsigned long)x + (unsigned long)w + hadjust;
961 xend = (unsigned long)gfx_get_hactive() + hadjust;
986 WRITE_VID32(SC1200_VIDEO_X_POS, (xend << 16) | xstart);
H A Dvid_rdcl.c1075 unsigned long xstart, ystart, xend, yend; local in function:redcloud_set_video_window
1098 xend = (unsigned long)x + (unsigned long)w + hadjust;
1102 xend = (unsigned long)gfx_get_hactive() + hadjust;
1119 WRITE_VID32(RCDF_VIDEO_X_POS, (xend << 16) | xstart);
/xsrc/external/mit/xf86-video-geode/dist/src/gfx/
H A Dvid_5530.c497 unsigned long xstart, ystart, xend, yend; local in function:cs5530_set_video_window
527 xend = x + w;
528 if (xend > gfx_get_hactive())
529 xend = gfx_get_hactive();
530 xend += hadjust;
568 WRITE_VID32(CS5530_VIDEO_X_POS, (xend << 16) | xstart);
H A Dvid_1200.c768 unsigned long xstart, ystart, xend, yend; local in function:sc1200_set_video_window
800 xend = (unsigned long) x + (unsigned long) w + hadjust;
802 xend = (unsigned long) gfx_get_hactive() + hadjust;
827 WRITE_VID32(SC1200_VIDEO_X_POS, (xend << 16) | xstart);
H A Dvid_rdcl.c890 unsigned long xstart, ystart, xend, yend; local in function:redcloud_set_video_window
922 xend = (unsigned long) x + (unsigned long) w + hadjust;
926 xend = (unsigned long) gfx_get_hactive() + hadjust;
943 WRITE_VID32(RCDF_VIDEO_X_POS, (xend << 16) | xstart);
/xsrc/external/mit/xf86-video-geode/dist/src/cim/
H A Dcim_df.c460 unsigned long xstart, xend; local in function:df_set_video_position
654 xend = xstart + width;
722 WRITE_VID32(DF_VIDEO_X_POS, (xend << 16) | xstart);
1081 unsigned long xstart, xend; local in function:df_configure_alpha_window
1197 xend = x_copy + hadjust + width_copy;
1199 if (xend > (hactive + hadjust))
1200 xend = hactive + hadjust;
1202 WRITE_VID32((DF_ALPHA_XPOS_1 + (window << 5)), (xstart | (xend << 16)));
2168 unsigned long xend, yend; local in function:df_get_video_position
2202 xend
[all...]
/xsrc/external/mit/libXaw/dist/src/
H A DPixmap.c800 double i, inc, x, y, xend, yend; local in function:GradientLoader
880 xend = 1;
885 xend = 0;
898 (unsigned int)xend, (unsigned int)yend);
911 x = xend;
919 xend += inc;
922 (unsigned int)xend, (unsigned int)yend);
/xsrc/external/mit/xf86-video-nsc/dist/src/
H A Dnsc_gx2_video.c842 long xstart, ystart, xend, yend; local in function:GX2SetVideoPosition
851 xend = x + drw_w;
873 x = xend = 0;
876 xend = ovly.x2 - DeltaX;
904 GFX(set_video_window(xstart, ystart, xend - xstart, yend - ystart));
H A Dnsc_gx1_video.c891 long xstart, ystart, xend, yend; local in function:GX1SetVideoPosition
900 xend = x + drw_w;
923 x = xend = 0;
927 xend = ovly.x2 - DeltaX;
965 xend = crop;
970 GFX(set_video_window(xstart, ystart, xend - xstart, yend - ystart));
/xsrc/external/mit/xf86-video-intel/dist/src/sna/
H A Dsna_trapezoids_mono.c591 int16_t xend = I(edge->x.quo); local in function:mono_row
594 __FUNCTION__, edge->dir, winding + edge->dir, xend, edge->x.quo));
627 assert(I(next->x.quo) >= xend);
628 if (I(next->x.quo) > xend) {
629 __DBG(("%s: end span: %d\n", __FUNCTION__, xend));
632 if (xend > c->clip.extents.x2)
633 xend = c->clip.extents.x2;
634 if (xend > xstart) {
635 __DBG(("%s: emit span [%d, %d]\n", __FUNCTION__, xstart, xend));
636 c->span(c, xstart, xend,
[all...]
/xsrc/external/mit/xf86-video-geode/dist/src/
H A Dgx_video.c807 long ystart, xend, yend; local in function:GXSetVideoPosition
816 xend = x + drw_w;
839 x = xend = 0;
842 xend = ovly.x2 - DeltaX;
867 GFX(set_video_window(x, ystart, xend - x, yend - ystart));
H A Dlx_video.c356 long ystart, xend, yend; local in function:LXDisplayVideo
409 xend = dstBox->x2;
433 vidPos.width = xend - dstBox->x1;
/xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/
H A Dsna_trapezoids_mono.c548 int16_t xend = I(edge->x.quo); local in function:mono_row
580 assert(I(next->x.quo) >= xend);
581 if (I(next->x.quo) > xend + 1) {
584 if (xend > c->clip.extents.x2)
585 xend = c->clip.extents.x2;
586 if (xend > xstart)
587 c->span(c, xstart, xend, &box);
591 xstart = xend;
/xsrc/external/mit/xf86-video-ati/dist/src/
H A Dradeon_dri.c439 int xstart, xend, xdir; local in function:RADEONScreenToScreenCopyDepth
443 if (xa < xb) xdir = -1, xstart = w-1, xend = 0;
444 else xdir = 1, xstart = 0, xend = w-1;
451 for (x = xstart; x != xend; x += xdir) {
460 for (x = xstart; x != xend; x += xdir) {
/xsrc/external/mit/xedit/dist/lisp/
H A Dcore.c4734 long i, j, start, end, length, copy, count, xstart, xend, xinc, xlength; local in function:LispDeleteRemoveXSubstitute
4844 xend = end;
4849 xend = start - 1;
4860 for (j = xstart; i != xend && count > 0; i += xinc) {
4934 xend = xlength;
4939 xend = -1;
4944 for (i = xstart; i != xend && count > 0; i += xinc) {

Completed in 53 milliseconds