Searched refs:wordNdx (Results 1 – 4 of 4) sorted by relevance
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()504 for (int wordNdx = 0; wordNdx < wordCount; ++wordNdx) in drawPattern() local506 const GLbitfield rawMask = (GLbitfield)deUint32Hash(wordNdx * 32 + triNdx); in drawPattern()508 const bool isFinalWord = (wordNdx + 1) == wordCount; in drawPattern()511 gl.sampleMaski(wordNdx, mask & maskMask); in drawPattern()607 for (int wordNdx = 0; wordNdx < getEffectiveSampleMaskWordCount(m_numSamples - 1); ++wordNdx) in iterate() local609 …const GLbitfield mask = (wordNdx < (int)sampleMask.size()) ? ((GLbitfield)(sampleMask[wordNdx])) :… in iterate()611 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 …]
153 for (int wordNdx = 0; wordNdx < NUM_WORDS; wordNdx++) in AssignBlock128() local154 m_words[wordNdx] = 0; in AssignBlock128()161 const int wordNdx = ndx / WORD_BITS; in setBit() local163 m_words[wordNdx] = (m_words[wordNdx] & ~((Word)1 << bitNdx)) | ((Word)val << bitNdx); in setBit()197 for (int wordNdx = 0; wordNdx < NUM_WORDS; wordNdx++) in assignToMemory() local200 dst[wordNdx*WORD_BYTES + byteNdx] = (deUint8)((m_words[wordNdx] >> (8*byteNdx)) & 0xff); in assignToMemory()
1077 for (int wordNdx = 0; wordNdx < NUM_WORDS; wordNdx++) in Block128() local1079 m_words[wordNdx] = 0; in Block128()1081 m_words[wordNdx] |= (Word)src[wordNdx*WORD_BYTES + byteNdx] << (8*byteNdx); in Block128()