Searched refs:numeric_limits (Results 101 - 125 of 372) sorted by relevance

1234567891011>>

/openbsd-current/gnu/llvm/llvm/lib/MC/
H A DMCInstPrinter.cpp202 if (Value == std::numeric_limits<int64_t>::min())
209 if (Value == std::numeric_limits<int64_t>::min())
/openbsd-current/gnu/llvm/libcxx/include/__random/
H A Dcauchy_distribution.h100 result_type min() const {return -numeric_limits<result_type>::infinity();}
102 result_type max() const {return numeric_limits<result_type>::infinity();}
H A Dextreme_value_distribution.h101 result_type min() const {return -numeric_limits<result_type>::infinity();}
103 result_type max() const {return numeric_limits<result_type>::infinity();}
H A Dnormal_distribution.h103 result_type min() const {return -numeric_limits<result_type>::infinity();}
105 result_type max() const {return numeric_limits<result_type>::infinity();}
/openbsd-current/gnu/llvm/compiler-rt/lib/xray/
H A Dxray_x86_64.cpp120 static constexpr int64_t MinOffset{std::numeric_limits<int32_t>::min()};
121 static constexpr int64_t MaxOffset{std::numeric_limits<int32_t>::max()};
H A Dxray_fdr_logging.cpp566 static_cast<std::size_t>(std::numeric_limits<int32_t>::max())) {
571 std::numeric_limits<int32_t>::max());
596 static_cast<std::size_t>(std::numeric_limits<int32_t>::max())) {
601 std::numeric_limits<int32_t>::max());
/openbsd-current/gnu/llvm/compiler-rt/lib/orc/tests/unit/
H A Dsimple_packed_serialization_test.cpp75 blobSerializationRoundTrip<T, T>(std::numeric_limits<T>::min());
77 blobSerializationRoundTrip<T, T>(std::numeric_limits<T>::max());
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/
H A DScheduleDAG.cpp139 assert(NumPreds < std::numeric_limits<unsigned>::max() &&
141 assert(N->NumSuccs < std::numeric_limits<unsigned>::max() &&
151 assert(NumPredsLeft < std::numeric_limits<unsigned>::max() &&
161 assert(N->NumSuccsLeft < std::numeric_limits<unsigned>::max() &&
407 unsigned(std::numeric_limits<int>::max())) {
/openbsd-current/gnu/llvm/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp218 readIntMax(EncodedCounter, std::numeric_limits<unsigned>::max()))
245 std::numeric_limits<unsigned>::max()))
298 readIntMax(LineStartDelta, std::numeric_limits<unsigned>::max()))
302 if (ColumnStart > std::numeric_limits<unsigned>::max())
304 if (auto Err = readIntMax(NumLines, std::numeric_limits<unsigned>::max()))
306 if (auto Err = readIntMax(ColumnEnd, std::numeric_limits<unsigned>::max()))
318 // column range (1 -> std::numeric_limits<unsigned>::max()), but because
319 // the encoded std::numeric_limits<unsigned>::max() is several bytes long,
322 // The std::numeric_limits<unsigned>::max() is used to represent a column
326 ColumnEnd = std::numeric_limits<unsigne
[all...]
/openbsd-current/gnu/llvm/llvm/include/llvm/ExecutionEngine/JITLink/
H A Daarch64.h358 if (Value > std::numeric_limits<uint32_t>::max())
374 if (Value < std::numeric_limits<int32_t>::min() ||
375 Value > std::numeric_limits<int32_t>::max())
/openbsd-current/gnu/llvm/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp304 if (Timeout > std::numeric_limits<uint32_t>::max() / 1000) {
306 << std::numeric_limits<uint32_t>::max() / 1000
398 if (TotalTimeMiliseconds > std::numeric_limits<uint32_t>::max()) {
/openbsd-current/gnu/gcc/libstdc++-v3/include/std/
H A Dstd_memory.h76 const ptrdiff_t __max = numeric_limits<ptrdiff_t>::max() / sizeof(_Tp);
/openbsd-current/gnu/gcc/libstdc++-v3/src/
H A Dios.cc125 if (__ix < numeric_limits<int>::max())
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/locale/generic/
H A Dc_locale.cc142 if (fabs(__d) > numeric_limits<float>::max())
/openbsd-current/gnu/llvm/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h200 static const unsigned MaxCount = std::numeric_limits<unsigned>::max();
/openbsd-current/gnu/llvm/llvm/tools/dsymutil/
H A DSymbolMap.cpp36 std::size_t LineNumber = std::numeric_limits<std::size_t>::max();
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DSmallVector.cpp91 constexpr size_t MaxSize = std::numeric_limits<Size_T>::max();
/openbsd-current/gnu/llvm/lldb/source/Plugins/Process/Linux/
H A DIntelPTMultiCoreTrace.cpp23 std::numeric_limits<uint64_t>::max());
/openbsd-current/gnu/llvm/llvm/include/llvm/ADT/
H A DCachedHashString.h41 assert(S.size() <= std::numeric_limits<uint32_t>::max());
H A DSparseSet.h206 const unsigned Stride = std::numeric_limits<SparseT>::max() + 1u;
/openbsd-current/gnu/llvm/llvm/include/llvm/Transforms/Utils/
H A DCodeExtractor.h105 unsigned NumExitBlocks = std::numeric_limits<unsigned>::max();
/openbsd-current/gnu/llvm/llvm/include/llvm/TextAPI/
H A DArchitectureSet.h34 std::numeric_limits<ArchSetType>::max();
/openbsd-current/gnu/llvm/llvm/include/llvm/CodeGen/
H A DLiveIntervalUnion.h163 unsigned MaxInterferingRegs = std::numeric_limits<unsigned>::max()) {
/openbsd-current/gnu/llvm/llvm/include/llvm/Analysis/
H A DAssumptionCache.h46 enum : unsigned { ExprResultIdx = std::numeric_limits<unsigned>::max() };
/openbsd-current/gnu/llvm/llvm/lib/Target/WebAssembly/
H A DWebAssemblyRegisterInfo.cpp81 if (static_cast<uint64_t>(Offset) <= std::numeric_limits<uint32_t>::max()) {

Completed in 328 milliseconds

1234567891011>>