Searched defs:n_boxes (Results 1 - 3 of 3) sorted by relevance

/external/pixman/test/
H A Dregion-contains-test.c8 int n_boxes; local
12 n_boxes = prng_rand_n (64);
13 while (n_boxes--)
37 int n_boxes; local
42 bb = pixman_region32_rectangles (region, &n_boxes);
43 if (n_boxes == 0)
45 b = bb + prng_rand_n (n_boxes);
51 n_boxes = 1;
/external/pixman/pixman/
H A Dpixman-utils.c223 int n_boxes, i; local
228 boxes32 = pixman_region32_rectangles (src, &n_boxes);
230 boxes16 = pixman_malloc_ab (n_boxes, sizeof (pixman_box16_t));
235 for (i = 0; i < n_boxes; ++i)
244 retval = pixman_region_init_rects (dst, boxes16, n_boxes);
253 int n_boxes, i; local
259 boxes16 = pixman_region_rectangles (src, &n_boxes);
261 if (n_boxes > N_TMP_BOXES)
262 boxes32 = pixman_malloc_ab (n_boxes, sizeof (pixman_box32_t));
269 for (i = 0; i < n_boxes;
[all...]
H A Dpixman.c880 int n_boxes,
917 if (!pixman_region32_init_rects (&fill_region, boxes, n_boxes))
946 for (i = 0; i < n_boxes; ++i)
877 pixman_image_fill_boxes(pixman_op_t op, pixman_image_t * dest, const pixman_color_t *color, int n_boxes, const pixman_box32_t *boxes) argument

Completed in 528 milliseconds