|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
include/llvm/Support/JSON.h 418 D <= double(std::numeric_limits<int64_t>::max())))
include/llvm/Support/MathExtras.h 944 return UX > (static_cast<U>(std::numeric_limits<T>::max()) + U(1)) / UY;
946 return UX > (static_cast<U>(std::numeric_limits<T>::max())) / UY;
lib/CodeGen/MachineCombiner.cpp 464 long PrevLatencyDiff = std::numeric_limits<long>::max();
lib/DebugInfo/DWARF/DWARFFormValue.cpp 687 uint64_t(std::numeric_limits<int64_t>::max()) < Value.uval))
lib/Support/JSON.cpp 354 I <= std::numeric_limits<int64_t>::max()) {
lib/Target/AArch64/AArch64MachineFunctionInfo.h 196 int64_t MinOffset = std::numeric_limits<int64_t>::max();
lib/Transforms/Scalar/LoopStrengthReduce.cpp 1154 int64_t MinOffset = std::numeric_limits<int64_t>::max();
lib/Transforms/Utils/LowerSwitch.cpp 522 std::numeric_limits<int64_t>::max()};
537 if (High != std::numeric_limits<int64_t>::max()) {
538 IntRange R = { High + 1, std::numeric_limits<int64_t>::max() };
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h 72 static const int64_t Symbolic = std::numeric_limits<int64_t>::max();
tools/clang/lib/AST/ExprConstant.cpp10349 auto CharUnitsMax = std::numeric_limits<CharUnits::QuantityType>::max();
tools/clang/lib/AST/Interp/Integral.h 66 static const auto Max = std::numeric_limits<T>::max();
tools/dsymutil/DwarfStreamer.cpp 479 MCDwarfLineAddr::Encode(*MC, Params, std::numeric_limits<int64_t>::max(), 0,
579 MCDwarfLineAddr::Encode(*MC, Params, std::numeric_limits<int64_t>::max(),
591 MCDwarfLineAddr::Encode(*MC, Params, std::numeric_limits<int64_t>::max(), 0,
tools/lldb/unittests/Utility/StreamTest.cpp 302 s << std::numeric_limits<int64_t>::max();
556 auto bytes = s.PutSLEB128(std::numeric_limits<int64_t>::max());
tools/llvm-exegesis/lib/Latency.cpp 187 int64_t MinValue = std::numeric_limits<int64_t>::max();
unittests/ADT/ArrayRefTest.cpp 81 ArrayRef<char> AR(nullptr, std::numeric_limits<ptrdiff_t>::max());
unittests/ADT/PointerEmbeddedIntTest.cpp 55 IMax = std::numeric_limits<intptr_t>::max() >> 1,
57 EXPECT_EQ(std::numeric_limits<intptr_t>::max() >> 1, IMax);
unittests/MC/MCInstPrinter.cpp 67 formatHex(std::numeric_limits<int64_t>::max()));
unittests/Support/CheckedArithmeticTest.cpp 9 const int64_t Max = std::numeric_limits<int64_t>::max();
27 const int64_t Max = std::numeric_limits<int64_t>::max();
36 const int64_t Max = std::numeric_limits<int64_t>::max();
unittests/Support/MathExtrasTest.cpp 149 EXPECT_EQ(std::numeric_limits<int64_t>::max(), maxIntN(64));
506 auto MaxValue = std::numeric_limits<TypeParam>::max();
513 auto MaxValue = std::numeric_limits<TypeParam>::max();
529 EXPECT_EQ(Result, std::numeric_limits<TypeParam>::max());
554 auto MaxValue = std::numeric_limits<TypeParam>::max();
562 auto MaxValue = std::numeric_limits<TypeParam>::max();
582 auto MaxValue = std::numeric_limits<TypeParam>::max();
598 auto MaxValue = std::numeric_limits<TypeParam>::max();
utils/benchmark/src/benchmark_register.h 17 static const T kmax = std::numeric_limits<T>::max();
utils/benchmark/src/commandlineflags.cc 42 if (long_value == std::numeric_limits<long>::max() ||