| /xsrc/external/mit/pixman/dist/pixman/ |
| pixman-inlines.h | 96 int distx, int disty) 101 distx <<= (4 - BILINEAR_INTERPOLATION_BITS); 104 distxy = distx * disty; 105 distxiy = (distx << 4) - distxy; /* distx * (16 - disty) */ 106 distixy = (disty << 4) - distxy; /* disty * (16 - distx) */ 109 (distx << 4) + distxy; /* (16 - distx) * (16 - disty) */ 132 int distx, int disty) 138 distx <<= (8 - BILINEAR_INTERPOLATION_BITS) [all...] |
| pixman-bits-image.c | 108 int32_t distx, disty; local 114 distx = pixman_fixed_to_bilinear_weight (x1); 142 *ret = bilinear_interpolation (tl, tr, bl, br, distx, disty); 157 float distx, disty; local 163 distx = ((float)pixman_fixed_fraction(x1)) / 65536.f; 191 *ret = bilinear_interpolation_float (tl, tr, bl, br, distx, disty);
|
| pixman-fast-path.c | 2628 int32_t distx; local 2633 distx = pixman_fixed_to_bilinear_weight (x); 2635 *buffer++ = bilinear_interpolation (0, tr, 0, br, distx, disty); 2651 int32_t distx; local 2658 distx = pixman_fixed_to_bilinear_weight (x); 2660 *buffer = bilinear_interpolation (tl, tr, bl, br, distx, disty); 2677 int32_t distx; local 2682 distx = pixman_fixed_to_bilinear_weight (x); 2684 *buffer = bilinear_interpolation (tl, 0, bl, 0, distx, disty); 2885 int32_t distx, disty local [all...] |
| /xsrc/external/mit/xf86-video-intel/dist/src/sna/ |
| blt.c | 1568 int distx, int disty) 1573 distx <<= (4 - BILINEAR_INTERPOLATION_BITS); 1576 distxy = distx * disty; 1577 distxiy = (distx << 4) - distxy; /* distx * (16 - disty) */ 1578 distixy = (disty << 4) - distxy; /* disty * (16 - distx) */ 1581 (distx << 4) + distxy; /* (16 - distx) * (16 - disty) */ 1601 int distx, int disty) 1607 distx <<= (8 - BILINEAR_INTERPOLATION_BITS) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/ |
| r300_emit.c | 521 unsigned reg, i, distx, disty, dist; local 534 distx = 11; 536 if (p[i] < distx) 537 distx = p[i]; 546 if (distx == 8) 547 distx = 7; 549 reg = R300_NIBBLES(p[0], p[1], p[2], p[3], p[4], p[5], disty, distx);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/ |
| r300_emit.c | 521 unsigned reg, i, distx, disty, dist; local 534 distx = 11; 536 if (p[i] < distx) 537 distx = p[i]; 546 if (distx == 8) 547 distx = 7; 549 reg = R300_NIBBLES(p[0], p[1], p[2], p[3], p[4], p[5], disty, distx);
|