Home | History | Annotate | Download | only in src

Lines Matching refs:pBS

48  *   pBS - array of size 16x2 of BS parameters (arranged in scan block order 
50 * range [0,4] with the following restrictions: i) pBS[i]== 4 may
51 * occur only for 0<=i<=3, ii) pBS[i]== 4 if and only if pBS[i^3]==
63 * pBeta, pThresholds, or pBS. pSrcDst is not 8-byte aligned.
64 * either pThresholds or pBS is not 4-byte aligned.
71 * - pBS is out of range, i.e., one of the following conditions is true:
72 * pBS[i]<0, pBS[i]>4, pBS[i]==4 for i>=4, or
73 * (pBS[i]==4 && pBS[i^3]!=4) for 0<=i<=3.
83 const OMX_U8 *pBS
95 armRetArgErrIf(pBS == NULL, OMX_Sts_BadArgErr);
96 armRetArgErrIf(armNot4ByteAligned(pBS), OMX_Sts_BadArgErr);
99 pSrcDst, srcdstStep, pAlpha, pBeta, pThresholds, pBS);
104 pSrcDst, srcdstStep, pAlpha+2, pBeta+2, pThresholds+8, pBS+16);