Home | History | Annotate | Download | only in src

Lines Matching refs:pSrc

33  *   pSrc - Pointer to the 2x2 array of the 2x2 Hadamard-transformed and 
47 * - at least one of the following pointers is NULL: pSrc
48 * - pSrc or pDst is not aligned on an 8-byte boundary
52 const OMX_S16* pSrc,
62 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr)
63 armRetArgErrIf(armNot8ByteAligned(pSrc), OMX_Sts_BadArgErr);
69 m[0][0] = pSrc[0] + pSrc[1] + pSrc[2] + pSrc[3];
70 m[0][1] = pSrc[0] - pSrc[1] + pSrc[2] - pSrc[3];
71 m[1][0] = pSrc[0] + pSrc[1] - pSrc[2] - pSrc[3];
72 m[1][1] = pSrc[0] - pSrc[1] - pSrc[2] + pSrc[3];