Home | History | Annotate | Download | only in src

Lines Matching refs:dstStep

49  * [in]	dstStep			Step of the destination buffer
62 OMX_INT dstStep,
96 pDst[y*dstStep+x] = (OMX_U8)Sum;
111 * [in] dstStep Step of the destination buffer
124 OMX_INT dstStep,
158 pDst[y*dstStep+x] = (OMX_U8)Sum;
177 * dstStep - Step of the destination buffer; must be a multiple of 8.
192 * dstStep < 8 or dstStep is not a multiple of 8.
220 OMX_INT dstStep,
229 armRetArgErrIf(dstStep < 8, OMX_Sts_BadArgErr);
230 armRetArgErrIf((dstStep % 8) != 0, OMX_Sts_BadArgErr);
247 armVCM4P10_PredictIntraDC4x4( pSrcLeft, pSrcAbove, pDst, leftStep, dstStep, availability);
248 armVCM4P10_PredictIntraDCUp4x4( pSrcLeft, pSrcAbove+4, pDst+4, leftStep, dstStep, availability);
249 armVCM4P10_PredictIntraDCLeft4x4( pSrcLeft+4*leftStep, pSrcAbove, pDst+4*dstStep, leftStep, dstStep, availability);
250 armVCM4P10_PredictIntraDC4x4( pSrcLeft+4*leftStep, pSrcAbove+4, pDst+4+4*dstStep, leftStep, dstStep, availability);
258 pDst[y*dstStep+x] = pSrcLeft[y*leftStep];
268 pDst[y*dstStep+x] = pSrcAbove[x];
292 pDst[y*dstStep+x] = (OMX_U8)armClip(0,255,Sum);