| /src/tests/usr.bin/xlint/lint1/ |
| d_c99_anon_struct.c | 13 struct rect { struct 25 struct rect r;
|
| /src/sys/external/bsd/drm2/dist/include/drm/ |
| drm_damage_helper.h | 42 * @rect: Return a rectangle in fb coordinate clipped to plane src. 48 #define drm_atomic_for_each_plane_damage(iter, rect) \ 49 while (drm_atomic_helper_damage_iter_next(iter, rect)) 82 struct drm_rect *rect); 85 struct drm_rect *rect);
|
| drm_fb_helper.h | 259 const struct fb_fillrect *rect); 266 const struct fb_fillrect *rect); 399 const struct fb_fillrect *rect) 414 const struct fb_fillrect *rect)
|
| /src/sys/arch/hpc/stand/hpcboot/menu/ |
| rootwindow.h | 77 BootButton(HpcBootApp &app, RootWindow &root, RECT &rect) 79 _rect = rect; 90 CancelButton(HpcBootApp &app, RootWindow &root, RECT &rect) 92 _rect = rect; 103 ProgressBar(HpcBootApp &app, RootWindow &root, RECT &rect) 105 _rect = rect;
|
| tabwindow.h | 39 RECT _rect; 47 RECT &rect, int id) 49 _rect = rect; 68 void adjust(RECT &rect) { 69 TabCtrl_AdjustRect(_window, FALSE, &rect); 77 RECT _rect;
|
| rootwindow.cpp | 234 RECT rect; local 235 GetClientRect(w, &rect); 236 rect.top += cmdbar_height; 239 _boot_button = new BootButton(_app, *this, rect); 242 _cancel_button = new CancelButton(_app, *this, rect); 245 _progress_bar = new ProgressBar(_app, *this, rect); 251 rect.top += _button_height; 253 _base = new TabWindowBase(_app, w, rect, IDC_BASE);
|
| /src/sys/external/bsd/drm2/dist/drm/ |
| drm_damage_helper.c | 310 * @rect: Return a rectangle in fb coordinate clipped to plane src. 325 struct drm_rect *rect) 330 *rect = iter->plane_src; 336 *rect = iter->clips[iter->curr_clip]; 339 if (drm_rect_intersect(rect, &iter->plane_src)) { 353 * @rect: Returns the merged damage rectangle 356 * returns it in @rect. 366 struct drm_rect *rect) 372 rect->x1 = INT_MAX; 373 rect->y1 = INT_MAX [all...] |
| /src/sys/external/bsd/drm2/dist/drm/virtio/ |
| virtgpu_plane.c | 113 struct drm_rect *rect) 118 uint32_t w = rect->x2 - rect->x1; 119 uint32_t h = rect->y2 - rect->y1; 120 uint32_t x = rect->x1; 121 uint32_t y = rect->y1; 141 struct drm_rect rect; local 159 if (!drm_atomic_helper_damage_merged(old_state, plane->state, &rect)) 166 virtio_gpu_update_dumb_bo(vgdev, plane->state, &rect); [all...] |
| /src/sys/external/bsd/drm2/dist/drm/nouveau/ |
| nouveau_fbcon.h | 55 int nv04_fbcon_fillrect(struct fb_info *info, const struct fb_fillrect *rect); 59 int nv50_fbcon_fillrect(struct fb_info *info, const struct fb_fillrect *rect); 64 int nvc0_fbcon_fillrect(struct fb_info *info, const struct fb_fillrect *rect);
|
| nouveau_nv50_fbcon.c | 36 nv50_fbcon_fillrect(struct fb_info *info, const struct fb_fillrect *rect) 43 ret = RING_SPACE(chan, rect->rop == ROP_COPY ? 7 : 11); 47 if (rect->rop != ROP_COPY) { 54 OUT_RING(chan, ((uint32_t *)info->pseudo_palette)[rect->color]); 56 OUT_RING(chan, rect->color); 58 OUT_RING(chan, rect->dx); 59 OUT_RING(chan, rect->dy); 60 OUT_RING(chan, rect->dx + rect->width); 61 OUT_RING(chan, rect->dy + rect->height) [all...] |
| nouveau_nvc0_fbcon.c | 36 nvc0_fbcon_fillrect(struct fb_info *info, const struct fb_fillrect *rect) 43 ret = RING_SPACE(chan, rect->rop == ROP_COPY ? 7 : 11); 47 if (rect->rop != ROP_COPY) { 54 OUT_RING (chan, ((uint32_t *)info->pseudo_palette)[rect->color]); 56 OUT_RING (chan, rect->color); 58 OUT_RING (chan, rect->dx); 59 OUT_RING (chan, rect->dy); 60 OUT_RING (chan, rect->dx + rect->width); 61 OUT_RING (chan, rect->dy + rect->height) [all...] |
| nouveau_nv04_fbcon.c | 55 nv04_fbcon_fillrect(struct fb_info *info, const struct fb_fillrect *rect) 67 OUT_RING(chan, (rect->rop != ROP_COPY) ? 1 : 3); 71 OUT_RING(chan, ((uint32_t *)info->pseudo_palette)[rect->color]); 73 OUT_RING(chan, rect->color); 75 OUT_RING(chan, (rect->dx << 16) | rect->dy); 76 OUT_RING(chan, (rect->width << 16) | rect->height);
|
| nouveau_fbcon.c | 79 nouveau_fbcon_fillrect(struct fb_info *info, const struct fb_fillrect *rect) 93 ret = nv04_fbcon_fillrect(info, rect); 96 ret = nv50_fbcon_fillrect(info, rect); 98 ret = nvc0_fbcon_fillrect(info, rect); 107 drm_fb_helper_cfb_fillrect(info, rect); 324 struct fb_fillrect rect; 330 rect.dx = rect.dy = 0; 331 rect.width = info->var.xres_virtual; 332 rect.height = info->var.yres_virtual [all...] |
| /src/sys/arch/hpcmips/stand/pbsdboot/ |
| layout.c | 51 RECT rect; local 66 GetClientRect(hWnd, &rect); 67 rect.top += cmdbar_height; /* get client rect w/o command bar */ 68 ratio_x = (rect.right - rect.left) * 100 / dlg.cx; 69 ratio_y = (rect.bottom - rect.top) * 100 / dlg.cy;
|
| /src/sys/external/bsd/drm2/dist/drm/vmwgfx/ |
| vmwgfx_blit.c | 266 struct drm_rect *rect = &diff->rect; local 268 rect->x1 = min_t(int, rect->x1, offs); 269 rect->x2 = max_t(int, rect->x2, offs + 1); 270 rect->y1 = min_t(int, rect->y1, diff->line); 271 rect->y2 = max_t(int, rect->y2, diff->line + 1) [all...] |
| vmwgfx_stdu.c | 272 update->body.rect.x = left; 273 update->body.rect.y = top; 274 update->body.rect.w = right - left; 275 update->body.rect.h = bottom - top; 618 drm_rect_visible(&diff.rect)) { 625 region.x1 = diff.rect.x1; 626 region.x2 = diff.rect.x2; 627 region.y1 = diff.rect.y1; 628 region.y2 = diff.rect.y2; 1328 if (drm_rect_visible(&diff.rect)) { [all...] |
| vmwgfx_scrn.c | 626 SVGASignedRect *rect = cmd; local 629 * rects are relative to dest bounding box rect on screen object, so 632 rect->left = clip->x1; 633 rect->top = clip->y1; 634 rect->right = clip->x2; 635 rect->bottom = clip->y2; 637 return sizeof(*rect); 647 SVGASignedRect *rect; local 656 rect = (SVGASignedRect *)&blit[1]; 679 /* rects are relative to dest bb rect */ [all...] |
| /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/hw/ |
| transform.h | 176 struct rect viewport; 177 struct rect viewport_c; 178 struct rect recout;
|
| hubp.h | 106 const struct rect *viewport, 107 const struct rect *viewport_c);
|
| mem_input.h | 105 const struct rect *viewport, 106 const struct rect *viewport_c);
|
| /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/ |
| dc_stream.h | 142 struct rect src; /* composition area */ 143 struct rect dst; /* stream addressable area */ 233 struct rect src; 234 struct rect dst;
|
| dc_hw_types.h | 113 struct rect { struct 127 struct rect surface_size; 128 struct rect chroma_size; 395 struct rect viewport;
|
| dc.h | 743 struct rect src_rect; 744 struct rect dst_rect; 745 struct rect clip_rect; 812 struct rect src_rect; 813 struct rect dst_rect; 814 struct rect clip_rect;
|
| /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce110/ |
| amdgpu_dce110_transform_v.c | 56 struct rect *luma_viewport, 57 struct rect *chroma_viewport) 86 struct rect *luma_view_port, 87 struct rect *chroma_view_port) 379 struct rect *luma_viewport, 380 struct rect *chroma_viewport) 537 struct rect luma_viewport = {0}; 538 struct rect chroma_viewport = {0};
|
| /src/sys/external/bsd/drm2/dist/drm/qxl/ |
| qxl_draw.c | 80 const struct qxl_rect *rect, 111 if (rect) 112 drawable->bbox = *rect; 168 /* skip the first clip rect */
|