Searched defs:iStepOrg (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/
H A DomxVCCOMM_SAD_16x.c33 * iStepOrg - Step of the original block buffer
50 * - iStepOrg <= 0 or iStepOrg is not a multiple of 16
57 OMX_U32 iStepOrg,
70 armRetArgErrIf((iStepOrg == 0) || (iStepOrg & 15), OMX_Sts_BadArgErr)
74 (pSrcOrg, iStepOrg, pSrcRef, iStepRef, pDstSAD, iHeight, 16);
55 omxVCCOMM_SAD_16x( const OMX_U8* pSrcOrg, OMX_U32 iStepOrg, const OMX_U8* pSrcRef, OMX_U32 iStepRef, OMX_S32* pDstSAD, OMX_U32 iHeight ) argument
H A DomxVCCOMM_SAD_8x.c33 * iStepOrg - Step of the original block buffer
50 * - iStepOrg <= 0 or iStepOrg is not a multiple of 8
57 OMX_U32 iStepOrg,
70 armRetArgErrIf((iStepOrg == 0) || (iStepOrg & 7), OMX_Sts_BadArgErr)
74 (pSrcOrg, iStepOrg, pSrcRef, iStepRef, pDstSAD, iHeight, 8);
55 omxVCCOMM_SAD_8x( const OMX_U8* pSrcOrg, OMX_U32 iStepOrg, const OMX_U8* pSrcRef, OMX_U32 iStepRef, OMX_S32* pDstSAD, OMX_U32 iHeight ) argument
H A DarmVCCOMM_SAD.c31 * [in] iStepOrg Step of the original block buffer
44 OMX_U32 iStepOrg,
64 *pDstSAD += armAbs(pSrcOrg [(y * iStepOrg) + x] -
42 armVCCOMM_SAD( const OMX_U8* pSrcOrg, OMX_U32 iStepOrg, const OMX_U8* pSrcRef, OMX_U32 iStepRef, OMX_S32* pDstSAD, OMX_U32 iHeight, OMX_U32 iWidth ) argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DomxVCM4P10_SAD_4x.c33 * iStepOrg -Step of the original block buffer; must be a multiple of 4.
48 * - iStepOrg is not a multiple of 4
54 OMX_U32 iStepOrg,
67 armRetArgErrIf((iStepOrg == 0) || (iStepOrg & 3), OMX_Sts_BadArgErr)
71 (pSrcOrg, iStepOrg, pSrcRef, iStepRef, pDstSAD, iHeight, 4);
52 omxVCM4P10_SAD_4x( const OMX_U8* pSrcOrg, OMX_U32 iStepOrg, const OMX_U8* pSrcRef, OMX_U32 iStepRef, OMX_S32* pDstSAD, OMX_U32 iHeight ) argument
H A DomxVCM4P10_SATD_4x4.c33 * iStepOrg - Step of the original block buffer; must be a multiple of 4
50 * - iStepOrg <= 0 or iStepOrg is not a multiple of 4
56 OMX_U32 iStepOrg,
70 armRetArgErrIf((iStepOrg == 0) || (iStepOrg & 3), OMX_Sts_BadArgErr)
80 d [j][i] = pSrcOrg [j * iStepOrg + i] - pSrcRef [j * iStepRef + i];
54 omxVCM4P10_SATD_4x4( const OMX_U8* pSrcOrg, OMX_U32 iStepOrg, const OMX_U8* pSrcRef, OMX_U32 iStepRef, OMX_U32* pDstSAD ) argument

Completed in 112 milliseconds