Home
last modified time | relevance | path

Searched refs:deInt64 (Results 1 – 25 of 45) sorted by relevance

12

/external/deqp/framework/referencerenderer/
DrrRasterizer.cpp31 inline deInt64 toSubpixelCoord (float v) in toSubpixelCoord()
33 return (deInt64)(v * (1<<RASTERIZER_SUBPIXEL_BITS) + (v < 0.f ? -0.5f : 0.5f)); in toSubpixelCoord()
36 inline deInt64 toSubpixelCoord (deInt32 v) in toSubpixelCoord()
41 inline deInt32 ceilSubpixelToPixelCoord (deInt64 coord, bool fillEdge) in ceilSubpixelToPixelCoord()
49 inline deInt32 floorSubpixelToPixelCoord (deInt64 coord, bool fillEdge) in floorSubpixelToPixelCoord()
57 …lFill, const VerticalFill verticalFill, const deInt64 x0, const deInt64 y0, const deInt64 x1, cons… in initEdgeCCW()
61 const deInt64 xd = x1-x0; in initEdgeCCW()
62 const deInt64 yd = y1-y0; in initEdgeCCW()
84 static inline deInt64 evaluateEdge (const EdgeFunction& edge, const deInt64 x, const deInt64 y) in evaluateEdge()
89 static inline bool isInsideCCW (const EdgeFunction& edge, const deInt64 edgeVal) in isInsideCCW()
[all …]
DrrRasterizer.hpp102 deInt64 a;
103 deInt64 b;
104 deInt64 c;
/external/deqp/framework/delibs/deutil/
DdeFile.c149 deBool deFile_seek (deFile* file, deFilePosition base, deInt64 offset) in deFile_seek()
154 deInt64 deFile_getPosition (const deFile* file) in deFile_getPosition()
159 deInt64 deFile_getSize (const deFile* file) in deFile_getSize()
161 deInt64 size = 0; in deFile_getSize()
162 deInt64 curPos = lseek(file->fd, 0, SEEK_CUR); in deFile_getSize()
176 static deFileResult mapReadWriteResult (deInt64 numBytes) in mapReadWriteResult()
186 deFileResult deFile_read (deFile* file, void* buf, deInt64 bufSize, deInt64* numReadPtr) in deFile_read()
188 deInt64 numRead = read(file->fd, buf, bufSize); in deFile_read()
196 deFileResult deFile_write (deFile* file, const void* buf, deInt64 bufSize, deInt64* numWrittenPtr) in deFile_write()
198 deInt64 numWritten = write(file->fd, buf, bufSize); in deFile_write()
[all …]
DdeFile.h78 deInt64 deFile_getPosition (const deFile* file);
79 deBool deFile_seek (deFile* file, deFilePosition base, deInt64 offset);
80 deInt64 deFile_getSize (const deFile* file);
82 deFileResult deFile_read (deFile* file, void* buf, deInt64 bufSize, deInt64* numRead);
83 deFileResult deFile_write (deFile* file, const void* buf, deInt64 bufSize, deInt64* numWritten);
DdeTimer.c314 deInt64 lastCallback = (deInt64)deGetMicroseconds(); in timerThread()
333 sleepTime = thread->interval - (int)(((deInt64)deGetMicroseconds()-lastCallback)/1000); in timerThread()
337 lastCallback = (deInt64)deGetMicroseconds(); in timerThread()
/external/deqp/framework/delibs/debase/
DdeInt32.h357 DE_ASSERT((deInt64)res == ((deInt64)a * (deInt64)b)); in deSafeMul32()
363 DE_ASSERT((deInt64)a + (deInt64)b == (deInt64)(a + b)); in deSafeAdd32()
371 return (deInt32)(((deInt64)a * (deInt64)b) >> shift); in deMulAsr32()
376 deInt64 res = ((deInt64)a * (deInt64)b) >> shift; in deSafeMulAsr32()
377 DE_ASSERT(res == (deInt64)(deInt32)res); in deSafeMulAsr32()
388 DE_INLINE deInt64 deMul32_32_64 (deInt32 a, deInt32 b) in deMul32_32_64()
390 return ((deInt64)a * (deInt64)b); in deMul32_32_64()
393 DE_INLINE deInt64 deAbs64 (deInt64 a) in deAbs64()
399 DE_INLINE int deClz64 (deInt64 a) in deClz64()
420 DE_INLINE deUint32 deInt64Hash (deInt64 a) in deInt64Hash()
[all …]
DdeMath.h200 DE_INLINE deInt64 deRoundFloatToInt64 (float x) { if(x >= 0.0f) return (deInt64)(x + 0.5f); else… in deRoundFloatToInt64()
DdeDefs.h142 typedef signed __int64 deInt64; typedef
161 typedef int64_t deInt64; typedef
DdeDefs.c35 DE_STATIC_ASSERT(sizeof(deInt64) == 8);
/external/deqp/modules/glshared/
DglsShaderPerformanceMeasurer.cpp304 deInt64 numQuadGrids = measureState.numDrawCalls * numFrames; in iterate()
305 deInt64 numPixels = (deInt64)m_viewportWidth * (deInt64)m_viewportHeight * numQuadGrids; in iterate()
306 deInt64 numVertices = (deInt64)getNumVertices(m_gridSizeX, m_gridSizeY) * numQuadGrids; in iterate()
324 deInt64 numQuadGrids = measureState.numDrawCalls * numFrames; in logMeasurementInfo()
325 deInt64 numPixels = (deInt64)m_viewportWidth * (deInt64)m_viewportHeight * numQuadGrids; in logMeasurementInfo()
326 deInt64 numVertices = (deInt64)getNumVertices(m_gridSizeX, m_gridSizeY) * numQuadGrids; in logMeasurementInfo()
/external/deqp/modules/gles2/performance/
Des2pShaderCompilationCases.cpp418 deInt64 sourceSetTime;
419 deInt64 vertexCompileTime;
420 deInt64 fragmentCompileTime;
421 deInt64 programLinkTime;
422 deInt64 firstInputSetTime;
423 deInt64 firstDrawTime;
425 deInt64 secondInputSetTime;
426 deInt64 secondDrawTime;
428deInt64 firstPhase (void) const { return sourceSetTime + vertexCompileTime + fragmentCompileTim… in firstPhase()
429 deInt64 secondPhase (void) const { return secondInputSetTime + secondDrawTime; } in secondPhase()
[all …]
Des2pTextureUploadTests.cpp269 deInt64 numTexturesDrawn = measureState.numDrawCalls * numFrames; in logResults()
270 deInt64 numPixels = (deInt64)m_texSize * (deInt64)m_texSize * numTexturesDrawn; in logResults()
/external/deqp/modules/gles3/performance/
Des3pShaderCompilationCases.cpp418 deInt64 sourceSetTime;
419 deInt64 vertexCompileTime;
420 deInt64 fragmentCompileTime;
421 deInt64 programLinkTime;
422 deInt64 firstInputSetTime;
423 deInt64 firstDrawTime;
425 deInt64 secondInputSetTime;
426 deInt64 secondDrawTime;
428deInt64 firstPhase (void) const { return sourceSetTime + vertexCompileTime + fragmentCompileTim… in firstPhase()
429 deInt64 secondPhase (void) const { return secondInputSetTime + secondDrawTime; } in secondPhase()
[all …]
/external/deqp/framework/common/
DtcuCPUWarmup.cpp95 deInt64 times[numMeasurements]; in warmupCPU()
101 times[i] = (deInt64)(deGetMicroseconds() - startTime); in warmupCPU()
115 deInt64 latestTimes[numConsecutiveMeasurementsRequired]; in warmupCPU()
127 …latestTimes[measurementNdx % numConsecutiveMeasurementsRequired] = (deInt64)(deGetMicroseconds() -… in warmupCPU()
DtcuTestLog.hpp101 typedef LogNumber<deInt64> Integer;
151 … (const char* name, const char* description, const char* unit, qpKeyValueTag tag, deInt64 value);
167 void writeSampleValue (deInt64 value);
204 SampleBuilder& operator<< (int v) { m_values.push_back(Value((deInt64)v)); return *this; } in operator <<()
205 SampleBuilder& operator<< (deInt64 v) { m_values.push_back(Value(v)); return *this; } in operator <<()
219 deInt64 int64;
225 Value (deInt64 v) : type(TYPE_INT64) { value.int64 = v; } in Value()
523 inline void LogNumber<deInt64>::write (TestLog& log) const in write()
DtcuRandomValueIterator.hpp55 template <> inline deInt64 getRandomValue<deInt64> (de::Random& rnd) { return (deInt64)rnd.getUint… in getRandomValue()
DtcuTestCaseWrapper.cpp97 const deInt64 duration = deGetMicroseconds()-m_testStartTime; in deinitTestCase()
/external/deqp/execserver/
DxsPosixTestProcess.cpp69 deInt64 pos = 0; in run()
71 while (m_run && pos < (deInt64)m_caseList.size()) in run()
73 deInt64 numWritten = 0; in run()
124 deInt64 numRead = 0; in run()
128 deFileResult result = deFile_read(m_file, &tmpBuf[0], (deInt64)tmpBuf.size(), &numRead); in run()
DxsPosixFileReader.cpp69 deInt64 numRead = 0; in run()
73 deFileResult result = deFile_read(m_file, &tmpBuf[0], (deInt64)tmpBuf.size(), &numRead); in run()
/external/deqp/modules/internal/
DditTestLogTests.cpp62 …<< TestLog::Sample << std::numeric_limits<deInt64>::max() << std::numeric_limits<deInt64>::min() <… in iterate()
/external/deqp/execserver/tools/
DxsTest.cpp253 deInt64 numRead = 0; in run()
255 while (deFile_read(m_curFile, &buf[0], (deInt64)sizeof(buf), &numRead) == DE_FILERESULT_SUCCESS) in run()
601 deInt64 numWritten = 0; in runProgram()
704 deInt64 numWrittenInBatch = 0; in runProgram()
961 deInt64 numRead = 0;
998 deInt64 numWritten = 0;
1016 deInt64 numRead = 0;
/external/deqp/framework/delibs/destream/
DdeFileStream.c36 deInt64 _numRead = 0; in fileIOStream_read()
69 deInt64 _numWritten = 0; in fileIOStream_write()
/external/deqp/executor/
DxeTestCaseResult.hpp173 NumericValue (deInt64 value) : m_type(TYPE_INT64) { m_value.int64 = value; } in NumericValue()
177 deInt64 getInt64 (void) const { DE_ASSERT(getType() == TYPE_INT64); return m_value.int64; } in getInt64()
184 deInt64 int64;
/external/deqp/framework/qphelper/
DqpTestLog.h200 …og, const char* name, const char* description, const char* unit, qpKeyValueTag tag, deInt64 value);
226 deBool qpTestLog_writeValueInteger (qpTestLog* log, deInt64 value);
/external/deqp/framework/platform/win32/
DtcuWin32EGLNativeDisplayFactory.cpp283 const deInt64 timeSinceVisibleUs = (deInt64)(deGetMicroseconds()-m_setVisibleTime); in readScreenPixels()
285 if (timeSinceVisibleUs < (deInt64)WAIT_WINDOW_VISIBLE_MS*1000) in readScreenPixels()

12