Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/FileCheck/
H A DFileCheck.cpp193 int64_t MaxInt64 = std::numeric_limits<int64_t>::max(); in getAbsolute() local
195 if (SignedValue >= -MaxInt64) in getAbsolute()
199 SignedValue += MaxInt64; in getAbsolute()
201 return ExpressionValue(MaxInt64 + RemainingValueAbsolute); in getAbsolute()
267 uint64_t MaxInt64 = std::numeric_limits<int64_t>::max(); in operator -() local
269 if (AbsoluteDifference > MaxInt64) { in operator -()
270 AbsoluteDifference -= MaxInt64; in operator -()
271 int64_t Result = -MaxInt64; in operator -()