HomeSort by relevance Sort by last modified time
    Searched defs:n_boxes (Results 1 - 2 of 2) sorted by null

  /external/pixman/test/
region-contains-test.c 8 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/
pixman-utils.c 223 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; ++i
    [all...]

Completed in 147 milliseconds