reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ADT/StringRef.h
  497     typename std::enable_if<std::numeric_limits<T>::is_signed, bool>::type
  531     typename std::enable_if<std::numeric_limits<T>::is_signed, bool>::type
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/MC/MCInstPrinter.cpp
   89       if (Value == std::numeric_limits<int64_t>::min())
   96       if (Value == std::numeric_limits<int64_t>::min())
lib/Support/JSON.cpp
  353   if (End == S.end() && I >= std::numeric_limits<int64_t>::min() &&
  354       I <= std::numeric_limits<int64_t>::max()) {
lib/Target/AArch64/AArch64ISelLowering.cpp
 9095   if (Immed == std::numeric_limits<int64_t>::min()) {
lib/Target/AArch64/AArch64MachineFunctionInfo.h
  196       int64_t MinOffset = std::numeric_limits<int64_t>::max();
  197       int64_t MaxOffset = std::numeric_limits<int64_t>::min();
lib/Target/AMDGPU/GCNMinRegStrategy.cpp
  119   T Max = std::numeric_limits<T>::min();
lib/Transforms/Scalar/LoopStrengthReduce.cpp
 1154   int64_t MinOffset = std::numeric_limits<int64_t>::max();
 1155   int64_t MaxOffset = std::numeric_limits<int64_t>::min();
 3887     if (Base.BaseOffset == std::numeric_limits<int64_t>::min() && Factor == -1)
 3899     if (Offset == std::numeric_limits<int64_t>::min() && Factor == -1)
 3937       if (F.UnfoldedOffset == std::numeric_limits<int64_t>::min() &&
lib/Transforms/Utils/LowerSwitch.cpp
  521     IntRange R = {std::numeric_limits<int64_t>::min(),
  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.cpp
10349   auto CharUnitsMax = std::numeric_limits<CharUnits::QuantityType>::max();
tools/clang/lib/AST/Interp/Integral.h
   65   static const auto Min = std::numeric_limits<T>::min();
   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
   54   PointerEmbeddedInt<intptr_t, std::numeric_limits<intptr_t>::digits>
   55       IMax = std::numeric_limits<intptr_t>::max() >> 1,
   56       IMin = std::numeric_limits<intptr_t>::min() >> 1;
unittests/Support/CheckedArithmeticTest.cpp
    9   const int64_t Max = std::numeric_limits<int64_t>::max();
   10   const int64_t Min = std::numeric_limits<int64_t>::min();
   27   const int64_t Max = std::numeric_limits<int64_t>::max();
   28   const int64_t Min = std::numeric_limits<int64_t>::min();
   36   const int64_t Max = std::numeric_limits<int64_t>::max();
   37   const int64_t Min = std::numeric_limits<int64_t>::min();
unittests/Support/MathExtrasTest.cpp
  506   auto MaxValue = std::numeric_limits<TypeParam>::max();
  513   auto MaxValue = std::numeric_limits<TypeParam>::max();
  520   auto MinValue = std::numeric_limits<TypeParam>::min();
  527   auto MinValue = std::numeric_limits<TypeParam>::min();
  540   auto MinValue = std::numeric_limits<TypeParam>::min();
  547   auto MinValue = std::numeric_limits<TypeParam>::min();
  554   auto MaxValue = std::numeric_limits<TypeParam>::max();
  555   auto MinValue = std::numeric_limits<TypeParam>::min();
  562   auto MaxValue = std::numeric_limits<TypeParam>::max();
  563   auto MinValue = std::numeric_limits<TypeParam>::min();
  582   auto MaxValue = std::numeric_limits<TypeParam>::max();
  583   auto MinValue = std::numeric_limits<TypeParam>::min();
  590   auto MinValue = std::numeric_limits<TypeParam>::min();
  597   auto MinValue = std::numeric_limits<TypeParam>::min();
  598   auto MaxValue = std::numeric_limits<TypeParam>::max();
usr/include/c++/7.4.0/chrono
  288 	{ return numeric_limits<_Rep>::lowest(); }
utils/TableGen/GlobalISelEmitter.cpp
  447                    int64_t RawValue = std::numeric_limits<int64_t>::min())
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() ||
   43       long_value == std::numeric_limits<long>::min() ||