Home | History | Annotate | Download | only in common

Lines Matching defs:Dst

2000    Takes the dst box in standard X BoxRec form (top and left
2001 edges inclusive, bottom and right exclusive). The new dst
2009 BoxPtr dst,
2024 xdw = dst->x2 - dst->x1;
2026 ydw = dst->y2 - dst->y1;
2031 diff = extents->x1 - dst->x1;
2033 dst->x1 = extents->x1;
2036 diff = dst->x2 - extents->x2;
2038 dst->x2 = extents->x2;
2041 diff = extents->y1 - dst->y1;
2043 dst->y1 = extents->y1;
2046 diff = dst->y2 - extents->y2;
2048 dst->y2 = extents->y2;
2054 dst->x1 += diff;
2060 dst->x2 -= diff;
2067 dst->y1 += diff;
2073 dst->y2 -= diff;
2078 if ((dst->x1 > extents->x1) || (dst->x2 < extents->x2) ||
2079 (dst->y1 > extents->y1) || (dst->y2 < extents->y2))
2082 RegionInit(&clipReg, dst, 1);
2094 void *dst,
2101 CARD32 *Dst;
2108 Dst = dst;
2113 Dst[0] = Y[0] | (Y[1] << 16) | (U[0] << 8) | (V[0] << 24);
2114 Dst[1] = Y[2] | (Y[3] << 16) | (U[1] << 8) | (V[1] << 24);
2115 Dst[2] = Y[4] | (Y[5] << 16) | (U[2] << 8) | (V[2] << 24);
2116 Dst[3] = Y[6] | (Y[7] << 16) | (U[3] << 8) | (V[3] << 24);
2119 Dst[0] = (Y[0] << 24) | (Y[1] << 8) | (U[0] << 16) | V[0];
2120 Dst[1] = (Y[2] << 24) | (Y[3] << 8) | (U[1] << 16) | V[1];
2121 Dst[2] = (Y[4] << 24) | (Y[5] << 8) | (U[2] << 16) | V[2];
2122 Dst[3] = (Y[6] << 24) | (Y[7] << 8) | (U[3] << 16) | V[3];
2124 Dst += 4; Y += 8; V += 4; U += 4;
2130 Dst[0] = Y[0] | (Y[1] << 16) | (U[0] << 8) | (V[0] << 24);
2133 Dst[0] = (Y[0] << 24) | (Y[1] << 8) | (U[0] << 16) | V[0];
2135 Dst++; Y += 2; V++; U++;
2138 dst = (CARD8 *)dst + dstPitch;
2150 void *dst,
2157 CARD32 *Dst;
2163 Dst = dst; Src = src;
2166 Dst[0] = Src[0];
2167 Dst[1] = Src[1];
2168 Dst[2] = Src[2];
2169 Dst[3] = Src[3];
2170 Dst += 4; Src += 4; i -= 4;
2173 Dst[0] = Src[0];
2175 Dst[1] = Src[1];
2177 Dst[2] = Src[2];
2181 dst = (CARD8 *)dst + dstPitch;