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()514 for (int wordNdx = 0; wordNdx < wordCount; ++wordNdx) in drawPattern() local516 const GLbitfield rawMask = (GLbitfield)deUint32Hash(wordNdx * 32 + triNdx); in drawPattern()518 const bool isFinalWord = (wordNdx + 1) == wordCount; in drawPattern()521 gl.sampleMaski(wordNdx, mask & maskMask); in drawPattern()617 for (int wordNdx = 0; wordNdx < getEffectiveSampleMaskWordCount(m_numSamples - 1); ++wordNdx) in iterate() local619 …const GLbitfield mask = (wordNdx < (int)sampleMask.size()) ? ((GLbitfield)(sampleMask[wordNdx])) :… in iterate()621 gl.sampleMaski(wordNdx, mask); in iterate()[all …]
62 for (int wordNdx = 0; wordNdx < (int)bitfield.size(); ++wordNdx) in sampleMaskToString() local66 const int targetCharNdx = numBits - (wordNdx*32+bit) - 1; in sampleMaskToString()72 if ((bitfield[wordNdx] >> bit) & 0x01) in sampleMaskToString()855 for (int wordNdx = 0; wordNdx < (int)effectiveMask.size(); ++wordNdx) in updateTexture() local857 const deUint32 randomMask = (deUint32)deUint32Hash(wordNdx << 2 ^ sample); in updateTexture()858 const deUint32 sampleMask = (wordNdx < (int)bitmask.size()) ? (bitmask[wordNdx]) : (0); in updateTexture()859 const deUint32 maskMask = effectiveMask[wordNdx]; in updateTexture()861 totalBitmask[wordNdx] = (sampleMask & maskMask) | (randomMask & ~maskMask); in updateTexture()867 for (int wordNdx = 0; wordNdx < m_effectiveSampleMaskWordCount; ++wordNdx) in updateTexture() local869 …const GLbitfield wordmask = (wordNdx < (int)totalBitmask.size()) ? ((GLbitfield)(totalBitmask[word… in updateTexture()[all …]
105 size_t wordNdx = 0; in findBinaryIndex() local111 if (curNode.word == words[wordNdx]) in findBinaryIndex()113 if (wordNdx+1 < words.size()) in findBinaryIndex()118 wordNdx += 1; in findBinaryIndex()120 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()1604 for (int wordNdx = 0; wordNdx < NUM_WORDS; wordNdx++) in AssignBlock128() local1605 m_words[wordNdx] = 0; in AssignBlock128()1612 const int wordNdx = ndx / WORD_BITS; in setBit() local1614 m_words[wordNdx] = (m_words[wordNdx] & ~((Word)1 << bitNdx)) | ((Word)val << bitNdx); in setBit()1648 for (int wordNdx = 0; wordNdx < NUM_WORDS; wordNdx++) in assignToMemory() local1651 dst[wordNdx*WORD_BYTES + byteNdx] = (deUint8)((m_words[wordNdx] >> (8*byteNdx)) & 0xff); in assignToMemory()