Lines Matching defs:before

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
1219 DE_ASSERT(before <= mask);
1222 return ((before <= after) ? (after - before) : ((mask - (before - after)) + 1));
1305 const CalibratedTimestamp before = getCalibratedTimestamp(devDomain);
1308 const deUint64 diffNanos = getDeviceNanoseconds(positiveDiffWithOverflow(before.timestamp, after.timestamp, m_devTimestampMask));
1318 if (outOfRange(before.timestamp, written, after.timestamp))
1335 const deUint64 before = getHostNativeTimestamp(hostDomain);
1338 const deUint64 diffNanos = getHostNanoseconds(positiveDiffWithOverflow(before, after));
1345 if (outOfRange(before, vkTS.timestamp, after))
1374 const std::vector<CalibratedTimestamp> before = getCalibratedTimestamps(domains);
1379 const deUint64 devBeforeTicks = before[0].timestamp;
1383 const deUint64 maxDevDiffNanos = std::max({ kDefaultToleranceNanos, before[0].deviation + after[0].deviation });
1393 const deUint64 hostBefore = getHostNanoseconds(before[1].timestamp);
1397 const deUint64 maxHostDiff = std::max({ kDefaultToleranceNanos, before[1].deviation + after[1].deviation });
2479 // synchronize the Clear commands before starting any copy
3536 // Reset timestamp query before copying results.
3539 // Fill buffer with 0s before copying results.