Searched refs:WORD_BITS (Results 1 - 2 of 2) sorted by relevance

/external/deqp/modules/gles3/functional/
H A Des3fASTCDecompressionCases.cpp143 WORD_BITS = 8*WORD_BYTES, enumerator in enum:deqp::gles3::Functional::ASTCDecompressionCaseInternal::ASTCBlockGeneratorInternal::AssignBlock128::__anon19987
144 NUM_WORDS = 128 / WORD_BITS
147 DE_STATIC_ASSERT(128 % WORD_BITS == 0);
160 const int wordNdx = ndx / WORD_BITS;
161 const int bitNdx = ndx % WORD_BITS;
175 const int word0Ndx = low / WORD_BITS;
176 const int word1Ndx = high / WORD_BITS;
177 const int lowNdxInW0 = low % WORD_BITS;
185 const int highNdxInW1 = high % WORD_BITS;
186 const int numBitsToSetInW0 = WORD_BITS
[all...]
/external/deqp/framework/common/
H A DtcuCompressedTexture.cpp1178 WORD_BITS = 8*WORD_BYTES, enumerator in enum:tcu::ASTCDecompressInternal::Block128::__anon19687
1179 NUM_WORDS = 128 / WORD_BITS
1182 DE_STATIC_ASSERT(128 % WORD_BITS == 0);
1198 return (m_words[ndx / WORD_BITS] >> (ndx % WORD_BITS)) & 1;
1210 const int word0Ndx = low / WORD_BITS;
1211 const int word1Ndx = high / WORD_BITS;
1216 return (m_words[word0Ndx] & ((((Word)1 << high%WORD_BITS << 1) - 1))) >> ((Word)low % WORD_BITS);
1221 return (deUint32)(m_words[word0Ndx] >> (low%WORD_BITS)) |
[all...]

Completed in 64 milliseconds