Searched refs:nBitArrayIndex (Results 1 - 2 of 2) sorted by relevance

/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DUnBitArrayBase.cpp56 uint32 nBitArrayIndex = m_nCurrentBitIndex >> 5; local
61 return (m_pBitArray[nBitArrayIndex]
66 uint32 nLeftValue = ((m_pBitArray[nBitArrayIndex]
68 uint32 nRightValue = (m_pBitArray[nBitArrayIndex + 1] >> (32 - nRightBits));
96 uint32 nBitArrayIndex = m_nCurrentBitIndex >> 5; local
100 + nBitArrayIndex), m_nBytes - (nBitArrayIndex * 4));
103 int nBytesToRead = nBitArrayIndex * 4;
106 - nBitArrayIndex), nBytesToRead, &nBytesRead);
H A DBitArray.cpp177 uint32 nBitArrayIndex = m_nCurrentBitIndex >> 5; local
182 m_pBitArray[nBitArrayIndex] = n;
186 m_pBitArray[nBitArrayIndex] |= n >> nBitIndex;
187 m_pBitArray[nBitArrayIndex + 1] = n << (32 - nBitIndex);

Completed in 87 milliseconds