| /xsrc/external/mit/xorg-server/dist/glamor/ |
| glamor_trapezoid.c | 83 BoxRec bounds; local 105 miTrapezoidBounds(ntrap, traps, &bounds); 107 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2) 113 width = bounds.x2 - bounds.x1; 114 height = bounds.y2 - bounds.y1 [all...] |
| glamor_rects.c | 58 BoxRec bounds = glamor_no_rendering_bounds(); local 67 bounds = glamor_start_rendering_bounds(); 69 glamor_bounds_union_rect(&bounds, &prect[i]); 139 .x1 = max(box->x1, bounds.x1 + drawable->x), 140 .y1 = max(box->y1, bounds.y1 + drawable->y), 141 .x2 = min(box->x2, bounds.x2 + drawable->x), 142 .y2 = min(box->y2, bounds.y2 + drawable->y),
|
| glamor_copy.c | 374 BoxRec bounds = glamor_no_rendering_bounds(); local 428 bounds = glamor_start_rendering_bounds(); 430 glamor_bounds_union_box(&bounds, &box[i]); 461 .x1 = max(-args.dx, bounds.x1), 462 .y1 = max(-args.dy, bounds.y1), 463 .x2 = min(-args.dx + src_box->x2 - src_box->x1, bounds.x2), 464 .y2 = min(-args.dy + src_box->y2 - src_box->y1, bounds.y2), 516 BoxRec bounds; local 537 bounds = box[0]; 539 bounds.x1 = min(bounds.x1, box[n].x1) 638 BoxRec bounds; local [all...] |
| glamor_utils.h | 680 BoxRec bounds = { local 687 return bounds; 693 BoxRec bounds = { local 700 return bounds; 704 glamor_bounds_union_rect(BoxPtr bounds, xRectangle *rect) 706 bounds->x1 = min(bounds->x1, rect->x); 707 bounds->y1 = min(bounds->y1, rect->y); 708 bounds->x2 = min(SHRT_MAX, max(bounds->x2, rect->x + rect->width)) [all...] |
| /xsrc/external/mit/xorg-server.old/dist/hw/xwin/xlaunch/window/ |
| window.h | 69 CBoundary bounds; member in class:CWindow 94 int GetWidth() { return bounds.width; }; 95 int GetHeight() { return bounds.height; }; 96 int GetLeft() { return bounds.left; }; 97 int GetTop() { return bounds.top; };
|
| /xsrc/external/mit/xorg-server.old/dist/render/ |
| mitrap.c | 154 BoxRec bounds; local 161 miTrapezoidBounds (ntrap, traps, &bounds); 162 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2) 165 bounds.x2 - bounds.x1, 166 bounds.y2 - bounds.y1) [all...] |
| mitri.c | 37 miPointFixedBounds (int npoint, xPointFixed *points, BoxPtr bounds) 39 bounds->x1 = xFixedToInt (points->x); 40 bounds->x2 = xFixedToInt (xFixedCeil (points->x)); 41 bounds->y1 = xFixedToInt (points->y); 42 bounds->y2 = xFixedToInt (xFixedCeil (points->y)); 52 if (x1 < bounds->x1) 53 bounds->x1 = x1; 54 else if (x2 > bounds->x2) 55 bounds->x2 = x2; 56 if (y1 < bounds->y1 92 BoxRec bounds; local [all...] |
| /xsrc/external/mit/libXfixes/dist/src/ |
| Region.c | 306 XRectangle bounds; local 308 return XFixesFetchRegionAndBounds (dpy, region, nrectanglesRet, &bounds); 315 XRectangle *bounds) 338 bounds->x = rep.x; 339 bounds->y = rep.y; 340 bounds->width = rep.width; 341 bounds->height = rep.height;
|
| /xsrc/external/mit/MesaGLUT/dist/src/glut/beos/ |
| glutEvent.cpp | 526 BRect bounds = w->Frame(); local 527 point.x += bounds.left; 528 point.y += bounds.top;
|
| /xsrc/external/mit/libX11/dist/src/xkb/ |
| XKBGeom.c | 50 _XkbCheckBounds(XkbBoundsPtr bounds, int x, int y) 52 if (x < bounds->x1) 53 bounds->x1 = x; 54 if (x > bounds->x2) 55 bounds->x2 = x; 56 if (y < bounds->y1) 57 bounds->y1 = y; 58 if (y > bounds->y2) 59 bounds->y2 = y; 72 shape->bounds.x1 = shape->bounds.y1 = MAXSHORT 118 XkbBoundsPtr bounds, sbounds; local 156 XkbBoundsPtr bounds, rbounds; local [all...] |
| /xsrc/external/mit/xf86-video-vmware/dist/saa/ |
| saa_render.c | 104 BoxRec bounds; local 112 miTrapezoidBounds(ntrap, traps, &bounds); 114 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2) 121 bounds.x2 - bounds.x1, 122 bounds.y2 - bounds.y1) 166 BoxRec bounds; local [all...] |
| /xsrc/external/mit/xorg-server/dist/hw/xquartz/ |
| quartz.c | 244 BoxRec bounds; local 283 bounds.x1 = 0; 284 bounds.x2 = width; 285 bounds.y1 = 0; 286 bounds.y2 = height; 287 pScreen->ConstrainCursor(inputInfo.pointer, pScreen, &bounds); 288 inputInfo.pointer->spriteInfo->sprite->physLimits = bounds; 289 inputInfo.pointer->spriteInfo->sprite->hotLimits = bounds;
|
| /xsrc/external/mit/xorg-server.old/dist/hw/xquartz/ |
| quartz.c | 205 BoxRec bounds; local 245 bounds.x1 = 0; 246 bounds.x2 = width; 247 bounds.y1 = 0; 248 bounds.y2 = height; 249 pScreen->ConstrainCursor(inputInfo.pointer, pScreen, &bounds); 250 inputInfo.pointer->spriteInfo->sprite->physLimits = bounds; 251 inputInfo.pointer->spriteInfo->sprite->hotLimits = bounds;
|
| /xsrc/external/mit/xf86-video-intel/dist/src/sna/ |
| sna_trapezoids.c | 219 BoxRec bounds; member in struct:rasterize_traps_thread 230 width = thread->bounds.x2 - thread->bounds.x1; 231 height = thread->bounds.y2 - thread->bounds.y1; 250 -thread->bounds.x1, -thread->bounds.y1); 285 BoxRec bounds; local 293 if (!trapezoids_bounds(ntrap, traps, &bounds)) 296 DBG(("%s: bounds (%d, %d), (%d, %d)\n", __FUNCTION__ 877 BoxRec bounds; local 994 BoxRec bounds; local 1130 BoxRec bounds; local [all...] |
| /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/ |
| sna_trapezoids.c | 219 BoxRec bounds; member in struct:rasterize_traps_thread 230 width = thread->bounds.x2 - thread->bounds.x1; 231 height = thread->bounds.y2 - thread->bounds.y1; 250 -thread->bounds.x1, -thread->bounds.y1); 285 BoxRec bounds; local 293 if (!trapezoids_bounds(ntrap, traps, &bounds)) 296 DBG(("%s: bounds (%d, %d), (%d, %d)\n", __FUNCTION__ 877 BoxRec bounds; local 994 BoxRec bounds; local 1130 BoxRec bounds; local [all...] |
| /xsrc/external/mit/xorg-server/dist/exa/ |
| exa_render.c | 565 * the bounds of the current rendering, so we need to force 1124 BoxRec bounds; local 1131 miTrapezoidBounds(ntrap, traps, &bounds); 1133 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2) 1140 bounds.x2 - bounds.x1, 1141 bounds.y2 - bounds.y1) 1188 BoxRec bounds; local [all...] |
| /xsrc/external/mit/xorg-server/dist/xfixes/ |
| region.c | 432 BoxRec bounds; local 440 /* Compute bounds, limit to 16 bits */ 441 bounds.x1 = stuff->x; 442 bounds.y1 = stuff->y; 444 bounds.x2 = MAXSHORT; 446 bounds.x2 = stuff->x + stuff->width; 449 bounds.y2 = MAXSHORT; 451 bounds.y2 = stuff->y + stuff->height; 453 if (!RegionInverse(pDestination, pSource, &bounds))
|
| /xsrc/external/mit/xorg-server.old/dist/exa/ |
| exa_render.c | 573 * the bounds of the current rendering, so we need to force 1152 BoxRec bounds; local 1159 miTrapezoidBounds (ntrap, traps, &bounds); 1161 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2) 1168 bounds.x2 - bounds.x1, 1169 bounds.y2 - bounds.y1) 1217 BoxRec bounds; local [all...] |
| /xsrc/external/mit/xorg-server.old/dist/xfixes/ |
| region.c | 450 BoxRec bounds; local 457 /* Compute bounds, limit to 16 bits */ 458 bounds.x1 = stuff->x; 459 bounds.y1 = stuff->y; 461 bounds.x2 = MAXSHORT; 463 bounds.x2 = stuff->x + stuff->width; 466 bounds.y2 = MAXSHORT; 468 bounds.y2 = stuff->y + stuff->height; 470 if (!RegionInverse(pDestination, pSource, &bounds))
|
| /xsrc/external/mit/xf86-video-intel/dist/src/uxa/ |
| uxa-render.c | 1593 BoxRec bounds; local 1602 miTrapezoidBounds (ntrap, traps, &bounds); 1603 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2) 1606 width = bounds.x2 - bounds.x1; 1607 height = bounds.y2 - bounds.y1 1685 BoxRec bounds; local 1805 BoxRec bounds; local 1896 BoxRec bounds; local [all...] |
| /xsrc/external/mit/xf86-video-intel-2014/dist/src/uxa/ |
| uxa-render.c | 1593 BoxRec bounds; local 1602 miTrapezoidBounds (ntrap, traps, &bounds); 1603 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2) 1606 width = bounds.x2 - bounds.x1; 1607 height = bounds.y2 - bounds.y1 1685 BoxRec bounds; local 1805 BoxRec bounds; local 1896 BoxRec bounds; local [all...] |
| /xsrc/external/mit/xf86-video-intel-old/dist/uxa/ |
| uxa-render.c | 1092 BoxRec bounds; local 1096 miTrapezoidBounds (ntrap, traps, &bounds); 1098 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2) 1135 width = bounds.x2 - bounds.x1; 1136 height = bounds.y2 - bounds.y1 1191 BoxRec bounds; local [all...] |
| /xsrc/external/mit/xorg-server/dist/miext/rootless/ |
| rootlessWindow.c | 101 xp_box bounds; local 110 if (xp_get_window_bounds(MAKE_WINDOW_ID(winRec->wid), &bounds) != Success) 116 /* Fake up a ConfigureWindow packet to resize the window to the current bounds. */ 117 vlist[0] = (INT16) bounds.x1 - sx; 118 vlist[1] = (INT16) bounds.y1 - sy; 949 intersection between old and new bounds, so copy
|
| /xsrc/external/mit/xorg-server.old/dist/miext/rootless/ |
| rootlessWindow.c | 96 xp_box bounds; local 105 if (xp_get_window_bounds (MAKE_WINDOW_ID(winRec->wid), &bounds) != Success) return; 110 /* Fake up a ConfigureWindow packet to resize the window to the current bounds. */ 111 vlist[0] = (INT16) bounds.x1 - sx; 112 vlist[1] = (INT16) bounds.y1 - sy; 934 intersection between old and new bounds, so copy
|
| /xsrc/external/mit/xf86-video-qxl/dist/src/uxa/ |
| uxa-render.c | 1762 BoxRec bounds; local 1767 miTrapezoidBounds(ntrap, traps, &bounds); 1769 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2) 1805 width = bounds.x2 - bounds.x1; 1806 height = bounds.y2 - bounds.y1 1885 BoxRec bounds; local [all...] |