OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_curPos
(Results
1 - 4
of
4
) sorted by null
/external/deqp/executor/
xeCallQueue.cpp
174
,
m_curPos
(0)
180
DE_ASSERT(
m_curPos
+ numBytes <= m_call->getDataSize());
181
deMemcpy(bytes, m_call->getData()+
m_curPos
, numBytes);
182
m_curPos
+= numBytes;
187
DE_ASSERT(
m_curPos
+ numBytes <= m_call->getDataSize());
189
const deUint8* ptr = m_call->getData()+
m_curPos
;
190
m_curPos
+= numBytes;
197
return
m_curPos
== m_call->getDataSize();
xeCallQueue.hpp
73
CallReader (void) : m_call(DE_NULL),
m_curPos
(0) {}
84
size_t
m_curPos
;
/external/deqp/framework/referencerenderer/
rrRasterizer.hpp
161
tcu::IVec2
m_curPos
; //!< Current rasterization position.
201
tcu::IVec2
m_curPos
; //!< Current rasterization position.
282
tcu::IVec2
m_curPos
; //!< Current rasterization position.
rrRasterizer.cpp
533
m_curPos
= m_bboxMin;
550
while (
m_curPos
.y() <= m_bboxMax.y() && packetNdx < maxFragmentPackets)
552
const int x0 =
m_curPos
.x();
553
const int y0 =
m_curPos
.y();
594
m_curPos
.x() += 2;
595
if (
m_curPos
.x() > m_bboxMax.x())
597
m_curPos
.y() += 2;
598
m_curPos
.x() = m_bboxMin.x();
730
while (
m_curPos
.y() <= m_bboxMax.y() && packetNdx < maxFragmentPackets)
732
const int x0 =
m_curPos
.x()
[
all
...]
Completed in 85 milliseconds