OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rbox
(Results
1 - 2
of
2
) sorted by null
/external/pixman/test/
region-contains-test.c
110
pixman_box32_t
rbox
= { 0, 0, 0, 0 };
local
139
r1 = pixman_region32_contains_point (®ion, box.x1, box.y1, &
rbox
);
140
crc32 = crc32_box32 (crc32, &
rbox
);
141
r2 = pixman_region32_contains_point (®ion, box.x1, box.y2, &
rbox
);
142
crc32 = crc32_box32 (crc32, &
rbox
);
143
r3 = pixman_region32_contains_point (®ion, box.x2, box.y1, &
rbox
);
144
crc32 = crc32_box32 (crc32, &
rbox
);
145
r4 = pixman_region32_contains_point (®ion, box.x2, box.y2, &
rbox
);
146
crc32 = crc32_box32 (crc32, &
rbox
);
/external/pixman/pixman/
pixman.c
167
pixman_box32_t *
rbox
= pixman_region32_rectangles (region, NULL);
local
171
if (
rbox
->x1 < (v = cbox->x1 + dx))
172
rbox
->x1 = v;
173
if (
rbox
->x2 > (v = cbox->x2 + dx))
174
rbox
->x2 = v;
175
if (
rbox
->y1 < (v = cbox->y1 + dy))
176
rbox
->y1 = v;
177
if (
rbox
->y2 > (v = cbox->y2 + dy))
178
rbox
->y2 = v;
179
if (
rbox
->x1 >= rbox->x2 || rbox->y1 >= rbox->y2
[
all
...]
Completed in 43 milliseconds