Lines Matching refs:WORD_BITS
198 WORD_BITS = 8*WORD_BYTES, enumerator
199 NUM_WORDS = 128 / WORD_BITS
202 DE_STATIC_ASSERT(128 % WORD_BITS == 0);
218 return (m_words[ndx / WORD_BITS] >> (ndx % WORD_BITS)) & 1; in getBit()
230 const int word0Ndx = low / WORD_BITS; in getBits()
231 const int word1Ndx = high / WORD_BITS; in getBits()
236 … (deUint32)((m_words[word0Ndx] & ((((Word)1 << high%WORD_BITS << 1) - 1))) >> ((Word)low % WORD_BI… in getBits()
241 return (deUint32)(m_words[word0Ndx] >> (low%WORD_BITS)) | in getBits()
242 …(deUint32)((m_words[word1Ndx] & (((Word)1 << high%WORD_BITS << 1) - 1)) << (high-low - high%WORD_B… in getBits()
1621 WORD_BITS = 8*WORD_BYTES, enumerator
1622 NUM_WORDS = 128 / WORD_BITS
1625 DE_STATIC_ASSERT(128 % WORD_BITS == 0);
1638 const int wordNdx = ndx / WORD_BITS; in setBit()
1639 const int bitNdx = ndx % WORD_BITS; in setBit()
1653 const int word0Ndx = low / WORD_BITS; in setBits()
1654 const int word1Ndx = high / WORD_BITS; in setBits()
1655 const int lowNdxInW0 = low % WORD_BITS; in setBits()
1663 const int highNdxInW1 = high % WORD_BITS; in setBits()
1664 const int numBitsToSetInW0 = WORD_BITS - lowNdxInW0; in setBits()