Home | History | Annotate | Download | only in common

Lines Matching defs:Dst

1770    Takes the dst box in standard X BoxRec form (top and left
1771 edges inclusive, bottom and right exclusive). The new dst
1778 xf86XVClipVideoHelper(BoxPtr dst,
1790 xdw = dst->x2 - dst->x1;
1792 ydw = dst->y2 - dst->y1;
1799 diff = extents->x1 - dst->x1;
1801 dst->x1 = extents->x1;
1804 diff = dst->x2 - extents->x2;
1806 dst->x2 = extents->x2;
1809 diff = extents->y1 - dst->y1;
1811 dst->y1 = extents->y1;
1814 diff = dst->y2 - extents->y2;
1816 dst->y2 = extents->y2;
1822 dst->x1 += diff;
1828 dst->x2 -= diff;
1836 dst->y1 += diff;
1842 dst->y2 -= diff;
1848 if ((dst->x1 > extents->x1) || (dst->x2 < extents->x2) ||
1849 (dst->y1 > extents->y1) || (dst->y2 < extents->y2)) {
1852 RegionInit(&clipReg, dst, 1);
1863 void *dst,
1867 CARD32 *Dst;
1874 Dst = dst;
1881 Dst[0] = Y[0] | (Y[1] << 16) | (U[0] << 8) | (V[0] << 24);
1882 Dst[1] = Y[2] | (Y[3] << 16) | (U[1] << 8) | (V[1] << 24);
1883 Dst[2] = Y[4] | (Y[5] << 16) | (U[2] << 8) | (V[2] << 24);
1884 Dst[3] = Y[6] | (Y[7] << 16) | (U[3] << 8) | (V[3] << 24);
1887 Dst[0] = (Y[0] << 24) | (Y[1] << 8) | (U[0] << 16) | V[0];
1888 Dst[1] = (Y[2] << 24) | (Y[3] << 8) | (U[1] << 16) | V[1];
1889 Dst[2] = (Y[4] << 24) | (Y[5] << 8) | (U[2] << 16) | V[2];
1890 Dst[3] = (Y[6] << 24) | (Y[7] << 8) | (U[3] << 16) | V[3];
1892 Dst += 4;
1901 Dst[0] = Y[0] | (Y[1] << 16) | (U[0] << 8) | (V[0] << 24);
1904 Dst[0] = (Y[0] << 24) | (Y[1] << 8) | (U[0] << 16) | V[0];
1906 Dst++;
1912 dst = (CARD8 *) dst + dstPitch;
1923 void *dst, int srcPitch, int dstPitch, int h, int w)
1926 CARD32 *Dst;
1932 Dst = dst;
1936 Dst[0] = Src[0];
1937 Dst[1] = Src[1];
1938 Dst[2] = Src[2];
1939 Dst[3] = Src[3];
1940 Dst += 4;
1946 Dst[0] = Src[0];
1949 Dst[1] = Src[1];
1952 Dst[2] = Src[2];
1956 dst = (CARD8 *) dst + dstPitch;