Home | History | Annotate | Download | only in src

Lines Matching refs:pOffset

31  * [in]     *pOffset
37 OMX_U32 armLookAheadBits(const OMX_U8 **ppBitStream, OMX_INT *pOffset, OMX_INT N)
40 OMX_INT Offset = *pOffset;
63 * [in] *pOffset
67 * [out] *pOffset
72 OMX_U32 armGetBits(const OMX_U8 **ppBitStream, OMX_INT *pOffset, OMX_INT N)
75 OMX_INT Offset = *pOffset;
93 *pOffset = Offset & 7;
107 * [in] *pOffset
110 * [out] *pOffset
114 OMXVoid armByteAlign(const OMX_U8 **ppBitStream,OMX_INT *pOffset)
116 if(*pOffset > 0)
119 *pOffset = 0;
131 * [in] *pOffset
135 * [out] *pOffset
140 OMXVoid armSkipBits(const OMX_U8 **ppBitStream,OMX_INT *pOffset,OMX_INT N)
142 OMX_INT Offset = *pOffset;
148 *pOffset = Offset & 7;
160 * the bit stream pointed by *ppBitStream at *pOffset by using the table
165 * [in] *pOffset
169 * [out] *pOffset
178 OMX_INT *pOffset,
183 OMX_INT Offset = *pOffset;
200 *pOffset = Offset & 7;
228 * [in] pOffset pointer to the bit position in the byte
249 OMX_INT *pOffset,
255 OMX_INT Offset = *pOffset;
282 *pOffset = Offset + codeLength;