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

1 2 3 4 5

  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/r200/
r200_sanity.h 6 drm_clip_rect_t *boxes );
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/
radeon_sanity.h 6 drm_clip_rect_t *boxes );
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/r200/
r200_sanity.h 6 drm_clip_rect_t *boxes );
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/
radeon_sanity.h 6 drm_clip_rect_t *boxes );
  /xsrc/external/mit/xorg-server/dist/glamor/
glamor_compositerects.c 55 pixman_box16_t stack_boxes[64], *boxes = stack_boxes; local
60 boxes = xallocarray(num_rects, sizeof(pixman_box16_t));
61 if (boxes == NULL)
66 boxes[j].x1 = rects[i].x + tx;
67 if (boxes[j].x1 < extents->x1)
68 boxes[j].x1 = extents->x1;
70 boxes[j].y1 = rects[i].y + ty;
71 if (boxes[j].y1 < extents->y1)
72 boxes[j].y1 = extents->y1;
74 boxes[j].x2 = bound(rects[i].x + tx, rects[i].width)
109 pixman_box16_t *boxes; local
    [all...]
glamor_transfer.c 52 BoxPtr boxes = in_boxes; local
60 int x1 = MAX(boxes->x1 + dx_dst, box->x1);
61 int x2 = MIN(boxes->x2 + dx_dst, box->x2);
62 int y1 = MAX(boxes->y1 + dy_dst, box->y1);
63 int y2 = MIN(boxes->y2 + dy_dst, box->y2);
68 boxes++;
151 BoxPtr boxes = in_boxes; local
161 int x1 = MAX(boxes->x1 + dx_src, box->x1);
162 int x2 = MIN(boxes->x2 + dx_src, box->x2);
163 int y1 = MAX(boxes->y1 + dy_src, box->y1)
    [all...]
  /xsrc/external/mit/xf86-video-vmware/dist/vmwgfx/
vmwgfx_layout.c 59 * @boxes: Array of GUI layout rects.
65 struct vmwgfx_layout_box boxes[]; member in struct:vmwgfx_layout
83 "%d: %d %d %d %d\n", i, l1->boxes[i].x,
84 l1->boxes[i].y, l1->boxes[i].width, l1->boxes[i].height);
106 return !memcmp(l1->boxes, l2->boxes,
138 size = offsetof(struct vmwgfx_layout, boxes) +
146 struct vmwgfx_layout_box *box = &layout->boxes[i]
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/xa/
xa_context.c 102 int to_surface, struct xa_box *boxes, unsigned int num_boxes)
113 for (i = 0; i < num_boxes; ++i, ++boxes) {
114 w = boxes->x2 - boxes->x1;
115 h = boxes->y2 - boxes->y1;
118 transfer_direction, boxes->x1, boxes->y1,
125 0, 0, w, h, data, pitch, boxes->x1, boxes->y1)
    [all...]
xa_context.h 79 int to_surface, struct xa_box *boxes,
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/xa/
xa_context.c 102 int to_surface, struct xa_box *boxes, unsigned int num_boxes)
113 for (i = 0; i < num_boxes; ++i, ++boxes) {
114 w = boxes->x2 - boxes->x1;
115 h = boxes->y2 - boxes->y1;
118 transfer_direction, boxes->x1, boxes->y1,
125 0, 0, w, h, data, pitch, boxes->x1, boxes->y1)
    [all...]
xa_context.h 79 int to_surface, struct xa_box *boxes,
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/
sna_composite.c 763 tmp.boxes(sna, &tmp,
795 pixman_box16_t stack_boxes[64], *boxes = stack_boxes, *b; local
878 boxes = malloc(sizeof(pixman_box16_t) * num_rects);
879 if (boxes == NULL)
884 boxes[num_boxes].x1 = rects[i].x + dst->pDrawable->x;
885 if (boxes[num_boxes].x1 < dst->pCompositeClip->extents.x1)
886 boxes[num_boxes].x1 = dst->pCompositeClip->extents.x1;
888 boxes[num_boxes].y1 = rects[i].y + dst->pDrawable->y;
889 if (boxes[num_boxes].y1 < dst->pCompositeClip->extents.y1)
890 boxes[num_boxes].y1 = dst->pCompositeClip->extents.y1
    [all...]
sna_trapezoids_boxes.c 121 BoxRec stack_boxes[64], *boxes; local
135 boxes = stack_boxes;
137 boxes = malloc(sizeof(BoxRec)*ntrap);
138 if (boxes == NULL)
149 boxes[num_boxes].x1 = dx + pixman_fixed_to_int(traps[n].left.p1.x + pixman_fixed_1_minus_e/2);
150 boxes[num_boxes].y1 = dy + pixman_fixed_to_int(traps[n].top + pixman_fixed_1_minus_e/2);
151 boxes[num_boxes].x2 = dx + pixman_fixed_to_int(traps[n].right.p2.x + pixman_fixed_1_minus_e/2);
152 boxes[num_boxes].y2 = dy + pixman_fixed_to_int(traps[n].bottom + pixman_fixed_1_minus_e/2);
154 if (boxes[num_boxes].x1 >= boxes[num_boxes].x2
    [all...]
sna_damage.c 216 BoxPtr boxes, free_boxes = NULL; local
252 boxes = (BoxRec *)(iter+1);
255 boxes = malloc(sizeof(BoxRec)*nboxes);
256 if (boxes == NULL)
259 free_boxes = boxes;
262 if (boxes != damage->embedded_box.box) {
264 DBG((" copying embedded boxes\n"));
265 memcpy(boxes,
269 if (boxes != (BoxPtr)(iter+1)) {
270 DBG((" copying %d boxes from last\n", n))
1810 BoxPtr boxes; local
    [all...]
  /xsrc/external/mit/pixman/dist/test/
region-fractional-test.c 12 pixman_box64f_t boxes[] = { local
52 pixman_region64f_init_rects (&r1, boxes, 3);
region-test.c 12 pixman_box32_t boxes[] = { local
52 pixman_region32_init_rects (&r1, boxes, 3);
region-contains-test.c 126 pixman_box32_t *boxes; local
128 boxes = pixman_region32_rectangles (&region, &n_rects);
132 print_box (boxes++);
  /xsrc/external/mit/xf86-video-intel/dist/src/sna/
sna_composite.c 767 tmp.boxes(sna, &tmp,
799 pixman_box16_t stack_boxes[64], *boxes = stack_boxes, *b; local
891 boxes = malloc(sizeof(pixman_box16_t) * num_rects);
892 if (boxes == NULL)
897 boxes[num_boxes].x1 = rects[i].x + dst->pDrawable->x;
898 if (boxes[num_boxes].x1 < dst->pCompositeClip->extents.x1)
899 boxes[num_boxes].x1 = dst->pCompositeClip->extents.x1;
901 boxes[num_boxes].y1 = rects[i].y + dst->pDrawable->y;
902 if (boxes[num_boxes].y1 < dst->pCompositeClip->extents.y1)
903 boxes[num_boxes].y1 = dst->pCompositeClip->extents.y1
    [all...]
sna_trapezoids_boxes.c 121 BoxRec stack_boxes[64], *boxes; local
135 boxes = stack_boxes;
137 boxes = malloc(sizeof(BoxRec)*ntrap);
138 if (boxes == NULL)
149 boxes[num_boxes].x1 = dx + pixman_fixed_to_int(traps[n].left.p1.x + pixman_fixed_1_minus_e/2);
150 boxes[num_boxes].y1 = dy + pixman_fixed_to_int(traps[n].top + pixman_fixed_1_minus_e/2);
151 boxes[num_boxes].x2 = dx + pixman_fixed_to_int(traps[n].right.p2.x + pixman_fixed_1_minus_e/2);
152 boxes[num_boxes].y2 = dy + pixman_fixed_to_int(traps[n].bottom + pixman_fixed_1_minus_e/2);
154 if (boxes[num_boxes].x1 >= boxes[num_boxes].x2
    [all...]
sna_damage.c 216 BoxPtr boxes, free_boxes = NULL; local
252 boxes = (BoxRec *)(iter+1);
255 boxes = malloc(sizeof(BoxRec)*nboxes);
256 if (boxes == NULL)
259 free_boxes = boxes;
262 if (boxes != damage->embedded_box.box) {
264 DBG((" copying embedded boxes\n"));
265 memcpy(boxes,
269 if (boxes != (BoxPtr)(iter+1)) {
270 DBG((" copying %d boxes from last\n", n))
1810 BoxPtr boxes; local
    [all...]
  /xsrc/external/mit/xf86-video-qxl/dist/src/
qxl_surface.c 163 BoxPtr boxes; local
180 boxes = REGION_RECTS (region);
186 qxl_download_box (surface, boxes->x1, boxes->y1, boxes->x2, boxes->y2);
188 boxes++;
336 BoxPtr boxes; local
339 boxes = RegionRects(r);
343 upload_one_primary_region(qxl, pixmap, boxes);
355 BoxPtr boxes; local
    [all...]
  /xsrc/external/mit/pixman/dist/pixman/
pixman.c 876 pixman_box32_t *boxes; local
882 boxes = pixman_malloc_ab (sizeof (pixman_box32_t), n_rects);
883 if (boxes == NULL)
888 boxes = stack_boxes;
893 boxes[i].x1 = rects[i].x;
894 boxes[i].y1 = rects[i].y;
895 boxes[i].x2 = boxes[i].x1 + rects[i].width;
896 boxes[i].y2 = boxes[i].y1 + rects[i].height
    [all...]
  /xsrc/external/mit/xf86-video-intel/dist/src/legacy/i810/
i810_dri.h 83 drm_clip_rect_t boxes[I810_NR_SAREA_CLIPRECTS]; member in struct:__anon7026
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/legacy/i810/
i810_dri.h 83 drm_clip_rect_t boxes[I810_NR_SAREA_CLIPRECTS]; member in struct:__anon7895
  /xsrc/external/mit/xf86-video-intel-old/dist/src/
i810_dri.h 83 drm_clip_rect_t boxes[I810_NR_SAREA_CLIPRECTS]; member in struct:__anon8859

Completed in 19 milliseconds

1 2 3 4 5