Home | History | Annotate | Download | only in src

Lines Matching refs:dstStep

55  *   dstStep - Step of the destination buffer; must be a multiple of 16. 
70 * dstStep < 16. or dstStep is not a multiple of 16.
100 OMX_INT dstStep,
108 armRetArgErrIf(dstStep < 16, OMX_Sts_BadArgErr);
109 armRetArgErrIf((dstStep % 16) != 0, OMX_Sts_BadArgErr);
130 pDst[y*dstStep+x] = pSrcAbove[x];
140 pDst[y*dstStep+x] = pSrcLeft[y*leftStep];
181 pDst[y*dstStep+x] = (OMX_U8)Sum;
205 pDst[y*dstStep+x] = (OMX_U8)armClip(0,255,Sum);