HomeSort by: relevance | last modified time | path
    Searched refs:prect (Results 1 - 25 of 48) sorted by relevancy

1 2

  /xsrc/external/mit/xorg-server/dist/mi/
mifillrct.c 76 xRectangle *prect; local
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 = prectInit
    [all...]
miexpose.c 406 xRectangle *prect; local
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 -= numRects
    [all...]
mibitblt.c 83 BoxRec srcBox, *prect; local
205 prect = &boxes[ordering[i]];
206 xMin = max(prect->x1, srcBox.x1);
207 xMax = min(prect->x2, srcBox.x2);
208 yMin = max(prect->y1, srcBox.y1);
209 yMax = min(prect->y2, srcBox.y2);
  /xsrc/external/mit/xorg-server.old/dist/mi/
mifillrct.c 80 xRectangle *prect; local
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 = prectInit
    [all...]
miexpose.c 535 xRectangle *prect; local
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 -= numRects
    [all...]
  /xsrc/external/mit/xorg-server/dist/glamor/
glamor_rects.c 46 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->width; v[5] = prect->y + prect->height
    [all...]
glamor_render.c 1477 glamor_composite_rect_t *prect = rect; local
1617 prect = calloc(nbox, sizeof(*prect));
1618 if (prect)
1621 prect = rect;
1630 prect[i].x_src = box[i].x1 + x_temp_src - x_dest;
1631 prect[i].y_src = box[i].y1 + y_temp_src - y_dest;
1632 prect[i].x_mask = box[i].x1 + x_temp_mask - x_dest;
1633 prect[i].y_mask = box[i].y1 + y_temp_mask - y_dest;
1634 prect[i].x_dst = box[i].x1
    [all...]
  /xsrc/external/mit/xorg-server/dist/fb/
fbfillrect.c 30 fbPolyFillRect(DrawablePtr pDrawable, GCPtr pGC, int nrect, xRectangle *prect)
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/xorg-server.old/dist/fb/
fbfillrect.c 33 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++;
  /xsrc/external/mit/xf86-video-intel-old/dist/uxa/
uxa-accel.c 513 xRectangle *prect; local
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[i].width = 1
549 xRectangle *prect; local
612 xRectangle *prect; local
    [all...]
  /xsrc/external/mit/xorg-server/dist/exa/
exa_accel.c 619 xRectangle *prect; local
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[i].height = 1
654 xRectangle *prect; local
723 xRectangle *prect; local
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/exa/
exa_accel.c 619 xRectangle *prect; local
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[i].height = 1
654 xRectangle *prect; local
721 xRectangle *prect; local
    [all...]
  /xsrc/external/mit/xf86-video-intel/dist/src/uxa/
uxa-accel.c 508 xRectangle *prect; local
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[i].width = 1
544 xRectangle *prect; local
643 xRectangle *prect; local
    [all...]
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/uxa/
uxa-accel.c 508 xRectangle *prect; local
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[i].width = 1
544 xRectangle *prect; local
643 xRectangle *prect; local
    [all...]
  /xsrc/external/mit/xf86-video-sunffb/dist/src/
ffb_loops.h 46 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/
uxa-accel.c 652 xRectangle *prect; local
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[i].width = 1
688 xRectangle *prect; local
750 xRectangle *prect; local
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/xaa/
xaaFillRect.c 100 xRectangle *prect = prectInit; local
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->y + (int)prect->height
1134 xRectangle *prect = prectInit; local
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/miext/cw/
cw.h 130 #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/
Region.c 1538 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->x2
1535 register BoxPtr prect = &rect; local
    [all...]
  /xsrc/external/mit/xorg-server/dist/dix/
region.c 1316 RegionFromRects(int nrects, xRectangle *prect, int ctype)
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->height) > MAXSHORT
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/dix/
region.c 1353 RegionFromRects(int nrects, xRectangle *prect, int ctype)
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->height) > MAXSHORT
    [all...]
  /xsrc/external/mit/xorg-server/dist/hw/sun/
sunGX.c 637 xRectangle *prect; local
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->x + (int) prect->width
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/hw/sun/
sunGX.c 637 xRectangle *prect; local
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->x + (int) prect->width
    [all...]
  /xsrc/external/mit/xorg-server/dist/include/
regionstr.h 251 xRectanglePtr /*prect */ ,
300 RegionContainsRect(RegionPtr region, BoxPtr prect)
302 return pixman_region_contains_rectangle(region, prect);
  /xsrc/external/mit/xorg-server.old/dist/include/
regionstr.h 230 xRectanglePtr /*prect*/,
280 RegionContainsRect(RegionPtr region, BoxPtr prect)
282 return pixman_region_contains_rectangle (region, prect);

Completed in 31 milliseconds

1 2