Searched refs:word1Ndx (Results 1 – 1 of 1) sorted by relevance
231 const int word1Ndx = high / WORD_BITS; in getBits() local235 if (word0Ndx == word1Ndx) in getBits()239 DE_ASSERT(word1Ndx == word0Ndx + 1); in getBits()242 …(deUint32)((m_words[word1Ndx] & (((Word)1 << high%WORD_BITS << 1) - 1)) << (high-low - high%WORD_B… in getBits()1654 const int word1Ndx = high / WORD_BITS; in setBits() local1657 if (word0Ndx == word1Ndx) in setBits()1661 DE_ASSERT(word1Ndx == word0Ndx + 1); in setBits()1668 …m_words[word1Ndx] = (m_words[word1Ndx] & ~(((Word)1 << (highNdxInW1+1)) - 1)) | (((Word)bits & ~bi… in setBits()