Home
last modified time | relevance | path

Searched refs:wordNdx (Results 1 – 4 of 4) sorted by relevance

/external/deqp/modules/gles31/functional/
Des31fMultisampleTests.cpp66 for (int wordNdx = 0; wordNdx < (int)bitfield.size(); ++wordNdx) in sampleMaskToString() local
70 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() local
510 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() local
613 …const GLbitfield mask = (wordNdx < (int)sampleMask.size()) ? ((GLbitfield)(sampleMask[wordNdx])) :… in iterate()
615 gl.sampleMaski(wordNdx, mask); in iterate()
[all …]
Des31fTextureMultisampleTests.cpp63 for (int wordNdx = 0; wordNdx < (int)bitfield.size(); ++wordNdx) in sampleMaskToString() local
67 const int targetCharNdx = numBits - (wordNdx*32+bit) - 1; in sampleMaskToString()
73 if ((bitfield[wordNdx] >> bit) & 0x01) in sampleMaskToString()
856 for (int wordNdx = 0; wordNdx < (int)effectiveMask.size(); ++wordNdx) in updateTexture() local
858 const deUint32 randomMask = (deUint32)deUint32Hash(wordNdx << 2 ^ sample); in updateTexture()
859 const deUint32 sampleMask = (wordNdx < (int)bitmask.size()) ? (bitmask[wordNdx]) : (0); in updateTexture()
860 const deUint32 maskMask = effectiveMask[wordNdx]; in updateTexture()
862 totalBitmask[wordNdx] = (sampleMask & maskMask) | (randomMask & ~maskMask); in updateTexture()
868 for (int wordNdx = 0; wordNdx < m_effectiveSampleMaskWordCount; ++wordNdx) in updateTexture() local
870 …const GLbitfield wordmask = (wordNdx < (int)totalBitmask.size()) ? ((GLbitfield)(totalBitmask[word… in updateTexture()
[all …]
/external/deqp/external/vulkancts/framework/vulkan/
DvkBinaryRegistry.cpp184 size_t wordNdx = 0; in findBinaryIndex() local
190 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()
/external/deqp/framework/common/
DtcuAstcUtil.cpp207 for (int wordNdx = 0; wordNdx < NUM_WORDS; wordNdx++) in Block128() local
209 m_words[wordNdx] = 0; in Block128()
211 m_words[wordNdx] |= (Word)src[wordNdx*WORD_BYTES + byteNdx] << (8*byteNdx); in Block128()
1618 for (int wordNdx = 0; wordNdx < NUM_WORDS; wordNdx++) in AssignBlock128() local
1619 m_words[wordNdx] = 0; in AssignBlock128()
1626 const int wordNdx = ndx / WORD_BITS; in setBit() local
1628 m_words[wordNdx] = (m_words[wordNdx] & ~((Word)1 << bitNdx)) | ((Word)val << bitNdx); in setBit()
1662 for (int wordNdx = 0; wordNdx < NUM_WORDS; wordNdx++) in assignToMemory() local
1665 dst[wordNdx*WORD_BYTES + byteNdx] = (deUint8)((m_words[wordNdx] >> (8*byteNdx)) & 0xff); in assignToMemory()