Home | History | Annotate | Download | only in src

Lines Matching refs:pSrc

48  *   pSrc - Pointer to the 2x2 array of the 2x2 Hadamard-transformed and 
62 * - at least one of the following pointers is NULL: pSrc
63 * - pSrc or pDst is not aligned on an 8-byte boundary
67 const OMX_S16* pSrc,
77 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr)
78 armRetArgErrIf(armNot8ByteAligned(pSrc), OMX_Sts_BadArgErr);
84 m[0][0] = pSrc[0] + pSrc[1] + pSrc[2] + pSrc[3];
85 m[0][1] = pSrc[0] - pSrc[1] + pSrc[2] - pSrc[3];
86 m[1][0] = pSrc[0] + pSrc[1] - pSrc[2] - pSrc[3];
87 m[1][1] = pSrc[0] - pSrc[1] - pSrc[2] + pSrc[3];