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.c48 * iStepOrg - Step of the original block buffer
65 * - iStepOrg <= 0 or iStepOrg is not a multiple of 16
72 OMX_U32 iStepOrg,
85 armRetArgErrIf((iStepOrg == 0) || (iStepOrg & 15), OMX_Sts_BadArgErr)
89 (pSrcOrg, iStepOrg, pSrcRef, iStepRef, pDstSAD, iHeight, 16);
70 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.c48 * iStepOrg - Step of the original block buffer
65 * - iStepOrg <= 0 or iStepOrg is not a multiple of 8
72 OMX_U32 iStepOrg,
85 armRetArgErrIf((iStepOrg == 0) || (iStepOrg & 7), OMX_Sts_BadArgErr)
89 (pSrcOrg, iStepOrg, pSrcRef, iStepRef, pDstSAD, iHeight, 8);
70 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.c46 * [in] iStepOrg Step of the original block buffer
59 OMX_U32 iStepOrg,
79 *pDstSAD += armAbs(pSrcOrg [(y * iStepOrg) + x] -
57 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.c48 * iStepOrg -Step of the original block buffer; must be a multiple of 4.
63 * - iStepOrg is not a multiple of 4
69 OMX_U32 iStepOrg,
82 armRetArgErrIf((iStepOrg == 0) || (iStepOrg & 3), OMX_Sts_BadArgErr)
86 (pSrcOrg, iStepOrg, pSrcRef, iStepRef, pDstSAD, iHeight, 4);
67 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.c48 * iStepOrg - Step of the original block buffer; must be a multiple of 4
65 * - iStepOrg <= 0 or iStepOrg is not a multiple of 4
71 OMX_U32 iStepOrg,
85 armRetArgErrIf((iStepOrg == 0) || (iStepOrg & 3), OMX_Sts_BadArgErr)
95 d [j][i] = pSrcOrg [j * iStepOrg + i] - pSrcRef [j * iStepRef + i];
69 omxVCM4P10_SATD_4x4( const OMX_U8* pSrcOrg, OMX_U32 iStepOrg, const OMX_U8* pSrcRef, OMX_U32 iStepRef, OMX_U32* pDstSAD ) argument

Completed in 319 milliseconds