Searched refs:m_ndx (Results 1 - 3 of 3) sorted by relevance

/external/deqp/framework/delibs/decpp/
H A DdePoolArray.hpp109 PoolArrayIteratorBase (deUintptr ndx) : m_ndx(ndx) {}
112 deIntptr getNdx (void) const throw() { return m_ndx; }
115 deIntptr m_ndx; member in class:de::PoolArrayIteratorBase
132 const T* operator-> (void) const throw() { return (*m_array)[this->m_ndx]; }
133 const T& operator* (void) const throw() { return (*m_array)[this->m_ndx]; }
134 const T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; }
137 PoolArrayConstIterator<T, Alignment>& operator++ (void) { this->m_ndx += 1; return *this; }
138 PoolArrayConstIterator<T, Alignment>& operator-- (void) { this->m_ndx -= 1; return *this; }
141 PoolArrayConstIterator<T, Alignment> operator++ (int) { PoolArrayConstIterator<T, Alignment> copy(*this); this->m_ndx +=1; return copy; }
142 PoolArrayConstIterator<T, Alignment> operator-- (int) { PoolArrayConstIterator<T, Alignment> copy(*this); this->m_ndx
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fASTCDecompressionCases.cpp223 , m_ndx (0)
232 if (num == 0 || m_ndx >= m_length)
235 const int end = m_ndx + num;
236 const int numBitsToDst = de::max(0, de::min(m_length, end) - m_ndx);
237 const int low = m_ndx;
238 const int high = m_ndx + numBitsToDst - 1;
241 m_ndx += num;
253 int m_ndx; member in class:deqp::gles3::Functional::ASTCDecompressionCaseInternal::ASTCBlockGeneratorInternal::BitAssignAccessStream
/external/deqp/framework/common/
H A DtcuCompressedTexture.cpp1245 , m_ndx (0)
1252 if (num == 0 || m_ndx >= m_length)
1255 const int end = m_ndx + num;
1256 const int numBitsFromSrc = de::max(0, de::min(m_length, end) - m_ndx);
1257 const int low = m_ndx;
1258 const int high = m_ndx + numBitsFromSrc - 1;
1260 m_ndx += num;
1272 int m_ndx; member in class:tcu::ASTCDecompressInternal::BitAccessStream

Completed in 95 milliseconds