|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
include/llvm/ADT/STLExtras.h 1421 std::size_t Index = std::numeric_limits<std::size_t>::max();
1436 : Result(std::numeric_limits<size_t>::max(), EndIter) {}
1445 assert(Result.Index != std::numeric_limits<size_t>::max());
include/llvm/Analysis/BlockFrequencyInfoImpl.h 92 return BlockMass(std::numeric_limits<uint64_t>::max());
97 bool isFull() const { return Mass == std::numeric_limits<uint64_t>::max(); }
107 Mass = Sum < Mass ? std::numeric_limits<uint64_t>::max() : Sum;
include/llvm/Analysis/Utils/Local.h 41 std::numeric_limits<uint64_t>::max() >> (64 - IntPtrWidth);
include/llvm/CodeGen/BasicTTIImpl.h 375 .getLimitedValue(std::numeric_limits<uint64_t>::max() - 1) + 1;
include/llvm/CodeGen/DbgEntityHistoryCalculator.h 34 static const EntryIndex NoEntry = std::numeric_limits<EntryIndex>::max();
include/llvm/CodeGen/PBQP/Graph.h 71 return std::numeric_limits<AdjEdgeIdx>::max();
include/llvm/ExecutionEngine/Orc/SymbolStringPool.h 129 std::numeric_limits<uintptr_t>::max()
133 (std::numeric_limits<uintptr_t>::max() - 1)
137 (std::numeric_limits<uintptr_t>::max() - 3)
include/llvm/IR/DebugInfoMetadata.h 2590 static const uint64_t MaxVal = std::numeric_limits<uint64_t>::max();
include/llvm/Object/ELF.h 405 if ((std::numeric_limits<uintX_t>::max() - Offset < Size) ||
include/llvm/Object/Minidump.h 204 if (Count > std::numeric_limits<size_t>::max() / sizeof(T))
include/llvm/Support/MathExtras.h 241 return std::numeric_limits<T>::max();
282 return std::numeric_limits<T>::max();
795 return std::numeric_limits<T>::max();
820 const T Max = std::numeric_limits<T>::max();
include/llvm/Support/ScaledNumber.h 84 if (Width == 64 || Digits <= std::numeric_limits<DigitsT>::max())
162 return std::make_pair(std::numeric_limits<DigitsT>::max(), MaxScale);
392 return std::make_pair(std::numeric_limits<DigitsT>::max(), RLgFloor);
523 return ScaledNumber(DigitsLimits::max(), ScaledNumbers::MaxScale);
784 if (*this >= Limits::max())
785 return Limits::max();
include/llvm/Transforms/IPO/LowerTypeTests.h 63 uint64_t Min = std::numeric_limits<uint64_t>::max();
lib/CodeGen/AsmPrinter/AccelTable.cpp 249 uint64_t PrevHash = std::numeric_limits<uint64_t>::max();
266 uint64_t PrevHash = std::numeric_limits<uint64_t>::max();
319 uint64_t PrevHash = std::numeric_limits<uint64_t>::max();
332 uint64_t PrevHash = std::numeric_limits<uint64_t>::max();
336 if (PrevHash != std::numeric_limits<uint64_t>::max() &&
lib/CodeGen/AsmPrinter/DwarfExpression.cpp 31 else if (Value == std::numeric_limits<uint64_t>::max()) {
lib/CodeGen/LiveDebugValues.cpp 570 std::numeric_limits<uint64_t>::max(),
lib/DebugInfo/DWARF/DWARFVerifier.cpp 918 const uint64_t NotIndexed = std::numeric_limits<uint64_t>::max();
lib/ExecutionEngine/JITLink/EHFrameSupport.cpp 59 if (ExtendedLengthField + 12 > std::numeric_limits<size_t>::max())
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h 37 ImageBase = std::numeric_limits<uint64_t>::max();
lib/ProfileData/GCOV.cpp 448 uint64_t CycleCount = std::numeric_limits<uint64_t>::max();
lib/ProfileData/InstrProfReader.cpp 65 if (uint64_t(Buffer->getBufferSize()) > std::numeric_limits<uint64_t>::max())
116 if (uint64_t(Buffer->getBufferSize()) > std::numeric_limits<uint64_t>::max())
lib/ProfileData/SampleProfReader.cpp 294 if (Val > std::numeric_limits<T>::max())
lib/Support/SourceMgr.cpp 81 assert(Sz <= std::numeric_limits<T>::max());
95 assert(PtrDiff >= 0 && static_cast<size_t>(PtrDiff) <= std::numeric_limits<T>::max());
lib/Support/VirtualFileSystem.cpp 1872 return UniqueID(std::numeric_limits<uint64_t>::max(), ID);
lib/Target/AArch64/AArch64ExpandImm.cpp 109 if (Chunk == 0 || Chunk == std::numeric_limits<uint64_t>::max())
119 if (Chunk == 0 || Chunk == std::numeric_limits<uint64_t>::max())
lib/Transforms/Instrumentation/AddressSanitizer.cpp 96 std::numeric_limits<uint64_t>::max();
lib/Transforms/Instrumentation/HWAddressSanitizer.cpp 70 std::numeric_limits<uint64_t>::max();
lib/Transforms/Utils/InlineFunction.cpp 1984 if (AllocaArraySize != std::numeric_limits<uint64_t>::max() &&
1985 std::numeric_limits<uint64_t>::max() / AllocaArraySize >=
projects/compiler-rt/lib/xray/xray_function_call_trie.h 452 ? (std::numeric_limits<uint64_t>::max() - Top.EntryTSC) + TSC
tools/clang/lib/AST/ExprConstant.cpp 186 std::numeric_limits<uint64_t>::max() / 2;
tools/clang/lib/AST/Interp/Integral.h 66 static const auto Max = std::numeric_limits<T>::max();
tools/clang/lib/Frontend/PrecompiledPreamble.cpp 410 assert(Result <= std::numeric_limits<std::size_t>::max() &&
tools/clang/tools/extra/clang-tidy/hicpp/MultiwayPathsCoveredCheck.cpp 71 ? std::numeric_limits<std::size_t>::max()
tools/clang/tools/extra/clang-tidy/misc/ThrowByValueCatchByReferenceCheck.cpp 26 MaxSize(Options.get("MaxSize", std::numeric_limits<uint64_t>::max())) {}
164 if (MaxSize == std::numeric_limits<uint64_t>::max())
tools/clang/tools/extra/clangd/CodeComplete.cpp 1577 Opts.Limit == 0 ? std::numeric_limits<size_t>::max() : Opts.Limit);
tools/clang/tools/extra/clangd/FindSymbols.cpp 89 Req.Limit ? *Req.Limit : std::numeric_limits<size_t>::max());
tools/clang/tools/extra/clangd/index/MemIndex.cpp 36 Req.Limit ? *Req.Limit : std::numeric_limits<size_t>::max());
tools/clang/tools/extra/clangd/index/dex/Dex.cpp 218 Req.Limit ? *Req.Limit : std::numeric_limits<size_t>::max(), Compare);
tools/dsymutil/CompileUnit.h 264 uint64_t LowPc = std::numeric_limits<uint64_t>::max();
tools/dsymutil/DeclContext.cpp 120 std::numeric_limits<uint64_t>::max());
tools/dsymutil/DwarfLinker.cpp 584 : std::numeric_limits<uint64_t>::max();
1243 Addr = (Info.OrigLowPc != std::numeric_limits<uint64_t>::max()
1249 if (Addr == std::numeric_limits<uint64_t>::max())
1566 std::numeric_limits<uint64_t>::max());
tools/dsymutil/DwarfLinker.h 316 uint64_t OrigLowPc = std::numeric_limits<uint64_t>::max();
tools/dsymutil/DwarfStreamer.cpp 403 ? std::numeric_limits<uint64_t>::max()
tools/dsymutil/SymbolMap.cpp 36 std::size_t LineNumber = std::numeric_limits<std::size_t>::max();
tools/lld/ELF/LinkerScript.cpp 1033 uint64_t min = std::numeric_limits<uint64_t>::max();
tools/lldb/source/Core/Section.cpp 433 return std::numeric_limits<size_t>::max();
tools/lldb/source/Plugins/ABI/SysV-arc/ABISysV_arc.cpp 375 raw_value &= std::numeric_limits<T>::max();
tools/lldb/source/Plugins/Language/ObjC/Cocoa.cpp 759 if (encodedTimeInterval == std::numeric_limits<uint64_t>::max())
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp 3445 uint64_t type = std::numeric_limits<uint64_t>::max();
3446 uint64_t buffersize = std::numeric_limits<uint64_t>::max();
3447 uint64_t metabuffersize = std::numeric_limits<uint64_t>::max();
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp 1043 uint64_t type = std::numeric_limits<uint64_t>::max();
1044 uint64_t buffersize = std::numeric_limits<uint64_t>::max();
1046 uint64_t metabuffersize = std::numeric_limits<uint64_t>::max();
1077 if (buffersize == std::numeric_limits<uint64_t>::max() ||
1211 uint64_t byte_count = std::numeric_limits<uint64_t>::max();
1213 uint64_t offset = std::numeric_limits<uint64_t>::max();
2161 packet.GetHexMaxU64(false, std::numeric_limits<lldb::tid_t>::max());
2809 offset_data.GetHexMaxU64(false, std::numeric_limits<uint64_t>::max());
2810 if (xfer_offset == std::numeric_limits<uint64_t>::max())
2818 offset_data.GetHexMaxU64(false, std::numeric_limits<uint64_t>::max());
2819 if (xfer_length == std::numeric_limits<uint64_t>::max())
tools/lldb/unittests/Utility/ScalarTest.cpp 179 EXPECT_EQ(std::to_string(std::numeric_limits<unsigned long>::max()),
180 ScalarGetValue(std::numeric_limits<unsigned long>::max()));
tools/lldb/unittests/Utility/StreamTest.cpp 231 s.PutHex64(std::numeric_limits<uint64_t>::max(), lldb::eByteOrderLittle);
245 s.PutHex64(std::numeric_limits<uint64_t>::max(), lldb::eByteOrderBig);
311 s << std::numeric_limits<uint64_t>::max();
470 auto bytes = s.PutULEB128(std::numeric_limits<uint64_t>::max());
tools/lldb/unittests/Utility/VMRangeTest.cpp 85 EXPECT_FALSE(range.Contains(std::numeric_limits<lldb::addr_t>::max()));
103 range.Contains(VMRange(0x105, std::numeric_limits<lldb::addr_t>::max())));
tools/llvm-exegesis/lib/Clustering.h 71 (std::numeric_limits<size_t>::max() >> 1) - 4;
tools/llvm-objcopy/ELF/Object.cpp 1014 OriginalOffset = std::numeric_limits<uint64_t>::max();
tools/llvm-objcopy/ELF/Object.h 387 uint64_t OriginalOffset = std::numeric_limits<uint64_t>::max();
495 OriginalOffset = std::numeric_limits<uint64_t>::max();
unittests/ADT/PointerEmbeddedIntTest.cpp 61 UMax = std::numeric_limits<uintptr_t>::max() >> 1,
63 EXPECT_EQ(std::numeric_limits<uintptr_t>::max() >> 1, UMax);
73 Max = std::numeric_limits<uintptr_t>::max() >> 1;
75 EXPECT_EQ(std::numeric_limits<uintptr_t>::max() >> 1,
unittests/ADT/StringMapTest.cpp 524 LargeValue = std::numeric_limits<size_t>::max();
526 LargeValue = std::numeric_limits<size_t>::max();
544 LargeValue = std::numeric_limits<size_t>::max();
unittests/FuzzMutate/OperationsTest.cpp 87 std::numeric_limits<uint64_t>::max());
unittests/ProfileData/InstrProfTest.cpp 569 const uint64_t Max = std::numeric_limits<uint64_t>::max();
unittests/ProfileData/SampleProfTest.cpp 362 const uint64_t Max = std::numeric_limits<uint64_t>::max();
unittests/Support/AlignmentTest.cpp 386 reinterpret_cast<const void *>(std::numeric_limits<uintptr_t>::max() - 1);
unittests/Support/CheckedArithmeticTest.cpp 63 const uint64_t Max = std::numeric_limits<uint64_t>::max();
70 const uint64_t Max = std::numeric_limits<uint64_t>::max();
77 const uint64_t Max = std::numeric_limits<uint64_t>::max();
unittests/Support/FileCheckTest.cpp 28 FileCheckExpressionLiteral Max(std::numeric_limits<uint64_t>::max());
31 EXPECT_EQ(std::numeric_limits<uint64_t>::max(), *Value);
unittests/Support/MathExtrasTest.cpp 287 const T Max = std::numeric_limits<T>::max();
321 const T Max = std::numeric_limits<T>::max();
401 const T Max = std::numeric_limits<T>::max();
usr/include/c++/7.4.0/bits/uniform_int_dist.h 109 _IntType __b = std::numeric_limits<_IntType>::max())