Lines Matching refs:m_words
209 m_words[wordNdx] = 0; in Block128()
211 m_words[wordNdx] |= (Word)src[wordNdx*WORD_BYTES + byteNdx] << (8*byteNdx); in Block128()
218 return (m_words[ndx / WORD_BITS] >> (ndx % WORD_BITS)) & 1; in getBit()
236 …return (deUint32)((m_words[word0Ndx] & ((((Word)1 << high%WORD_BITS << 1) - 1))) >> ((Word)low % W… 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()
253 Word m_words[NUM_WORDS]; member in tcu::astc::__anonba8e8f060111::Block128
1605 m_words[wordNdx] = 0; in AssignBlock128()
1614 m_words[wordNdx] = (m_words[wordNdx] & ~((Word)1 << bitNdx)) | ((Word)val << bitNdx); in setBit()
1632 …m_words[word0Ndx] = (m_words[word0Ndx] & ~((((Word)1 << (high-low+1)) - 1) << lowNdxInW0)) | ((Wor… in setBits()
1641 …m_words[word0Ndx] = (m_words[word0Ndx] & (((Word)1 << lowNdxInW0) - 1)) | (((Word)bits & bitsLow… in setBits()
1642 …m_words[word1Ndx] = (m_words[word1Ndx] & ~(((Word)1 << (highNdxInW1+1)) - 1)) | (((Word)bits & ~bi… in setBits()
1651 dst[wordNdx*WORD_BYTES + byteNdx] = (deUint8)((m_words[wordNdx] >> (8*byteNdx)) & 0xff); in assignToMemory()
1663 Word m_words[NUM_WORDS]; member in tcu::astc::__anonba8e8f060111::AssignBlock128