Home
last modified time | relevance | path

Searched refs:word1Ndx (Results 1 – 1 of 1) sorted by relevance

/external/deqp/framework/common/
DtcuAstcUtil.cpp231 const int word1Ndx = high / WORD_BITS; in getBits() local
235 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() local
1657 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()