Home | History | Annotate | Download | only in src

Lines Matching refs:pBS

47  *   pBS - array of size 16 of BS parameters (arranged in horizontal block 
49 * restrictions: i) pBS[i]== 4 may occur only for 0<=i<=3, ii)
50 * pBS[i]== 4 if and only if pBS[i^3]== 4. Must be 4-byte aligned.
62 * pBeta, pThresholds, or pBS.
63 * - either pThresholds or pBS is not aligned on a 4-byte boundary.
70 * - pBS is out of range, i.e., one of the following conditions is true:
71 * pBS[i]<0, pBS[i]>4, pBS[i]==4 for i>=4, or
72 * (pBS[i]==4 && pBS[i^3]!=4) for 0<=i<=3.
82 const OMX_U8 *pBS
94 armRetArgErrIf(pBS == NULL, OMX_Sts_BadArgErr);
95 armRetArgErrIf(armNot4ByteAligned(pBS), OMX_Sts_BadArgErr);
103 armRetArgErrIf(pBS[I] > 4, OMX_Sts_BadArgErr)
105 armRetArgErrIf( (I > 3) && (pBS[I] == 4),
109 ( (pBS[I] == 4) && (pBS[I^1] != 4) ),
119 pBS[I],