Lines Matching defs:after

929 	deUint64							positiveDiffWithOverflow(deUint64 before, deUint64 after, deUint64 mask = std::numeric_limits<deUint64>::max()) const;
1216 // Positive difference between both marks, advancing from before to after, taking overflow and the valid bit mask into account.
1217 deUint64 CalibratedTimestampTestInstance::positiveDiffWithOverflow (deUint64 before, deUint64 after, deUint64 mask) const
1220 DE_ASSERT(after <= mask);
1222 return ((before <= after) ? (after - before) : ((mask - (before - after)) + 1));
1307 const CalibratedTimestamp after = getCalibratedTimestamp(devDomain);
1308 const deUint64 diffNanos = getDeviceNanoseconds(positiveDiffWithOverflow(before.timestamp, after.timestamp, m_devTimestampMask));
1318 if (outOfRange(before.timestamp, written, after.timestamp))
1337 const deUint64 after = getHostNativeTimestamp(hostDomain);
1338 const deUint64 diffNanos = getHostNanoseconds(positiveDiffWithOverflow(before, after));
1345 if (outOfRange(before, vkTS.timestamp, after))
1376 const std::vector<CalibratedTimestamp> after = getCalibratedTimestamps(domains);
1380 const deUint64 devAfterTicks = after[0].timestamp;
1383 const deUint64 maxDevDiffNanos = std::max({ kDefaultToleranceNanos, before[0].deviation + after[0].deviation });
1394 const deUint64 hostAfter = getHostNanoseconds(after[1].timestamp);
1397 const deUint64 maxHostDiff = std::max({ kDefaultToleranceNanos, before[1].deviation + after[1].deviation });
2953 return ((ta.availability != 0)? tcu::TestStatus::fail("Availability bit nonzero after resetting query") : tcu::TestStatus::pass("Pass"));