Home
last modified time | relevance | path

Searched refs:m_begin (Results 1 – 3 of 3) sorted by relevance

/external/deqp/framework/common/
DtcuFormatUtil.hpp91 , m_begin (begin) in Bitfield()
99 for (const BitDesc* curDesc = m_begin; curDesc != m_end; curDesc++) in toStream()
122 const BitDesc* m_begin; member in tcu::Format::Bitfield
/external/catch2/docs/
Dmatchers.md90 int m_begin, m_end;
92 IntRange( int begin, int end ) : m_begin( begin ), m_end( end ) {}
96 return i >= m_begin && i <= m_end;
105 ss << "is between " << m_begin << " and " << m_end;
/external/deqp/modules/glshared/
DglsFboUtil.hpp55 const T* m_begin; member
58 const T* begin (void) const { return m_begin; } in begin()