Home
last modified time | relevance | path

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

/external/deqp/modules/gles31/functional/
Des31fMultisampleTests.cpp62 for (int wordNdx = 0; wordNdx < (int)bitfield.size(); ++wordNdx) in sampleMaskToString() local
66 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() local
506 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() local
609 …const GLbitfield mask = (wordNdx < (int)sampleMask.size()) ? ((GLbitfield)(sampleMask[wordNdx])) :… in iterate()
611 gl.sampleMaski(wordNdx, mask); in iterate()
[all …]
Des31fTextureMultisampleTests.cpp62 for (int wordNdx = 0; wordNdx < (int)bitfield.size(); ++wordNdx) in sampleMaskToString() local
66 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() local
857 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() local
869 …const GLbitfield wordmask = (wordNdx < (int)totalBitmask.size()) ? ((GLbitfield)(totalBitmask[word… in updateTexture()
[all …]
/external/deqp/modules/gles3/functional/
Des3fASTCDecompressionCases.cpp153 for (int wordNdx = 0; wordNdx < NUM_WORDS; wordNdx++) in AssignBlock128() local
154 m_words[wordNdx] = 0; in AssignBlock128()
161 const int wordNdx = ndx / WORD_BITS; in setBit() local
163 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() local
200 dst[wordNdx*WORD_BYTES + byteNdx] = (deUint8)((m_words[wordNdx] >> (8*byteNdx)) & 0xff); in assignToMemory()
/external/deqp/framework/common/
DtcuCompressedTexture.cpp1077 for (int wordNdx = 0; wordNdx < NUM_WORDS; wordNdx++) in Block128() local
1079 m_words[wordNdx] = 0; in Block128()
1081 m_words[wordNdx] |= (Word)src[wordNdx*WORD_BYTES + byteNdx] << (8*byteNdx); in Block128()