/external/pixman/test/ |
blitters-test.c | 42 stride = (width * PIXMAN_FORMAT_BPP (fmt) + 7) / 8 + 64 pixman_image_set_indexed (img, &(rgb_palette[PIXMAN_FORMAT_BPP (fmt)])); 68 pixman_image_set_indexed (img, &(y_palette[PIXMAN_FORMAT_BPP (fmt)])); 366 if (j == (dst_width * PIXMAN_FORMAT_BPP (dst_fmt) + 7) / 8)
|
check-formats.c | 60 s <<= 32 - PIXMAN_FORMAT_BPP (src_format); 61 d <<= 32 - PIXMAN_FORMAT_BPP (dest_format); 68 d >>= (32 - PIXMAN_FORMAT_BPP (dest_format));
|
stress-test.c | 259 initialize_palette (indexed, PIXMAN_FORMAT_BPP (format), TRUE); 265 initialize_palette (indexed, PIXMAN_FORMAT_BPP (format), FALSE); 294 stride = width * PIXMAN_FORMAT_BPP (format) + prng_rand_n (17); 305 stride = width * PIXMAN_FORMAT_BPP (format) + prng_rand_n (17); 314 stride = width * PIXMAN_FORMAT_BPP (format) + prng_rand_n (17); 330 stride = width * PIXMAN_FORMAT_BPP (format) + prng_rand_n (17); 341 stride = (width * PIXMAN_FORMAT_BPP (format) + prng_rand_n (17));
|
composite-traps-test.c | 96 int src_bpp = (PIXMAN_FORMAT_BPP (src_format) + 7) / 8; 148 dst_bpp = (PIXMAN_FORMAT_BPP (dst_format) + 7) / 8;
|
pixel-test.c | 104 int bytes_per_pixel = PIXMAN_FORMAT_BPP (pixman_image_get_format (image)) / 8; 144 bytes_per_pixel = PIXMAN_FORMAT_BPP (image->bits.format) / 8;
|
utils.c | 154 if (PIXMAN_FORMAT_BPP (fmt) - PIXMAN_FORMAT_DEPTH (fmt) && 162 m <<= (PIXMAN_FORMAT_BPP (fmt) - PIXMAN_FORMAT_DEPTH (fmt)); 173 if (PIXMAN_FORMAT_BPP (fmt) == 32) 176 m = (1 << PIXMAN_FORMAT_BPP (fmt)) - 1; 194 uint32_t m = ((uint32_t)~0) >> (32 - PIXMAN_FORMAT_BPP (fmt)); 209 for (i = 0; i * PIXMAN_FORMAT_BPP (fmt) < 32; i++) 210 mask |= mask << (i * PIXMAN_FORMAT_BPP (fmt)); 249 int bpp = PIXMAN_FORMAT_BPP (pixman_image_get_format (img)); [all...] |
glyph-test.c | 141 bpp = PIXMAN_FORMAT_BPP (format);
|
alphamap.c | 41 uint8_t bpp = PIXMAN_FORMAT_BPP (format) / 8;
|
composite.c | 192 value >>= 8 * sizeof(value) - PIXMAN_FORMAT_BPP (format);
|
lowlevel-blt-bench.c | 492 ((PIXMAN_FORMAT_BPP(src_fmt) + PIXMAN_FORMAT_BPP(dst_fmt)) / 8); [all...] |
/external/pixman/pixman/ |
pixman-edge.c | 348 switch (PIXMAN_FORMAT_BPP (image->bits.format))
|
pixman-trap.c | 250 bpp = PIXMAN_FORMAT_BPP (image->bits.format); 366 bpp = PIXMAN_FORMAT_BPP (image->bits.format);
|
pixman-access.c | 230 *b = PIXMAN_FORMAT_BPP (format) - PIXMAN_FORMAT_B (format); 238 *r = PIXMAN_FORMAT_BPP (format) - PIXMAN_FORMAT_R (format); 342 switch (PIXMAN_FORMAT_BPP (format)) 386 switch (PIXMAN_FORMAT_BPP (format)) [all...] |
pixman-mips-dspr2.h | 67 int bpp = PIXMAN_FORMAT_BPP (dest_image->bits.format) / 8; \
|
pixman-fast-path.c | 1153 PIXMAN_FORMAT_BPP (dest_image->bits.format), 1164 int bpp = PIXMAN_FORMAT_BPP (dest_image->bits.format) / 8; 1250 src_bpp = PIXMAN_FORMAT_BPP (src_image->bits.format); [all...] |
pixman-bits-image.c | 951 /* Note: PIXMAN_FORMAT_BPP() returns an unsigned value, 959 bpp = PIXMAN_FORMAT_BPP (format); [all...] |
pixman-mmx.c | [all...] |
pixman.c | 932 pixman_fill (dest->bits.bits, dest->bits.rowstride, PIXMAN_FORMAT_BPP (dest->bits.format), [all...] |
pixman.h | 657 #define PIXMAN_FORMAT_BPP(f) (((f) >> 24) ) [all...] |
pixman-sse2.c | [all...] |