/external/deqp/framework/referencerenderer/ |
D | rrRasterizer.cpp | 31 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 …]
|
D | rrRasterizer.hpp | 102 deInt64 a; 103 deInt64 b; 104 deInt64 c;
|
/external/deqp/framework/delibs/deutil/ |
D | deFile.c | 149 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 …]
|
D | deFile.h | 78 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);
|
D | deTimer.c | 314 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/ |
D | deInt32.h | 357 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 …]
|
D | deMath.h | 200 DE_INLINE deInt64 deRoundFloatToInt64 (float x) { if(x >= 0.0f) return (deInt64)(x + 0.5f); else… in deRoundFloatToInt64()
|
D | deDefs.h | 142 typedef signed __int64 deInt64; typedef 161 typedef int64_t deInt64; typedef
|
D | deDefs.c | 35 DE_STATIC_ASSERT(sizeof(deInt64) == 8);
|
/external/deqp/modules/glshared/ |
D | glsShaderPerformanceMeasurer.cpp | 304 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/ |
D | es2pShaderCompilationCases.cpp | 418 deInt64 sourceSetTime; 419 deInt64 vertexCompileTime; 420 deInt64 fragmentCompileTime; 421 deInt64 programLinkTime; 422 deInt64 firstInputSetTime; 423 deInt64 firstDrawTime; 425 deInt64 secondInputSetTime; 426 deInt64 secondDrawTime; 428 …deInt64 firstPhase (void) const { return sourceSetTime + vertexCompileTime + fragmentCompileTim… in firstPhase() 429 deInt64 secondPhase (void) const { return secondInputSetTime + secondDrawTime; } in secondPhase() [all …]
|
D | es2pTextureUploadTests.cpp | 269 deInt64 numTexturesDrawn = measureState.numDrawCalls * numFrames; in logResults() 270 deInt64 numPixels = (deInt64)m_texSize * (deInt64)m_texSize * numTexturesDrawn; in logResults()
|
/external/deqp/modules/gles3/performance/ |
D | es3pShaderCompilationCases.cpp | 418 deInt64 sourceSetTime; 419 deInt64 vertexCompileTime; 420 deInt64 fragmentCompileTime; 421 deInt64 programLinkTime; 422 deInt64 firstInputSetTime; 423 deInt64 firstDrawTime; 425 deInt64 secondInputSetTime; 426 deInt64 secondDrawTime; 428 …deInt64 firstPhase (void) const { return sourceSetTime + vertexCompileTime + fragmentCompileTim… in firstPhase() 429 deInt64 secondPhase (void) const { return secondInputSetTime + secondDrawTime; } in secondPhase() [all …]
|
/external/deqp/framework/common/ |
D | tcuCPUWarmup.cpp | 95 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()
|
D | tcuTestLog.hpp | 101 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()
|
D | tcuRandomValueIterator.hpp | 55 template <> inline deInt64 getRandomValue<deInt64> (de::Random& rnd) { return (deInt64)rnd.getUint… in getRandomValue()
|
D | tcuTestCaseWrapper.cpp | 97 const deInt64 duration = deGetMicroseconds()-m_testStartTime; in deinitTestCase()
|
/external/deqp/execserver/ |
D | xsPosixTestProcess.cpp | 69 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()
|
D | xsPosixFileReader.cpp | 69 deInt64 numRead = 0; in run() 73 deFileResult result = deFile_read(m_file, &tmpBuf[0], (deInt64)tmpBuf.size(), &numRead); in run()
|
/external/deqp/modules/internal/ |
D | ditTestLogTests.cpp | 62 …<< TestLog::Sample << std::numeric_limits<deInt64>::max() << std::numeric_limits<deInt64>::min() <… in iterate()
|
/external/deqp/execserver/tools/ |
D | xsTest.cpp | 253 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/ |
D | deFileStream.c | 36 deInt64 _numRead = 0; in fileIOStream_read() 69 deInt64 _numWritten = 0; in fileIOStream_write()
|
/external/deqp/executor/ |
D | xeTestCaseResult.hpp | 173 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/ |
D | qpTestLog.h | 200 …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/ |
D | tcuWin32EGLNativeDisplayFactory.cpp | 283 const deInt64 timeSinceVisibleUs = (deInt64)(deGetMicroseconds()-m_setVisibleTime); in readScreenPixels() 285 if (timeSinceVisibleUs < (deInt64)WAIT_WINDOW_VISIBLE_MS*1000) in readScreenPixels()
|