Home | History | Annotate | Download | only in src

Lines Matching refs:pBS

63  *   pBS - array of size 16x2 of BS parameters (arranged in scan block order 
65 * range [0,4] with the following restrictions: i) pBS[i]== 4 may
66 * occur only for 0<=i<=3, ii) pBS[i]== 4 if and only if pBS[i^3]==
78 * pBeta, pThresholds, or pBS. pSrcDst is not 8-byte aligned.
79 * either pThresholds or pBS is not 4-byte aligned.
86 * - pBS is out of range, i.e., one of the following conditions is true:
87 * pBS[i]<0, pBS[i]>4, pBS[i]==4 for i>=4, or
88 * (pBS[i]==4 && pBS[i^3]!=4) for 0<=i<=3.
98 const OMX_U8 *pBS
110 armRetArgErrIf(pBS == NULL, OMX_Sts_BadArgErr);
111 armRetArgErrIf(armNot4ByteAligned(pBS), OMX_Sts_BadArgErr);
114 pSrcDst, srcdstStep, pAlpha, pBeta, pThresholds, pBS);
119 pSrcDst, srcdstStep, pAlpha+2, pBeta+2, pThresholds+8, pBS+16);