Searched refs:wordNdx (Results 1 – 4 of 4) sorted by relevance
66 for (int wordNdx = 0; wordNdx < (int)bitfield.size(); ++wordNdx) in sampleMaskToString() local70 const int targetCharNdx = numBits - (wordNdx*32+bit) - 1; in sampleMaskToString()76 if ((bitfield[wordNdx] >> bit) & 0x01) in sampleMaskToString()508 for (int wordNdx = 0; wordNdx < wordCount; ++wordNdx) in drawPattern() local510 const GLbitfield rawMask = (GLbitfield)deUint32Hash(wordNdx * 32 + triNdx); in drawPattern()512 const bool isFinalWord = (wordNdx + 1) == wordCount; in drawPattern()515 gl.sampleMaski(wordNdx, mask & maskMask); in drawPattern()611 for (int wordNdx = 0; wordNdx < getEffectiveSampleMaskWordCount(m_numSamples - 1); ++wordNdx) in iterate() local613 …const GLbitfield mask = (wordNdx < (int)sampleMask.size()) ? ((GLbitfield)(sampleMask[wordNdx])) :… in iterate()615 gl.sampleMaski(wordNdx, mask); in iterate()[all …]
63 for (int wordNdx = 0; wordNdx < (int)bitfield.size(); ++wordNdx) in sampleMaskToString() local67 const int targetCharNdx = numBits - (wordNdx*32+bit) - 1; in sampleMaskToString()73 if ((bitfield[wordNdx] >> bit) & 0x01) in sampleMaskToString()869 for (int wordNdx = 0; wordNdx < (int)effectiveMask.size(); ++wordNdx) in updateTexture() local871 const deUint32 randomMask = (deUint32)deUint32Hash(wordNdx << 2 ^ sample); in updateTexture()872 const deUint32 sampleMask = (wordNdx < (int)bitmask.size()) ? (bitmask[wordNdx]) : (0); in updateTexture()873 const deUint32 maskMask = effectiveMask[wordNdx]; in updateTexture()875 totalBitmask[wordNdx] = (sampleMask & maskMask) | (randomMask & ~maskMask); in updateTexture()881 for (int wordNdx = 0; wordNdx < m_effectiveSampleMaskWordCount; ++wordNdx) in updateTexture() local883 …const GLbitfield wordmask = (wordNdx < (int)totalBitmask.size()) ? ((GLbitfield)(totalBitmask[word… in updateTexture()[all …]
184 size_t wordNdx = 0; in findBinaryIndex() local190 if (curNode.word == words[wordNdx]) in findBinaryIndex()192 if (wordNdx+1 < words.size()) in findBinaryIndex()197 wordNdx += 1; in findBinaryIndex()199 else if (wordNdx+1 == words.size()) in findBinaryIndex()
207 for (int wordNdx = 0; wordNdx < NUM_WORDS; wordNdx++) in Block128() local209 m_words[wordNdx] = 0; in Block128()211 m_words[wordNdx] |= (Word)src[wordNdx*WORD_BYTES + byteNdx] << (8*byteNdx); in Block128()1630 for (int wordNdx = 0; wordNdx < NUM_WORDS; wordNdx++) in AssignBlock128() local1631 m_words[wordNdx] = 0; in AssignBlock128()1638 const int wordNdx = ndx / WORD_BITS; in setBit() local1640 m_words[wordNdx] = (m_words[wordNdx] & ~((Word)1 << bitNdx)) | ((Word)val << bitNdx); in setBit()1674 for (int wordNdx = 0; wordNdx < NUM_WORDS; wordNdx++) in assignToMemory() local1677 dst[wordNdx*WORD_BYTES + byteNdx] = (deUint8)((m_words[wordNdx] >> (8*byteNdx)) & 0xff); in assignToMemory()