Searched refs:word1Ndx (Results 1 – 2 of 2) sorted by relevance
177 const int word1Ndx = high / WORD_BITS; in setBits() local180 if (word0Ndx == word1Ndx) in setBits()184 DE_ASSERT(word1Ndx == word0Ndx + 1); in setBits()191 …m_words[word1Ndx] = (m_words[word1Ndx] & ~(((Word)1 << (highNdxInW1+1)) - 1)) | (((Word)bits & ~bi… in setBits()
1101 const int word1Ndx = high / WORD_BITS; in getBits() local1105 if (word0Ndx == word1Ndx) in getBits()1109 DE_ASSERT(word1Ndx == word0Ndx + 1); in getBits()1112 …(deUint32)((m_words[word1Ndx] & (((Word)1 << high%WORD_BITS << 1) - 1)) << (high-low - high%WORD_B… in getBits()