Searched refs:nBitArrayIndex (Results 1 – 2 of 2) sorted by relevance
56 uint32 nBitArrayIndex = m_nCurrentBitIndex >> 5; in DecodeValueXBits() local61 return (m_pBitArray[nBitArrayIndex] in DecodeValueXBits()66 uint32 nLeftValue = ((m_pBitArray[nBitArrayIndex] in DecodeValueXBits()68 uint32 nRightValue = (m_pBitArray[nBitArrayIndex + 1] >> (32 - nRightBits)); in DecodeValueXBits()96 uint32 nBitArrayIndex = m_nCurrentBitIndex >> 5; in FillBitArray() local100 + nBitArrayIndex), m_nBytes - (nBitArrayIndex * 4)); in FillBitArray()103 int nBytesToRead = nBitArrayIndex * 4; in FillBitArray()106 - nBitArrayIndex), nBytesToRead, &nBytesRead); in FillBitArray()
177 uint32 nBitArrayIndex = m_nCurrentBitIndex >> 5; in EncodeUnsignedLong() local182 m_pBitArray[nBitArrayIndex] = n; in EncodeUnsignedLong()186 m_pBitArray[nBitArrayIndex] |= n >> nBitIndex; in EncodeUnsignedLong()187 m_pBitArray[nBitArrayIndex + 1] = n << (32 - nBitIndex); in EncodeUnsignedLong()