Searched refs:m_words (Results 1 – 2 of 2) 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::__anon263ffeec0111::Block1281631 m_words[wordNdx] = 0; in AssignBlock128()1640 m_words[wordNdx] = (m_words[wordNdx] & ~((Word)1 << bitNdx)) | ((Word)val << bitNdx); in setBit()1658 …m_words[word0Ndx] = (m_words[word0Ndx] & ~((((Word)1 << (high-low+1)) - 1) << lowNdxInW0)) | ((Wor… in setBits()[all …]
258 size_t m_words[NUM_WORDS] = {};263 size_t word = m_words[elementIndex / ELEMENTS_PER_WORD];