Searched refs:prect (Results 1 - 25 of 48) sorted by relevance

12

/xsrc/external/mit/xorg-server.old/dist/mi/
H A Dmifillrct.c80 xRectangle *prect; local in function:miPolyFillRect
93 prect = prectInit;
95 for (i = 0; i<nrectFill; i++, prect++)
97 prect->x += xorg;
98 prect->y += yorg;
99 maxheight = max(maxheight, prect->height);
104 prect = prectInit;
106 for (i = 0; i<nrectFill; i++, prect++)
107 maxheight = max(maxheight, prect->height);
119 prect
[all...]
H A Dmiexpose.c535 xRectangle *prect; local in function:miPaintWindow
646 prect = malloc(RegionNumRects(prgn) * sizeof(xRectangle));
647 if (!prect)
653 free(prect);
662 for (i= numRects; --i >= 0; pbox++, prect++)
664 prect->x = pbox->x1 - draw_x_off;
665 prect->y = pbox->y1 - draw_y_off;
666 prect->width = pbox->x2 - pbox->x1;
667 prect->height = pbox->y2 - pbox->y1;
669 prect
[all...]
H A Dmibitblt.c89 BoxRec srcBox, *prect; local in function:miCopyArea
213 prect = &boxes[ordering[i]];
214 xMin = max(prect->x1, srcBox.x1);
215 xMax = min(prect->x2, srcBox.x2);
216 yMin = max(prect->y1, srcBox.y1);
217 yMax = min(prect->y2, srcBox.y2);
/xsrc/external/mit/xorg-server/dist/mi/
H A Dmifillrct.c76 xRectangle *prect; local in function:miPolyFillRect
88 prect = prectInit;
90 for (i = 0; i < nrectFill; i++, prect++) {
91 prect->x += xorg;
92 prect->y += yorg;
93 maxheight = max(maxheight, prect->height);
97 prect = prectInit;
99 for (i = 0; i < nrectFill; i++, prect++)
100 maxheight = max(maxheight, prect->height);
111 prect
[all...]
H A Dmiexpose.c406 xRectangle *prect; local in function:miPaintWindow
514 prect = xallocarray(regionnumrects, sizeof(xRectangle));
515 if (!prect)
520 free(prect);
529 for (i = numRects; --i >= 0; pbox++, prect++) {
530 prect->x = pbox->x1 - draw_x_off;
531 prect->y = pbox->y1 - draw_y_off;
532 prect->width = pbox->x2 - pbox->x1;
533 prect->height = pbox->y2 - pbox->y1;
535 prect
[all...]
/xsrc/external/mit/xorg-server/dist/glamor/
H A Dglamor_rects.c46 GCPtr gc, int nrect, xRectangle *prect)
69 glamor_bounds_union_rect(&bounds, &prect[i]);
94 memcpy(v, prect, nrect * sizeof (xRectangle));
116 v[0] = prect->x; v[1] = prect->y;
117 v[2] = prect->x; v[3] = prect->y + prect->height;
118 v[4] = prect->x + prect
45 glamor_poly_fill_rect_gl(DrawablePtr drawable,GCPtr gc,int nrect,xRectangle * prect) argument
177 glamor_poly_fill_rect_bail(DrawablePtr drawable,GCPtr gc,int nrect,xRectangle * prect) argument
191 glamor_poly_fill_rect(DrawablePtr drawable,GCPtr gc,int nrect,xRectangle * prect) argument
[all...]
H A Dglamor_render.c1415 glamor_composite_rect_t *prect = rect; local in function:glamor_composite_clipped_region
1555 prect = calloc(nbox, sizeof(*prect));
1556 if (prect)
1559 prect = rect;
1568 prect[i].x_src = box[i].x1 + x_temp_src - x_dest;
1569 prect[i].y_src = box[i].y1 + y_temp_src - y_dest;
1570 prect[i].x_mask = box[i].x1 + x_temp_mask - x_dest;
1571 prect[i].y_mask = box[i].y1 + y_temp_mask - y_dest;
1572 prect[
[all...]
/xsrc/external/mit/xorg-server.old/dist/fb/
H A Dfbfillrect.c33 xRectangle *prect)
54 fullX1 = prect->x + xorg;
55 fullY1 = prect->y + yorg;
56 fullX2 = fullX1 + (int) prect->width;
57 fullY2 = fullY1 + (int) prect->height;
58 prect++;
30 fbPolyFillRect(DrawablePtr pDrawable,GCPtr pGC,int nrect,xRectangle * prect) argument
/xsrc/external/mit/xorg-server/dist/fb/
H A Dfbfillrect.c30 fbPolyFillRect(DrawablePtr pDrawable, GCPtr pGC, int nrect, xRectangle *prect) argument
50 fullX1 = prect->x + xorg;
51 fullY1 = prect->y + yorg;
52 fullX2 = fullX1 + (int) prect->width;
53 fullY2 = fullY1 + (int) prect->height;
54 prect++;
/xsrc/external/mit/xf86-video-intel-old/dist/uxa/
H A Duxa-accel.c513 xRectangle *prect; local in function:uxa_poly_point
523 prect = xalloc(sizeof(xRectangle) * npt);
524 if (!prect)
527 prect[i].x = ppt[i].x;
528 prect[i].y = ppt[i].y;
530 prect[i].x += prect[i - 1].x;
531 prect[i].y += prect[i - 1].y;
533 prect[
549 xRectangle *prect; local in function:uxa_poly_lines
612 xRectangle *prect; local in function:uxa_poly_segment
666 uxa_poly_fill_rect(DrawablePtr pDrawable,GCPtr pGC,int nrect,xRectangle * prect) argument
[all...]
/xsrc/external/mit/xorg-server.old/dist/exa/
H A Dexa_accel.c619 xRectangle *prect; local in function:exaPolyPoint
629 prect = malloc(sizeof(xRectangle) * npt);
631 prect[i].x = ppt[i].x;
632 prect[i].y = ppt[i].y;
634 prect[i].x += prect[i - 1].x;
635 prect[i].y += prect[i - 1].y;
637 prect[i].width = 1;
638 prect[
654 xRectangle *prect; local in function:exaPolylines
721 xRectangle *prect; local in function:exaPolySegment
774 exaPolyFillRect(DrawablePtr pDrawable,GCPtr pGC,int nrect,xRectangle * prect) argument
[all...]
/xsrc/external/mit/xorg-server/dist/exa/
H A Dexa_accel.c619 xRectangle *prect; local in function:exaPolyPoint
629 prect = xallocarray(npt, sizeof(xRectangle));
631 prect[i].x = ppt[i].x;
632 prect[i].y = ppt[i].y;
634 prect[i].x += prect[i - 1].x;
635 prect[i].y += prect[i - 1].y;
637 prect[i].width = 1;
638 prect[
654 xRectangle *prect; local in function:exaPolylines
723 xRectangle *prect; local in function:exaPolySegment
777 exaPolyFillRect(DrawablePtr pDrawable,GCPtr pGC,int nrect,xRectangle * prect) argument
[all...]
/xsrc/external/mit/xf86-video-intel/dist/src/uxa/
H A Duxa-accel.c508 xRectangle *prect; local in function:uxa_poly_point
518 prect = malloc(sizeof(xRectangle) * npt);
519 if (!prect)
522 prect[i].x = ppt[i].x;
523 prect[i].y = ppt[i].y;
525 prect[i].x += prect[i - 1].x;
526 prect[i].y += prect[i - 1].y;
528 prect[
544 xRectangle *prect; local in function:uxa_poly_lines
643 xRectangle *prect; local in function:uxa_poly_segment
679 uxa_poly_fill_rect(DrawablePtr pDrawable,GCPtr pGC,int nrect,xRectangle * prect) argument
[all...]
/xsrc/external/mit/xf86-video-intel-2014/dist/src/uxa/
H A Duxa-accel.c508 xRectangle *prect; local in function:uxa_poly_point
518 prect = malloc(sizeof(xRectangle) * npt);
519 if (!prect)
522 prect[i].x = ppt[i].x;
523 prect[i].y = ppt[i].y;
525 prect[i].x += prect[i - 1].x;
526 prect[i].y += prect[i - 1].y;
528 prect[
544 xRectangle *prect; local in function:uxa_poly_lines
643 xRectangle *prect; local in function:uxa_poly_segment
679 uxa_poly_fill_rect(DrawablePtr pDrawable,GCPtr pGC,int nrect,xRectangle * prect) argument
[all...]
/xsrc/external/mit/xf86-video-sunffb/dist/src/
H A Dffb_loops.h46 xRectangle *prect,
111 #define FFB_RECT_LOOP(pFfb, ffb, prect, _prect_last, xOrg, yOrg) \
114 for (; prect <= prect_last; prect++) { \
116 x = prect->x + xOrg; \
117 y = prect->y + yOrg; \
118 w = prect->width; \
119 h = prect->height; \
/xsrc/external/mit/xf86-video-qxl/dist/src/uxa/
H A Duxa-accel.c652 xRectangle *prect; local in function:uxa_poly_point
662 prect = malloc(sizeof(xRectangle) * npt);
663 if (!prect)
666 prect[i].x = ppt[i].x;
667 prect[i].y = ppt[i].y;
669 prect[i].x += prect[i - 1].x;
670 prect[i].y += prect[i - 1].y;
672 prect[
688 xRectangle *prect; local in function:uxa_poly_lines
750 xRectangle *prect; local in function:uxa_poly_segment
803 uxa_poly_fill_rect(DrawablePtr pDrawable,GCPtr pGC,int nrect,xRectangle * prect) argument
[all...]
/xsrc/external/mit/xorg-server.old/dist/hw/xfree86/xaa/
H A DxaaFillRect.c100 xRectangle *prect = prectInit; local in function:XAAPolyFillRect
103 prect->x += xorg;
104 prect->y += yorg;
105 prect++;
1040 xRectangle *prect,
1054 pboxClipped->x1 = max(pextent->x1, prect->x);
1055 pboxClipped->y1 = max(pextent->y1, prect->y);
1057 Right = (int)prect->x + (int)prect->width;
1060 Bottom = (int)prect
1036 XAAClipAndRenderRects(GCPtr pGC,ClipAndRenderRectsFunc BoxFunc,int nrectFill,xRectangle * prect,int xorg,int yorg) argument
1134 xRectangle *prect = prectInit; local in function:XAAGetRectClipBoxes
[all...]
/xsrc/external/mit/xorg-server.old/dist/miext/cw/
H A Dcw.h130 #define CW_OFFSET_RECTS(prect, nrect) do { \
133 (prect)[_i].x += dst_off_x; \
134 (prect)[_i].y += dst_off_y; \
/xsrc/external/mit/libX11/dist/src/
H A DRegion.c1538 register BoxPtr prect = &rect;
1541 prect->x1 = rx;
1542 prect->y1 = ry;
1543 prect->x2 = rwidth + rx;
1544 prect->y2 = rheight + ry;
1547 if ((region->numRects == 0) || !EXTENTCHECK(&region->extents, prect))
1553 /* can stop when both partOut and partIn are TRUE, or we reach prect->y2 */
1565 if (partIn || (pbox->y1 >= prect->y2))
1567 ry = pbox->y1; /* x guaranteed to be == prect->x1 */
1580 if (pbox->x1 < prect
1535 register BoxPtr prect = &rect; local in function:XRectInRegion
[all...]
/xsrc/external/mit/xorg-server.old/dist/dix/
H A Dregion.c1353 RegionFromRects(int nrects, xRectangle *prect, int ctype) argument
1370 x1 = prect->x;
1371 y1 = prect->y;
1372 if ((x2 = x1 + (int) prect->width) > MAXSHORT)
1374 if ((y2 = y1 + (int) prect->height) > MAXSHORT)
1394 for (i = nrects; --i >= 0; prect++)
1396 x1 = prect->x;
1397 y1 = prect->y;
1398 if ((x2 = x1 + (int) prect->width) > MAXSHORT)
1400 if ((y2 = y1 + (int) prect
[all...]
/xsrc/external/mit/xorg-server/dist/dix/
H A Dregion.c1316 RegionFromRects(int nrects, xRectangle *prect, int ctype) argument
1332 x1 = prect->x;
1333 y1 = prect->y;
1334 if ((x2 = x1 + (int) prect->width) > MAXSHORT)
1336 if ((y2 = y1 + (int) prect->height) > MAXSHORT)
1354 for (i = nrects; --i >= 0; prect++) {
1355 x1 = prect->x;
1356 y1 = prect->y;
1357 if ((x2 = x1 + (int) prect->width) > MAXSHORT)
1359 if ((y2 = y1 + (int) prect
[all...]
/xsrc/external/mit/xorg-server.old/dist/hw/sun/
H A DsunGX.c637 xRectangle *prect; local in function:sunGXPolyFillRect
649 prect = prectInit;
654 prect = prectInit;
658 prect->x += xorg;
659 prect->y += yorg;
660 prect++;
664 prect = prectInit;
689 if ((pboxClipped->x1 = prect->x) < x1)
692 if ((pboxClipped->y1 = prect->y) < y1)
695 bx2 = (int) prect
1444 sunGXPolyFillRect1Rect(DrawablePtr pDrawable,GCPtr pGC,int nrect,xRectangle * prect) argument
[all...]
/xsrc/external/mit/xorg-server/dist/hw/sun/
H A DsunGX.c637 xRectangle *prect; local in function:sunGXPolyFillRect
649 prect = prectInit;
654 prect = prectInit;
658 prect->x += xorg;
659 prect->y += yorg;
660 prect++;
664 prect = prectInit;
689 if ((pboxClipped->x1 = prect->x) < x1)
692 if ((pboxClipped->y1 = prect->y) < y1)
695 bx2 = (int) prect
1444 sunGXPolyFillRect1Rect(DrawablePtr pDrawable,GCPtr pGC,int nrect,xRectangle * prect) argument
[all...]
/xsrc/external/mit/xorg-server/dist/include/
H A Dregionstr.h251 xRectanglePtr /*prect */ ,
300 RegionContainsRect(RegionPtr region, BoxPtr prect) argument
302 return pixman_region_contains_rectangle(region, prect);
/xsrc/external/mit/xorg-server.old/dist/include/
H A Dregionstr.h230 xRectanglePtr /*prect*/,
280 RegionContainsRect(RegionPtr region, BoxPtr prect) argument
282 return pixman_region_contains_rectangle (region, prect);

Completed in 30 milliseconds

12