Home | History | Annotate | Download | only in src

Lines Matching refs:pDst

30  * [out] pDst		Destination 4x4 block
34 void armVCM4P10_TransformResidual4x4(OMX_S16* pDst, OMX_S16 *pSrc)
53 pDst[i+0] = (OMX_S16)f0;
54 pDst[i+1] = (OMX_S16)f1;
55 pDst[i+2] = (OMX_S16)f2;
56 pDst[i+3] = (OMX_S16)f3;
62 int f0 = pDst[i+0];
63 int f1 = pDst[i+4];
64 int f2 = pDst[i+8];
65 int f3 = pDst[i+12];
74 pDst[i+0] = (OMX_S16)((h0+32)>>6);
75 pDst[i+4] = (OMX_S16)((h1+32)>>6);
76 pDst[i+8] = (OMX_S16)((h2+32)>>6);
77 pDst[i+12] = (OMX_S16)((h3+32)>>6);