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.
200
tcu::IVec2
m_curPos
; //!< Current rasterization position.
281
tcu::IVec2
m_curPos
; //!< Current rasterization position.
rrRasterizer.cpp
528
m_curPos
= m_bboxMin;
545
while (
m_curPos
.y() <= m_bboxMax.y() && packetNdx < maxFragmentPackets)
547
const int x0 =
m_curPos
.x();
548
const int y0 =
m_curPos
.y();
589
m_curPos
.x() += 2;
590
if (
m_curPos
.x() > m_bboxMax.x())
592
m_curPos
.y() += 2;
593
m_curPos
.x() = m_bboxMin.x();
725
while (
m_curPos
.y() <= m_bboxMax.y() && packetNdx < maxFragmentPackets)
727
const int x0 =
m_curPos
.x()
[
all
...]
Completed in 57 milliseconds