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
159
,
m_curPos
(0)
165
DE_ASSERT(
m_curPos
+ numBytes <= m_call->getDataSize());
166
deMemcpy(bytes, m_call->getData()+
m_curPos
, numBytes);
167
m_curPos
+= numBytes;
172
DE_ASSERT(
m_curPos
+ numBytes <= m_call->getDataSize());
174
const deUint8* ptr = m_call->getData()+
m_curPos
;
175
m_curPos
+= numBytes;
xeCallQueue.hpp
73
CallReader (void) : m_call(DE_NULL),
m_curPos
(0) {}
80
int
m_curPos
;
/external/deqp/framework/referencerenderer/
rrRasterizer.cpp
492
m_curPos
= m_bboxMin;
502
while (
m_curPos
.y() <= m_bboxMax.y() && packetNdx < maxFragmentPackets)
504
const int x0 =
m_curPos
.x();
505
const int y0 =
m_curPos
.y();
546
m_curPos
.x() += 2;
547
if (
m_curPos
.x() > m_bboxMax.x())
549
m_curPos
.y() += 2;
550
m_curPos
.x() = m_bboxMin.x();
678
while (
m_curPos
.y() <= m_bboxMax.y() && packetNdx < maxFragmentPackets)
680
const int x0 =
m_curPos
.x()
[
all
...]
rrRasterizer.hpp
161
tcu::IVec2
m_curPos
; //!< Current rasterization position.
199
tcu::IVec2
m_curPos
; //!< Current rasterization position.
Completed in 108 milliseconds