Searched refs:numeric_limits (Results 126 - 150 of 372) sorted by relevance

1234567891011>>

/openbsd-current/gnu/llvm/llvm/lib/Transforms/Utils/
H A DMisExpect.cpp131 UnlikelyBranchWeight = std::numeric_limits<uint32_t>::max();
/openbsd-current/gnu/llvm/llvm/tools/llvm-exegesis/lib/
H A DLatencyBenchmarkRunner.cpp74 double MinVariance = std::numeric_limits<double>::infinity();
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/
H A DScoreboardHazardRecognizer.cpp96 for (int j = std::numeric_limits<InstrStage::FuncUnits>::digits - 1;
/openbsd-current/gnu/llvm/libcxx/include/__chrono/
H A Dyear.h90 static_assert(static_cast<int>(std::numeric_limits<decltype(__y_)>::max()) == static_cast<int>(max()));
H A Dyear_month_day.h77 static_assert(numeric_limits<unsigned>::digits >= 18, "");
78 static_assert(numeric_limits<int>::digits >= 20 , "");
95 static_assert(numeric_limits<unsigned>::digits >= 18, "");
96 static_assert(numeric_limits<int>::digits >= 20 , "");
/openbsd-current/gnu/llvm/libcxx/include/__random/
H A Dchi_squared_distribution.h97 result_type max() const {return numeric_limits<result_type>::infinity();}
H A Dgeometric_distribution.h98 result_type max() const {return numeric_limits<result_type>::max();}
H A Dweibull_distribution.h105 result_type max() const {return numeric_limits<result_type>::infinity();}
H A Dlognormal_distribution.h119 result_type max() const {return numeric_limits<result_type>::infinity();}
251 result_type max() const {return numeric_limits<result_type>::infinity();}
H A Dpoisson_distribution.h110 result_type max() const {return numeric_limits<result_type>::max();}
127 : __mean_(isinf(__mean) ? numeric_limits<double>::max() : __mean)
/openbsd-current/gnu/llvm/libcxx/benchmarks/
H A Dformatter_float.bench.cpp76 std::fill(result.begin(), result.end(), -std::numeric_limits<F>::infinity());
H A Dalgorithms.partition_point.bench.cpp33 [] { return getRandomInteger<IntT>(0, std::numeric_limits<IntT>::max()); });
/openbsd-current/gnu/llvm/libcxx/src/filesystem/
H A Dfilesystem_common.h329 return max_seconds >= numeric_limits<TimeT>::max() &&
330 min_seconds <= numeric_limits<TimeT>::min();
390 using Lim = numeric_limits<CType>;
415 using TLim = numeric_limits<TimeT>;
/openbsd-current/gnu/llvm/clang/lib/AST/Interp/
H A DIntegral.h65 static const auto Min = std::numeric_limits<ReprT>::min();
66 static const auto Max = std::numeric_limits<ReprT>::max();
H A DProgram.cpp331 if (std::numeric_limits<unsigned>::max() / ElemSize <= NumElems) {
345 if (std::numeric_limits<unsigned>::max() / ElemSize <= NumElems)
/openbsd-current/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUPreLegalizerCombiner.cpp86 const int64_t Min = std::numeric_limits<int16_t>::min();
87 const int64_t Max = std::numeric_limits<int16_t>::max();
/openbsd-current/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64ExpandImm.cpp107 if (Chunk == 0 || Chunk == std::numeric_limits<uint64_t>::max())
117 if (Chunk == 0 || Chunk == std::numeric_limits<uint64_t>::max())
/openbsd-current/gnu/llvm/llvm/include/llvm/Support/
H A DLowLevelTypeImpl.h105 assert(ScalarSize <= std::numeric_limits<unsigned>::max() &&
368 assert(SizeInBits <= std::numeric_limits<unsigned>::max() &&
/openbsd-current/gnu/llvm/libcxx/include/__memory_resource/
H A Dpolymorphic_allocator.h88 if (numeric_limits<size_t>::max() / sizeof(_Type) < __n)
196 return numeric_limits<size_t>::max() / sizeof(value_type);
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DAccelTable.cpp246 uint64_t PrevHash = std::numeric_limits<uint64_t>::max();
263 uint64_t PrevHash = std::numeric_limits<uint64_t>::max();
313 Asm->emitInt32(std::numeric_limits<uint32_t>::max());
316 uint64_t PrevHash = std::numeric_limits<uint64_t>::max();
329 uint64_t PrevHash = std::numeric_limits<uint64_t>::max();
333 if (PrevHash != std::numeric_limits<uint64_t>::max() &&
H A DDwarfExpression.cpp31 else if (Value == std::numeric_limits<uint64_t>::max()) {
351 uint64_t IntMax = static_cast<uint64_t>(std::numeric_limits<int>::max());
363 uint64_t IntMax = static_cast<uint64_t>(std::numeric_limits<int>::max());
/openbsd-current/gnu/llvm/llvm/lib/DWARFLinker/
H A DDWARFStreamer.cpp431 ? std::numeric_limits<uint64_t>::max()
432 : std::numeric_limits<uint32_t>::max();
510 MCDwarfLineAddr::Encode(*MC, Params, std::numeric_limits<int64_t>::max(), 0,
608 MCDwarfLineAddr::Encode(*MC, Params, std::numeric_limits<int64_t>::max(),
620 MCDwarfLineAddr::Encode(*MC, Params, std::numeric_limits<int64_t>::max(), 0,
/openbsd-current/gnu/llvm/llvm/include/llvm/CodeGen/PBQP/
H A DGraph.h33 return std::numeric_limits<NodeId>::max();
38 return std::numeric_limits<EdgeId>::max();
71 return std::numeric_limits<AdjEdgeIdx>::max();
/openbsd-current/gnu/llvm/llvm/lib/MC/MCParser/
H A DCOFFAsmParser.cpp480 if (Offset < 0 || Offset > std::numeric_limits<uint32_t>::max())
484 "than zero or greater than std::numeric_limits<uint32_t>::max()");
507 if (Offset < std::numeric_limits<int32_t>::min() ||
508 Offset > std::numeric_limits<int32_t>::max())
/openbsd-current/gnu/llvm/llvm/include/llvm/CodeGen/
H A DRegisterPressure.h109 assert(id < std::numeric_limits<uint16_t>::max() && "PSetID overflow.");
121 return (PSetID - 1) & std::numeric_limits<uint16_t>::max();

Completed in 196 milliseconds

1234567891011>>