Searched refs:Min (Results 1 - 25 of 147) sorted by relevance

123456

/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/
H A DOSTargets.cpp51 unsigned Maj, Min, Rev; local
53 Triple.getMacOSXVersion(Maj, Min, Rev);
56 Triple.getOSVersion(Maj, Min, Rev);
64 PlatformMinVersion = VersionTuple(Maj, Min, Rev);
70 assert(Maj < 100 && Min < 100 && Rev < 100 && "Invalid version!");
74 Str[1] = '0' + (Min / 10);
75 Str[2] = '0' + (Min % 10);
83 Str[2] = '0' + (Min / 10);
84 Str[3] = '0' + (Min % 10);
96 assert(Maj < 10 && Min < 10
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DBytesOutputStyle.h36 void dumpBlockRanges(uint32_t Min, uint32_t Max);
37 void dumpByteRanges(uint32_t Min, uint32_t Max);
H A DBytesOutputStyle.cpp92 uint32_t Max = R.Max.getValueOr(R.Min);
94 if (Max < R.Min)
96 "Invalid block range specified. Max < Min",
103 dumpBlockRanges(R.Min, Max);
111 if (Max < R.Min)
112 return make_error<StringError>("Invalid byte range specified. Max < Min",
119 dumpByteRanges(R.Min, Max);
207 void BytesOutputStyle::dumpBlockRanges(uint32_t Min, uint32_t Max) { argument
211 for (uint32_t I = Min; I <= Max; ++I) {
430 void BytesOutputStyle::dumpByteRanges(uint32_t Min, uint32_ argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DTypeSize.h25 unsigned Min; // Minimum number of vector elements. member in class:llvm::ElementCount
26 bool Scalable; // If true, NumElements is a multiple of 'Min' determined
29 ElementCount(unsigned Min, bool Scalable) argument
30 : Min(Min), Scalable(Scalable) {}
33 return { Min * RHS, Scalable };
36 return { Min / RHS, Scalable };
40 return Min == RHS.Min && Scalable == RHS.Scalable;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizeMutations.cpp47 unsigned Min) {
51 std::max(1u << Log2_32_Ceil(Ty.getScalarSizeInBits()), Min);
57 unsigned Min) {
61 std::max(1u << Log2_32_Ceil(VecTy.getNumElements()), Min);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DReductionRules.h50 PBQPNum Min = ECosts[0][j] + XCosts[0]; local
53 if (C < Min)
54 Min = C;
56 YCosts[j] += Min;
60 PBQPNum Min = ECosts[i][0] + XCosts[0]; local
63 if (C < Min)
64 Min = C;
66 YCosts[i] += Min;
112 PBQPNum Min = (*YXECosts)[i][0] + (*ZXECosts)[j][0] + XCosts[0]; local
115 if (C < Min) {
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-graph.h44 double Min; member in struct:llvm::xray::GraphRenderer::TimeStat
168 return {A.Count + B.Count, A.Min + B.Min, A.Median + B.Median,
177 return {A.Count - B.Count, A.Min - B.Min, A.Median - B.Median,
187 A.Min / B,
199 A.Min * B,
216 return {A.Count * B.Count, A.Min * B.Min, A.Median * B.Median,
224 return {A.Count / B.Count, A.Min /
[all...]
H A Dxray-color-helper.cpp86 int Min = 0; local
89 if (Scaled[i] < Scaled[Min])
90 Min = i;
95 double C = Scaled[Max] - Scaled[Min];
142 double Min = V - C; local
143 double RGB2[3] = {RGB1[0] + Min, RGB1[1] + Min, RGB1[2] + Min};
H A Dxray-graph.cpp159 if (S.Min > L || S.Min == 0)
160 S.Min = L;
267 M.Min = std::max(M.Min, S.Min);
330 double TimeStat::*DoubleStatPtrs[] = {&TimeStat::Min, &TimeStat::Median,
352 double TimeStat::*DoubleStatPtrs[] = {&TimeStat::Min, &TimeStat::Median,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DLowerTypeTests.h63 uint64_t Min = std::numeric_limits<uint64_t>::max(); member in struct:llvm::lowertypetests::BitSetBuilder
69 if (Min > Offset)
70 Min = Offset;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_diag.cpp261 MemoryLocation Min = subtractNoOverflow(Loc, MinBytesNearLoc); local
263 MemoryLocation OrigMin = Min;
265 Min = __sanitizer::Min(Ranges[I].getStart().getMemoryLocation(), Min);
271 if (Max - Min > BytesToShow)
272 Min = __sanitizer::Min(Max - BytesToShow, OrigMin);
273 Max = addNoOverflow(Min, BytesToShow);
275 if (!IsAccessibleMemoryRange(Min, Ma
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_unwind_win.cpp32 size = CaptureStackBackTrace(1, Min(max_depth, kStackTraceMax),
69 size < Min(max_depth, kStackTraceMax)) {
H A Dsanitizer_symbolizer_markup.cpp123 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)};
131 PopStackFrames(Min(to_pop, static_cast<uptr>(1)));
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h196 unsigned Min, unsigned Max);
205 unsigned Min, Max; member in class:clang::VerifyDiagnosticConsumer::Directive
221 bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max)
223 Text(Text), Min(Min), Max(Max), MatchAnyLine(MatchAnyLine) {
220 Directive(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max) argument
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_malloc_bisect.h19 uptr len = Min(stack->size, (unsigned)7);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPointerSumType.h232 struct Min : std::integral_constant<
233 uintptr_t, (V < Min<Vs...>::value ? V : Min<Vs...>::value)> {
236 struct Min<V> : std::integral_constant<uintptr_t, V> {};
237 enum { NumTagBits = Min<MemberTs::TraitsT::NumLowBitsAvailable...>::value };
241 static_cast<TagT>(Min<MemberTs::Tag...>::value);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_debugging.cpp41 Min(name_size, vars[i].name_len + 1));
66 size = Min(size, Min(stack.size, kStackTraceMax));
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DIntegral.h65 static const auto Min = std::numeric_limits<T>::min(); member in class:clang::interp::Integral
152 return Integral(Min);
184 return CheckRange<T, Min, Max>(Value);
247 template <typename T, T Min, T Max>
250 return Min <= V && V <= Max;
253 template <typename T, T Min, T Max>
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_tsd_shared.cpp36 NumberOfTSDs = Min(Max(1U, GetNumberOfCPUsCached()),
79 for (u32 I = 0; I < Min(4U, NumberOfTSDs); I++) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/FuzzMutate/
H A DRandom.h20 /// Return a uniformly distributed random value between \c Min and \c Max
21 template <typename T, typename GenT> T uniform(GenT &Gen, T Min, T Max) { argument
22 return std::uniform_int_distribution<T>(Min, Max)(Gen);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DCodeViewRecordIO.cpp68 Optional<uint32_t> Min = Limits.front().bytesRemaining(Offset); local
72 Min = (Min.hasValue()) ? std::min(*Min, *ThisMin) : *ThisMin;
74 assert(Min.hasValue() && "Every field must have a maximum length!");
76 return *Min;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp92 bool MatchAnyLine, StringRef Text, unsigned Min,
94 : Directive(DirectiveLoc, DiagnosticLoc, MatchAnyLine, Text, Min, Max) {}
110 bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max,
112 : Directive(DirectiveLoc, DiagnosticLoc, MatchAnyLine, Text, Min, Max),
291 unsigned Min = 1, Max = 1; member in struct:__anon530::UnattachedDirective
301 MatchAnyLine, UD.Text, UD.Min, UD.Max);
567 if (PH.Next(D.Min)) {
576 if (!PH.Next(D.Max) || D.Max < D.Min) {
583 D.Max = D.Min;
950 if (i >= D.Min) brea
91 StandardDirective(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max) argument
109 RegexDirective(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max, StringRef RegexStr) argument
1114 create(bool RegexKind, SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dtsd_shared.h21 NumberOfTSDs = Min(Max(1U, getNumberOfCPUs()), MaxTSDCount);
134 for (u32 I = 0; I < Min(4U, NumberOfTSDs); I++) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAtomicRMW.cpp46 case AtomicRMWInst::Min:
84 case AtomicRMWInst::Min:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp719 FunctionModRefBehavior Min = FMRB_UnknownModRefBehavior;
724 Min = FMRB_OnlyReadsMemory;
726 Min = FMRB_DoesNotReadMemory;
729 Min = FunctionModRefBehavior(Min & FMRB_OnlyAccessesArgumentPointees);
731 Min = FunctionModRefBehavior(Min & FMRB_OnlyAccessesInaccessibleMem);
733 Min = FunctionModRefBehavior(Min & FMRB_OnlyAccessesInaccessibleOrArgMem);
740 Min
[all...]

Completed in 343 milliseconds

123456