Home | History | Annotate | Download | only in src

Lines Matching refs:pBS

49  *   pBS - pointer to a 16x2 table of BS parameters arranged in scan block 
51 * range [0,4] with the following restrictions: i) pBS[i]== 4 may
52 * occur only for 0<=i<=3, ii) pBS[i]== 4 if and only if pBS[i^3]==
64 * pBeta, pThresholds or pBS. pSrcDst is not 16-byte aligned.
65 * either pThresholds or pBS is not aligned on a 4-byte boundary.
72 * - pBS is out of range, i.e., one of the following conditions is true:
73 * pBS[i]<0, pBS[i]>4, pBS[i]==4 for i>=4, or
74 * (pBS[i]==4 && pBS[i^3]!=4) for 0<=i<=3.
85 const OMX_U8 *pBS
97 armRetArgErrIf(pBS == NULL, OMX_Sts_BadArgErr);
98 armRetArgErrIf(armNot4ByteAligned(pBS), OMX_Sts_BadArgErr);
101 pSrcDst, srcdstStep, pAlpha, pBeta, pThresholds, pBS);
106 pSrcDst, srcdstStep, pAlpha+2, pBeta+2, pThresholds+16, pBS+16);