/external/deqp/framework/delibs/deutil/ |
D | deClock.c | 37 deUint64 deGetMicroseconds (void) in deGetMicroseconds() 52 return (deUint64)currTime.tv_sec*1000000 + ((deUint64)currTime.tv_nsec/1000); in deGetMicroseconds() 59 return (deUint64)currTime.tv_sec*1000000 + ((deUint64)currTime.tv_nsec/1000); in deGetMicroseconds() 64 return (deUint64)currTime.tv_sec*1000000 + (deUint64)currTime.tv_usec; in deGetMicroseconds() 71 deUint64 deGetTime (void) in deGetTime() 73 return (deUint64)time(DE_NULL); in deGetTime()
|
D | deClock.h | 38 deUint64 deGetMicroseconds (void); 44 deUint64 deGetTime (void);
|
/external/deqp/framework/common/ |
D | tcuSeedBuilder.cpp | 157 (deUint8)(((deUint64)val) & 0xFFu), in operator <<() 158 (deUint8)((((deUint64)val) >> 8) & 0xFFu), in operator <<() 159 (deUint8)((((deUint64)val) >> 16) & 0xFFu), in operator <<() 160 (deUint8)((((deUint64)val) >> 24) & 0xFFu), in operator <<() 162 (deUint8)((((deUint64)val) >> 32) & 0xFFu), in operator <<() 163 (deUint8)((((deUint64)val) >> 40) & 0xFFu), in operator <<() 164 (deUint8)((((deUint64)val) >> 48) & 0xFFu), in operator <<() 165 (deUint8)((((deUint64)val) >> 56) & 0xFFu), in operator <<() 172 SeedBuilder& operator<< (SeedBuilder& builder, deUint64 value) in operator <<() 174 const deUint64 val = value ^ 4664937258000467599ull; in operator <<() [all …]
|
D | tcuFormatUtil.hpp | 42 Hex (deUint64 value_) : value(value_) {} in Hex() 56 char buf[sizeof(deUint64)*2 + 3]; in toString() 63 deUint64 value; 77 deUint64 bit; 80 BitDesc (deUint64 bit_, const char* name_) : bit(bit_), name(name_) {} in BitDesc() 89 Bitfield (deUint64 value, const BitDesc* begin, const BitDesc* end) in Bitfield() 98 deUint64 bitsLeft = m_value; in toStream() 121 deUint64 m_value; 243 template <int Bits> inline deUint64 makeMask64 (void) { return (1ull<<Bits)-1; } in makeMask64() 244 template <> inline deUint64 makeMask64<64> (void) { return ~0ull; } in makeMask64() [all …]
|
D | tcuFloat.hpp | 133 typedef Float<deUint64, 11, 52, 1023, FLOAT_HAS_SIGN|FLOAT_SUPPORT_DENORM> Float64; //!< IEEE 754 6… 160 deUint64 u64; in Float() 161 memcpy(&u64, &value, sizeof(deUint64)); in Float() 178 deUint64 u64 = Float64::convert(*this).bits(); in asDouble() 179 memcpy(&v, &u64, sizeof(deUint64)); in asDouble() 269 deUint64 m = other.mantissa(); in convert() 285 deUint64 half = (1ull << (bitDiff - 1)) - 1; in convert() 286 deUint64 bias = (m >> bitDiff) & 1; in convert() 302 deUint64 half = (1ull << (bitDiff - 1)) - 1; in convert() 303 deUint64 bias = (m >> bitDiff) & 1; in convert()
|
D | tcuFloatFormat.cpp | 239 const deUint64 bits = deUint64(deLdExp(frac, shift)); in floatToHex() 240 const deUint64 whole = bits >> m_fractionBits; in floatToHex() 241 const deUint64 fraction = bits & ((deUint64(1) << m_fractionBits) - 1); in floatToHex() 244 const deUint64 aligned = fraction << (numDigits * 4 - m_fractionBits); in floatToHex()
|
D | tcuThreadUtil.hpp | 116 Message (deUint64 time, const char* message) : m_time(time), m_message(message) {} in Message() 118 deUint64 getTime (void) const { return m_time; } in getTime() 124 deUint64 m_time;
|
/external/deqp/modules/glshared/ |
D | glsStateChangePerfTestCases.cpp | 61 deUint64 min; 62 deUint64 max; 65 ResultStats calculateStats (const vector<deUint64>& values) in calculateStats() 69 deUint64 sum = 0; in calculateStats() 87 vector<deUint64> sortedValues = values; in calculateStats() 166 double calculateVariance (const vector<deUint64>& values, double avg) in calculateVariance() 179 deUint64 findMin (const vector<deUint64>& values) in findMin() 181 deUint64 min = ~0ull; in findMin() 189 deUint64 findMax (const vector<deUint64>& values) in findMax() 191 deUint64 max = 0; in findMax() [all …]
|
D | glsStateChangePerfTestCases.hpp | 104 std::vector<deUint64> m_interleavedResults; 105 std::vector<deUint64> m_batchedResults; 130 std::vector<deUint64> m_results;
|
D | glsCalibration.hpp | 81 deUint64 getTotalTime (void) const; 86 std::vector<deUint64> frameTimes; 161 void recordIteration (deUint64 frameTime);
|
D | glsCalibration.cpp | 181 frameTimes[frameTimes.size()-2] >= (deUint64)frameShortcutTime && in isDone() 182 frameTimes[frameTimes.size()-1] >= (deUint64)frameShortcutTime); in isDone() 185 deUint64 MeasureState::getTotalTime (void) const in getTotalTime() 187 deUint64 time = 0; in getTotalTime() 253 void TheilSenCalibrator::recordIteration (deUint64 iterationTime) in recordIteration()
|
/external/deqp/framework/referencerenderer/ |
D | rrRasterizer.hpp | 43 inline deUint64 getCoverageBit (int numSamples, int x, int y, int sampleNdx) in getCoverageBit() 45 const int numBits = sizeof(deUint64)*8; in getCoverageBit() 53 inline deUint64 getCoverageFragmentSampleBits (int numSamples, int x, int y) in getCoverageFragmentSampleBits() 56 const deUint64 fragMask = (1ull << numSamples) - 1; in getCoverageFragmentSampleBits() 61 inline deUint64 setCoverageValue (deUint64 mask, int numSamples, int x, int y, int sampleNdx, bool … in setCoverageValue() 63 const deUint64 bit = getCoverageBit(numSamples, x, y, sampleNdx); in setCoverageValue() 68 inline bool getCoverageValue (deUint64 mask, int numSamples, int x, int y, int sampleNdx) in getCoverageValue() 74 inline bool getCoverageAnyFragmentSampleLive (deUint64 mask, int numSamples, int x, int y) in getCoverageAnyFragmentSampleLive()
|
/external/deqp/modules/gles3/functional/ |
D | es3fFlushFinishTests.cpp | 87 const deUint64 startTime = deGetMicroseconds(); in busyWait() 95 if (deGetMicroseconds()-startTime >= deUint64(1000*milliseconds)) in busyWait() 131 deUint64 submitTime; 132 deUint64 waitTime; 133 deUint64 readPixelsTime; 296 const deUint64 targetDurationUs = MAX_SAMPLE_DURATION_US/100; in calibrate() 297 deUint64 prevDuration = 0; in calibrate() 305 deUint64 curDuration; in calibrate() 311 const deUint64 startTime = deGetMicroseconds(); in calibrate() 350 deUint64 prevDuration = 0; in calibrate() [all …]
|
/external/deqp/framework/delibs/debase/ |
D | deInt32.h | 340 DE_INLINE int dePop64 (deUint64 a) in dePop64() 388 deUint64 res = ((deUint64)a * (deUint64)b) >> shift; in deSafeMuluAsr32() 389 DE_ASSERT(res == (deUint64)(deUint32)res); in deSafeMuluAsr32() 400 DE_ASSERT((deUint64) a != 0x8000000000000000LL); in deAbs64() 406 if (((deUint64)a >> 32) != 0) in deClz64() 428 deUint64 key = a; in deInt64Hash() 442 DE_INLINE int deUint64Hash (deUint64 v) { return deInt64Hash((deInt64)v); } in deUint64Hash() 449 DE_INLINE deBool deUint64Equal (deUint64 a, deUint64 b) { return (a == b); } in deUint64Equal()
|
D | deRandom.c | 67 deUint64 deRandom_getUint64 (deRandom* rnd) in deRandom_getUint64() 69 deUint64 x = deRandom_getUint32(rnd); in deRandom_getUint64()
|
/external/deqp/modules/gles3/performance/ |
D | es3pBufferDataUploadTests.cpp | 98 deUint64 totalDuration; 99 deUint64 fitResponseDuration; // used for fitting 104 deUint64 mapDuration; 105 deUint64 unmapDuration; 106 deUint64 writeDuration; 107 deUint64 allocDuration; 108 deUint64 totalDuration; 110 deUint64 fitResponseDuration; 115 deUint64 mapDuration; 116 deUint64 unmapDuration; [all …]
|
/external/deqp/framework/qphelper/ |
D | qpWatchDog.c | 53 volatile deUint64 resetTime; 54 volatile deUint64 lastTouchTime; 69 deUint64 curTime = deGetMicroseconds(); in watchDogThreadFunc() 120 deUint64 curTime = deGetMicroseconds(); in qpWatchDog_reset()
|
/external/deqp/modules/gles2/functional/ |
D | es2fFlushFinishTests.cpp | 82 const deUint64 startTime = deGetMicroseconds(); in busyWait() 90 if (deGetMicroseconds()-startTime >= deUint64(1000*milliseconds)) in busyWait() 126 deUint64 waitTime; 127 deUint64 readPixelsTime; 272 deUint64 prevDuration = 0; in calibrate() 280 deUint64 curDuration; in calibrate() 283 const deUint64 startTime = deGetMicroseconds(); in calibrate() 333 …FromSamples (const std::vector<FlushFinishCase::Sample>& samples, const deUint64 FlushFinishCase::… in getPointsFromSamples() 453 deUint64 waitStartTime; in iterate() 454 deUint64 readStartTime; in iterate() [all …]
|
/external/deqp/modules/gles2/performance/ |
D | es2pTextureUploadTests.cpp | 257 …std::vector<deUint64> sortedFrameTimes(measureState.frameTimes.begin(), measureState.frameTimes.en… in logResults() 259 vector<deUint64>::const_iterator first = sortedFrameTimes.begin(); in logResults() 260 vector<deUint64>::const_iterator last = sortedFrameTimes.end(); in logResults() 261 vector<deUint64>::const_iterator middle = first + (last - first) / 2; in logResults() 263 deUint64 medianFrameTime = *middle; in logResults() 267 deUint64 totalTime = measureState.getTotalTime(); in logResults() 345 deUint64 startTime = deGetMicroseconds(); in iterate() 352 deUint64 endTime = deGetMicroseconds(); in iterate() 353 deUint64 duration = endTime-startTime; in iterate() 393 deUint64 m_renderStart; [all …]
|
D | es2pDrawCallBatchingTests.cpp | 133 vector<deUint64> m_unbatchedSamplesUs; 134 vector<deUint64> m_batchedSamplesUs; 138 deUint64 renderUnbatched (void); 139 deUint64 renderBatched (void); 573 m_unbatchedSamplesUs = vector<deUint64>(); in deinit() 574 m_batchedSamplesUs = vector<deUint64>(); in deinit() 577 deUint64 DrawCallBatchingTest::renderUnbatched (void) in renderUnbatched() 580 deUint64 beginUs = 0; in renderUnbatched() 581 deUint64 endUs = 0; in renderUnbatched() 683 deUint64 DrawCallBatchingTest::renderBatched (void) in renderBatched() [all …]
|
/external/deqp/framework/delibs/decpp/ |
D | deRandom.hpp | 52 …deUint64 getUint64 (void) { deUint32 upper = getUint32(); return (deUint64)upper << 32ull | (… in getUint64()
|
D | deSharedPtr.cpp | 79 deUint64 startTime = deGetMicroseconds(); in run() 80 deUint64 cnt = 0; in run() 115 deUint64 startTime = deGetMicroseconds(); in run() 116 deUint64 cnt = 0; in run()
|
/external/deqp/modules/internal/ |
D | ditImageCompareTests.cpp | 71 deUint64 compareTime = 0; in iterate() 81 const deUint64 startTime = deGetMicroseconds(); in iterate() 124 deUint64 compareTime = 0; in iterate() 130 const deUint64 startTime = deGetMicroseconds(); in iterate()
|
/external/deqp/execserver/ |
D | xsExecutionServer.hpp | 121 deUint64 m_lastKeepAliveSent; 122 deUint64 m_lastKeepAliveReceived;
|
D | xsExecutionServer.cpp | 213 deUint64 lastIoTime = deGetMicroseconds(); in processSession() 249 deUint64 curTime = deGetMicroseconds(); in processSession() 312 deUint64 curTime = deGetMicroseconds(); in initKeepAlives() 324 deUint64 curTime = deGetMicroseconds(); in pollKeepAlives()
|