HomeSort by relevance Sort by last modified time
    Searched refs:deUint64 (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /external/deqp/framework/delibs/deutil/
deClock.h 38 deUint64 deGetMicroseconds (void);
44 deUint64 deGetTime (void);
deClock.c 37 deUint64 deGetMicroseconds (void)
52 return (deUint64)currTime.tv_sec*1000000 + ((deUint64)currTime.tv_nsec/1000);
59 return (deUint64)currTime.tv_sec*1000000 + ((deUint64)currTime.tv_nsec/1000);
64 return (deUint64)currTime.tv_sec*1000000 + (deUint64)currTime.tv_usec;
71 deUint64 deGetTime (void)
73 return (deUint64)time(DE_NULL);
  /external/deqp/framework/referencerenderer/
rrFragmentPacket.hpp 53 deUint64 coverage; //!< Coverage mask.
rrRasterizer.hpp 43 inline deUint64 getCoverageBit (int numSamples, int x, int y, int sampleNdx)
45 const int numBits = sizeof(deUint64)*8;
53 inline deUint64 getCoverageFragmentSampleBits (int numSamples, int x, int y)
56 const deUint64 fragMask = (1ull << numSamples) - 1;
61 inline deUint64 setCoverageValue (deUint64 mask, int numSamples, int x, int y, int sampleNdx, bool val)
63 const deUint64 bit = getCoverageBit(numSamples, x, y, sampleNdx);
68 inline bool getCoverageValue (deUint64 mask, int numSamples, int x, int y, int sampleNdx)
74 inline bool getCoverageAnyFragmentSampleLive (deUint64 mask, int numSamples, int x, int y)
  /external/deqp/framework/common/
tcuTestCaseWrapper.hpp 47 deUint64 m_testStartTime; //!< For logging test case durations.
tcuFormatUtil.hpp 42 Hex (deUint64 value_) : value(value_) {}
56 char buf[sizeof(deUint64)*2 + 3];
63 deUint64 value;
77 deUint64 bit;
80 BitDesc (deUint64 bit_, const char* name_) : bit(bit_), name(name_) {}
89 Bitfield (deUint64 value, const BitDesc* begin, const BitDesc* end)
98 deUint64 bitsLeft = m_value;
121 deUint64 m_value;
242 template <int Bits> inline deUint64 makeMask64 (void) { return (1ull<<Bits)-1; }
243 template <> inline deUint64 makeMask64<64> (void) { return ~0ull;
    [all...]
tcuFloat.hpp 133 typedef Float<deUint64, 11, 52, 1023, FLOAT_HAS_SIGN|FLOAT_SUPPORT_DENORM> Float64; //!< IEEE 754 64-bit floating-point value
160 deUint64 u64;
161 memcpy(&u64, &value, sizeof(deUint64));
178 deUint64 u64 = Float64::convert(*this).bits();
179 memcpy(&v, &u64, sizeof(deUint64));
269 deUint64 m = other.mantissa();
285 deUint64 half = (1ull << (bitDiff - 1)) - 1;
286 deUint64 bias = (m >> bitDiff) & 1;
302 deUint64 half = (1ull << (bitDiff - 1)) - 1;
303 deUint64 bias = (m >> bitDiff) & 1
    [all...]
tcuCPUWarmup.cpp 99 const deUint64 startTime = deGetMicroseconds();
125 const deUint64 startTime = deGetMicroseconds();
tcuThreadUtil.hpp 116 Message (deUint64 time, const char* message) : m_time(time), m_message(message) {}
118 deUint64 getTime (void) const { return m_time; }
124 deUint64 m_time;
tcuFloatFormat.cpp 239 const deUint64 bits = deUint64(deLdExp(frac, shift));
240 const deUint64 whole = bits >> m_fractionBits;
241 const deUint64 fraction = bits & ((deUint64(1) << m_fractionBits) - 1);
244 const deUint64 aligned = fraction << (numDigits * 4 - m_fractionBits);
  /external/deqp/framework/delibs/debase/
deRandom.h 49 deUint64 deRandom_getUint64 (deRandom* rnd);
deRandom.c 67 deUint64 deRandom_getUint64 (deRandom* rnd)
69 deUint64 x = deRandom_getUint32(rnd);
deInt32.h 383 deUint64 res = ((deUint64)a * (deUint64)b) >> shift;
384 DE_ASSERT(res == (deUint64)(deUint32)res);
395 DE_ASSERT((deUint64) a != 0x8000000000000000LL);
401 if (((deUint64)a >> 32) != 0)
423 deUint64 key = a;
437 DE_INLINE int deUint64Hash (deUint64 v) { return deInt64Hash((deInt64)v); }
444 DE_INLINE deBool deUint64Equal (deUint64 a, deUint64 b) { return (a == b);
    [all...]
  /external/deqp/framework/qphelper/
qpWatchDog.c 53 volatile deUint64 resetTime;
54 volatile deUint64 lastTouchTime;
69 deUint64 curTime = deGetMicroseconds();
120 deUint64 curTime = deGetMicroseconds();
  /external/deqp/modules/glshared/
glsStateChangePerfTestCases.cpp 61 deUint64 min;
62 deUint64 max;
65 ResultStats calculateStats (const vector<deUint64>& values)
69 deUint64 sum = 0;
87 vector<deUint64> sortedValues = values;
166 double calculateVariance (const vector<deUint64>& values, double avg)
179 deUint64 findMin (const vector<deUint64>& values)
181 deUint64 min = ~0ull;
189 deUint64 findMax (const vector<deUint64>& values
    [all...]
glsCalibration.hpp 81 deUint64 getTotalTime (void) const;
86 std::vector<deUint64> frameTimes;
161 void recordIteration (deUint64 frameTime);
glsStateChangePerfTestCases.hpp 104 std::vector<deUint64> m_interleavedResults;
105 std::vector<deUint64> m_batchedResults;
130 std::vector<deUint64> m_results;
  /external/deqp/execserver/
xsExecutionServer.hpp 121 deUint64 m_lastKeepAliveSent;
122 deUint64 m_lastKeepAliveReceived;
xsTestDriver.hpp 73 deUint64 m_lastProcessDataTime;
  /external/deqp/modules/gles2/functional/
es2fFlushFinishTests.cpp 81 const deUint64 startTime = deGetMicroseconds();
89 if (deGetMicroseconds()-startTime >= deUint64(1000*milliseconds))
125 deUint64 waitTime;
126 deUint64 readPixelsTime;
271 deUint64 prevDuration = 0;
279 deUint64 curDuration;
282 const deUint64 startTime = deGetMicroseconds();
332 std::vector<Vec2> getPointsFromSamples (const std::vector<FlushFinishCase::Sample>& samples, const deUint64 FlushFinishCase::Sample::*field)
453 deUint64 waitStartTime;
454 deUint64 readStartTime
    [all...]
  /external/deqp/framework/platform/android/
tcuAndroidExecService.hpp 70 deUint64 m_launchTime;
71 deUint64 m_lastQueryTime;
  /external/deqp/modules/gles3/functional/
es3fFlushFinishTests.cpp 80 const deUint64 startTime = deGetMicroseconds();
88 if (deGetMicroseconds()-startTime >= deUint64(1000*milliseconds))
124 deUint64 waitTime;
125 deUint64 readPixelsTime;
286 const deUint64 targetDurationUs = MAX_SAMPLE_DURATION_US/100;
287 deUint64 prevDuration = 0;
295 deUint64 curDuration;
300 const deUint64 startTime = deGetMicroseconds();
340 deUint64 prevDuration = 0;
350 deUint64 curDuration
    [all...]
  /external/deqp/modules/gles3/performance/
es3pBufferDataUploadTests.cpp 117 deUint64 totalDuration;
118 deUint64 fitResponseDuration; // used for fitting
123 deUint64 mapDuration;
124 deUint64 unmapDuration;
125 deUint64 writeDuration;
126 deUint64 allocDuration;
127 deUint64 totalDuration;
129 deUint64 fitResponseDuration;
134 deUint64 mapDuration;
135 deUint64 unmapDuration
    [all...]
  /external/deqp/framework/delibs/decpp/
deRandom.hpp 52 deUint64 getUint64 (void) { deUint32 upper = getUint32(); return (deUint64)upper << 32ull | (deUint64)getUint32(); }
  /external/deqp/executor/
xeTcpIpLink.hpp 56 deUint64 getLastKeepaliveRecevied (void) const;
63 volatile deUint64 m_lastKeepaliveReceived;

Completed in 718 milliseconds

1 2 3 4