Home | History | Annotate | Download | only in src

Lines Matching refs:dstStep

34  * [in]	dstStep			Step of the destination buffer
47 OMX_INT dstStep,
81 pDst[y*dstStep+x] = (OMX_U8)Sum;
96 * [in] dstStep Step of the destination buffer
109 OMX_INT dstStep,
143 pDst[y*dstStep+x] = (OMX_U8)Sum;
162 * dstStep - Step of the destination buffer; must be a multiple of 8.
177 * dstStep < 8 or dstStep is not a multiple of 8.
205 OMX_INT dstStep,
214 armRetArgErrIf(dstStep < 8, OMX_Sts_BadArgErr);
215 armRetArgErrIf((dstStep % 8) != 0, OMX_Sts_BadArgErr);
232 armVCM4P10_PredictIntraDC4x4( pSrcLeft, pSrcAbove, pDst, leftStep, dstStep, availability);
233 armVCM4P10_PredictIntraDCUp4x4( pSrcLeft, pSrcAbove+4, pDst+4, leftStep, dstStep, availability);
234 armVCM4P10_PredictIntraDCLeft4x4( pSrcLeft+4*leftStep, pSrcAbove, pDst+4*dstStep, leftStep, dstStep, availability);
235 armVCM4P10_PredictIntraDC4x4( pSrcLeft+4*leftStep, pSrcAbove+4, pDst+4+4*dstStep, leftStep, dstStep, availability);
243 pDst[y*dstStep+x] = pSrcLeft[y*leftStep];
253 pDst[y*dstStep+x] = pSrcAbove[x];
277 pDst[y*dstStep+x] = (OMX_U8)armClip(0,255,Sum);