Searched refs:m_words (Results 1 – 1 of 1) sorted by relevance
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::__anon1989e5c50111::Block1281605 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()[all …]