| /xsrc/external/mit/libXt/dist/src/ |
| RectObj.c | 56 * Rectangle Object Resources 66 XtOffsetOf(RectObjRec,rectangle.ancestor_sensitive),XtRCallProc, 69 XtOffsetOf(RectObjRec,rectangle.x), XtRImmediate, (XtPointer)0}, 71 XtOffsetOf(RectObjRec,rectangle.y), XtRImmediate, (XtPointer)0}, 73 XtOffsetOf(RectObjRec,rectangle.width), XtRImmediate, (XtPointer)0}, 75 XtOffsetOf(RectObjRec,rectangle.height), XtRImmediate, (XtPointer)0}, 77 XtOffsetOf(RectObjRec,rectangle.border_width), XtRImmediate, 80 XtOffsetOf(RectObjRec,rectangle.sensitive), XtRImmediate, 142 * Start of rectangle object methods
|
| Manage.c | 142 r->rectangle.x, r->rectangle.y, 143 (unsigned) (r->rectangle.width + 144 (r->rectangle.border_width << 1)), 145 (unsigned) (r->rectangle.height + 146 (r->rectangle.border_width << 1)), 316 r->rectangle.x, r->rectangle.y, 317 (unsigned) (r->rectangle.width + 318 (r->rectangle.border_width << 1)) [all...] |
| SetValues.c | 450 int bw2 = r->rectangle.border_width << 1; 456 r->rectangle.x, r->rectangle.y, 457 (unsigned) (r->rectangle.width + bw2), 458 (unsigned) (r->rectangle.height + bw2), TRUE);
|
| Geometry.c | 90 bw2 = r->rectangle.border_width << 1; 92 (int) r->rectangle.x, (int) r->rectangle.y, 93 (unsigned int) (r->rectangle.width + bw2), 94 (unsigned int) (r->rectangle.height + bw2), TRUE);
|
| /xsrc/external/mit/mesa-demos/dist/src/egl/openvg/trivial/ |
| color_transform.c | 61 rectangle(VGint x, VGint y, VGint width, VGint height) function 91 rectangle(0, 0, w, h); 100 rectangle(w, 0, w, h); 109 rectangle(0, h, w, h); 118 rectangle(w, h, w, h);
|
| blend.c | 60 rectangle(VGint x, VGint y, VGint width, VGint height) function 124 rectangle(x, y, width, height); 134 rectangle(x, y, width, height); 144 rectangle(x, y, width, height); 154 rectangle(x, y, width, height); 169 rectangle(x, y, width, height); 174 rectangle(x, y, width, height); 187 rectangle(x, y, width, height); 197 rectangle(x, y, width, height); 210 rectangle(x, y, width, height) [all...] |
| mask_render.c | 100 rectangle(VGint x, VGint y, VGint width, VGint height) function 115 rectangle(5, 5, window_width() - 10, window_height() - 10);
|
| /xsrc/external/mit/libXaw/dist/include/X11/Xaw/ |
| SmeLineP.h | 68 RectObjPart rectangle; member in struct:_SmeLineRec
|
| SmeP.h | 78 RectObjPart rectangle; member in struct:_SmeRec
|
| SmeBSBP.h | 87 RectObjPart rectangle; member in struct:_SmeBSBRec
|
| /xsrc/external/mit/libXaw/dist/src/ |
| Private.h | 47 #define XtX(w) (((RectObj)w)->rectangle.x) 50 #define XtY(w) (((RectObj)w)->rectangle.y) 53 #define XtWidth(w) (((RectObj)w)->rectangle.width) 56 #define XtHeight(w) (((RectObj)w)->rectangle.height) 59 #define XtBorderWidth(w) (((RectObj)w)->rectangle.border_width)
|
| Sme.c | 83 /* rectangle */ 178 entry->rectangle.border_width = 0;
|
| SmeBSB.c | 184 /* rectangle */ 274 GetDefaultSize(cnew, &entry->rectangle.width, &entry->rectangle.height); 444 if (entry->rectangle.sensitive != old_entry->rectangle.sensitive)
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/ |
| lp_rast.h | 166 * Rasterization information for a screen-aligned rectangle known to 176 /* Rectangle boundaries in integer pixels: 218 const struct lp_rast_rectangle *rectangle; member in union:lp_rast_cmd_arg 268 lp_rast_arg_rectangle( const struct lp_rast_rectangle *rectangle ) 271 arg.rectangle = rectangle;
|
| lp_rast_linear.c | 129 /* Run the scanline version of the shader on a rectangle within the 137 const struct lp_rast_rectangle *rect = arg.rectangle;
|
| lp_rast_rect.c | 145 * for this rectangle. 151 const struct lp_rast_rectangle *rect = arg.rectangle; 169 /* Intersect the rectangle with this tile. 173 /* The interior of the rectangle (if there is one) will be 176 * At each edge of the rectangle, however, there will be a fringe 200 /* Rectangle is contained within a single 4x4 stamp:
|
| lp_rast_debug.c | 68 "rectangle", 208 * for this rectangle. 216 const struct lp_rast_rectangle *rect = arg.rectangle;
|
| /xsrc/external/mit/libXt/dist/include/X11/ |
| RectObjP.h | 57 * Rectangle Object Instance Data Structures 63 Position x, y; /* rectangle position */ 64 Dimension width, height; /* rectangle dimensions */ 65 Dimension border_width; /* rectangle border width */ 73 RectObjPart rectangle; member in struct:_RectObjRec 79 * Rectangle Object Class Data Structures 109 XtExposeProc expose; /* rediplay rectangle */
|
| /xsrc/external/mit/bitmap/dist/ |
| Bitmap.c | 1587 XRectangle rectangle; local 1600 rectangle.x = InWindowX(BW, from_x); 1601 rectangle.y = InWindowY(BW, from_y); 1602 rectangle.width = InWindowX(BW, to_x + 1) - InWindowX(BW, from_x); 1603 rectangle.height = InWindowY(BW, to_y + 1) - InWindowY(BW, from_y); 1607 &rectangle, 1, local 1612 &rectangle, 1, local 1617 &rectangle, 1, local 1622 &rectangle, 1, local 1630 XRectangle rectangle; local 1639 &rectangle, 1, local 1644 &rectangle, 1, local 1649 &rectangle, 1, local 1654 &rectangle, 1, local 1662 XRectangle rectangle; local 1679 &rectangle, 1, local 1739 XRectangle rectangle; local 1751 &rectangle, 1, local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/vl/ |
| vl_winsys_dri3.c | 570 xcb_rectangle_t rectangle; local 580 rectangle.x = 0; 581 rectangle.y = 0; 582 rectangle.width = (scrn->output_texture) ? scrn->clip_width : scrn->width; 583 rectangle.height = (scrn->output_texture) ? scrn->clip_height : scrn->height; 589 xcb_xfixes_set_region(scrn->conn, back->region, 1, &rectangle);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/vl/ |
| vl_winsys_dri3.c | 566 xcb_rectangle_t rectangle; local 576 rectangle.x = 0; 577 rectangle.y = 0; 578 rectangle.width = (scrn->output_texture) ? scrn->clip_width : scrn->width; 579 rectangle.height = (scrn->output_texture) ? scrn->clip_height : scrn->height; 582 xcb_xfixes_create_region(scrn->conn, region, 2, &rectangle);
|
| /xsrc/external/mit/MesaLib/dist/src/egl/drivers/dri2/ |
| platform_x11.c | 468 xcb_rectangle_t rectangle; local 493 rectangle.x = 0; 494 rectangle.y = 0; 495 rectangle.width = dri2_surf->base.Width; 496 rectangle.height = dri2_surf->base.Height; 498 xcb_xfixes_create_region(dri2_dpy->conn, dri2_surf->region, 1, &rectangle);
|
| /xsrc/external/mit/xterm/dist/vttests/ |
| report-sgr.pl | 613 of the rectangle specified by this script. Use the spacebar to toggle the mark 614 which denotes one corner of the rectangle. The current cursor position is the
|
| /xsrc/external/mit/MesaLib.old/dist/src/egl/drivers/dri2/ |
| platform_x11.c | 475 xcb_rectangle_t rectangle; local 500 rectangle.x = 0; 501 rectangle.y = 0; 502 rectangle.width = dri2_surf->base.Width; 503 rectangle.height = dri2_surf->base.Height; 505 xcb_xfixes_create_region(dri2_dpy->conn, dri2_surf->region, 1, &rectangle);
|
| /xsrc/external/mit/xrandr/dist/ |
| keystone.5c | 53 rectangle (cr, 0, 0, 400, 300); 70 rectangle (cr, 0, 0, quad.geometry.width, quad.geometry.height); 193 * Ok, given an source quad and a dest rectangle, compute 194 * a transform that maps the rectangle to q. That's easier 195 * as the rectangle has some nice simple properties. Invert
|