Home
last modified time | relevance | path

Searched refs:AbsoluteDifference (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp142 AbsoluteDifference(CachedExtent.first, Intersection.first); in readBytes()
302 AbsoluteDifference(WriteInterval.first, Intersection.first); in fixCacheAfterWrite()
304 AbsoluteDifference(CachedInterval.first, Intersection.first); in fixCacheAfterWrite()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonFixupHwLoops.cpp148 unsigned Diff = AbsoluteDifference(InstOffset, in fixupLoopInstrs()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/FileCheck/
H A DFileCheck.cpp266 uint64_t AbsoluteDifference = RightValue - LeftValue; in operator -() local
269 if (AbsoluteDifference > MaxInt64) { in operator -()
270 AbsoluteDifference -= MaxInt64; in operator -()
275 if (AbsoluteDifference > static_cast<uint64_t>(-(MinInt64 - Result))) in operator -()
277 Result -= static_cast<int64_t>(AbsoluteDifference); in operator -()
281 return ExpressionValue(-static_cast<int64_t>(AbsoluteDifference)); in operator -()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/XRay/
H A DProfile.cpp357 auto FunctionLocalTime = AbsoluteDifference(Top.Timestamp, E.TSC); in profileFromTrace()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DMathExtras.h794 std::enable_if_t<std::is_unsigned<T>::value, T> AbsoluteDifference(T X, T Y) {