Searched refs:ucByteBuf (Results 1 – 2 of 2) sorted by relevance
47 xMBUtilSetBits( UCHAR * ucByteBuf, USHORT usBitOffset, UCHAR ucNBits, in xMBUtilSetBits() argument74 usWordBuf = ucByteBuf[usByteOffset]; in xMBUtilSetBits()75 usWordBuf |= ucByteBuf[usByteOffset + 1] << BITS_UCHAR; in xMBUtilSetBits()81 ucByteBuf[usByteOffset] = ( UCHAR )( usWordBuf & 0xFF ); in xMBUtilSetBits()82 ucByteBuf[usByteOffset + 1] = ( UCHAR )( usWordBuf >> BITS_UCHAR ); in xMBUtilSetBits()86 xMBUtilGetBits( UCHAR * ucByteBuf, USHORT usBitOffset, UCHAR ucNBits ) in xMBUtilGetBits() argument104 usWordBuf = ucByteBuf[usByteOffset]; in xMBUtilGetBits()105 usWordBuf |= ucByteBuf[usByteOffset + 1] << BITS_UCHAR; in xMBUtilGetBits()
78 void xMBUtilSetBits( UCHAR * ucByteBuf, USHORT usBitOffset,100 UCHAR xMBUtilGetBits( UCHAR * ucByteBuf, USHORT usBitOffset,