Home
last modified time | relevance | path

Searched refs:Min (Results 1 – 25 of 363) sorted by relevance

12345678910>>...15

/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
H A DOSTargets.cpp51 unsigned Maj, Min, Rev; in getDarwinDefines() local
53 Triple.getMacOSXVersion(Maj, Min, Rev); in getDarwinDefines()
56 Triple.getOSVersion(Maj, Min, Rev); in getDarwinDefines()
64 PlatformMinVersion = VersionTuple(Maj, Min, Rev); in getDarwinDefines()
70 assert(Maj < 100 && Min < 100 && Rev < 100 && "Invalid version!"); in getDarwinDefines()
74 Str[1] = '0' + (Min / 10); in getDarwinDefines()
75 Str[2] = '0' + (Min % 10); in getDarwinDefines()
83 Str[2] = '0' + (Min / 10); in getDarwinDefines()
84 Str[3] = '0' + (Min % 10); in getDarwinDefines()
96 assert(Maj < 10 && Min < 100 && Rev < 100 && "Invalid version!"); in getDarwinDefines()
[all …]
/netbsd-src/games/robots/
H A Dmove_robs.c58 move(Min.y, Min.x); in move_robots()
81 Min.y = Y_FIELDSIZE; in move_robots()
82 Min.x = X_FIELDSIZE; in move_robots()
101 if (rp->y < Min.y) in move_robots()
102 Min.y = rp->y; in move_robots()
103 if (rp->x < Min.x) in move_robots()
104 Min.x = rp->x; in move_robots()
119 move(Min.y, Min.x); in move_robots()
H A Dmake_level.c72 Min.y = Y_FIELDSIZE; in make_level()
73 Min.x = X_FIELDSIZE; in make_level()
85 if (cp->y < Min.y) in make_level()
86 Min.y = cp->y; in make_level()
87 if (cp->x < Min.x) in make_level()
88 Min.x = cp->x; in make_level()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
H A Dxray-graph.h44 double Min; member
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 / B.Min, A.Median / B.Median,
H A Dxray-color-helper.cpp86 int Min = 0; in convertToHSV() local
89 if (Scaled[i] < Scaled[Min]) in convertToHSV()
90 Min = i; in convertToHSV()
95 double C = Scaled[Max] - Scaled[Min]; in convertToHSV()
142 double Min = V - C; in convertToRGB() local
143 double RGB2[3] = {RGB1[0] + Min, RGB1[1] + Min, RGB1[2] + Min}; in convertToRGB()
H A Dxray-graph.cpp159 if (S.Min > L || S.Min == 0) in updateStat()
160 S.Min = L; in updateStat()
291 M.Min = std::max(M.Min, S.Min); in updateMaxStats()
353 double TimeStat::*DoubleStatPtrs[] = {&TimeStat::Min, &TimeStat::Median, in getString()
375 double TimeStat::*DoubleStatPtrs[] = {&TimeStat::Min, &TimeStat::Median, in getDouble()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/PBQP/
H A DReductionRules.h50 PBQPNum Min = ECosts[0][j] + XCosts[0]; in applyR1() local
53 if (C < Min) in applyR1()
54 Min = C; in applyR1()
56 YCosts[j] += Min; in applyR1()
60 PBQPNum Min = ECosts[i][0] + XCosts[0]; in applyR1() local
63 if (C < Min) in applyR1()
64 Min = C; in applyR1()
66 YCosts[i] += Min; in applyR1()
112 PBQPNum Min = (*YXECosts)[i][0] + (*ZXECosts)[j][0] + XCosts[0]; in applyR2() local
115 if (C < Min) { in applyR2()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
H A Dubsan_diag.cc252 MemoryLocation Min = subtractNoOverflow(Loc, MinBytesNearLoc); in PrintMemorySnippet() local
254 MemoryLocation OrigMin = Min; in PrintMemorySnippet()
256 Min = __sanitizer::Min(Ranges[I].getStart().getMemoryLocation(), Min); in PrintMemorySnippet()
262 if (Max - Min > BytesToShow) in PrintMemorySnippet()
263 Min = __sanitizer::Min(Max - BytesToShow, OrigMin); in PrintMemorySnippet()
264 Max = addNoOverflow(Min, BytesToShow); in PrintMemorySnippet()
266 if (!IsAccessibleMemoryRange(Min, Max - Min)) { in PrintMemorySnippet()
273 for (uptr P = Min; P != Max; ++P) { in PrintMemorySnippet()
281 Range *InRange = upperBound(Min, Ranges, NumRanges); in PrintMemorySnippet()
282 for (uptr P = Min; P != Max; ++P) { in PrintMemorySnippet()
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
H A Dubsan_diag.cc254 MemoryLocation Min = subtractNoOverflow(Loc, MinBytesNearLoc); in PrintMemorySnippet() local
256 MemoryLocation OrigMin = Min; in PrintMemorySnippet()
258 Min = __sanitizer::Min(Ranges[I].getStart().getMemoryLocation(), Min); in PrintMemorySnippet()
264 if (Max - Min > BytesToShow) in PrintMemorySnippet()
265 Min = __sanitizer::Min(Max - BytesToShow, OrigMin); in PrintMemorySnippet()
266 Max = addNoOverflow(Min, BytesToShow); in PrintMemorySnippet()
268 if (!IsAccessibleMemoryRange(Min, Max - Min)) { in PrintMemorySnippet()
275 for (uptr P = Min; P != Max; ++P) { in PrintMemorySnippet()
283 Range *InRange = upperBound(Min, Ranges, NumRanges); in PrintMemorySnippet()
284 for (uptr P = Min; P != Max; ++P) { in PrintMemorySnippet()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/ubsan/
H A Dubsan_diag.cpp261 MemoryLocation Min = subtractNoOverflow(Loc, MinBytesNearLoc); in PrintMemorySnippet() local
263 MemoryLocation OrigMin = Min; in PrintMemorySnippet()
265 Min = __sanitizer::Min(Ranges[I].getStart().getMemoryLocation(), Min); in PrintMemorySnippet()
271 if (Max - Min > BytesToShow) in PrintMemorySnippet()
272 Min = __sanitizer::Min(Max - BytesToShow, OrigMin); in PrintMemorySnippet()
273 Max = addNoOverflow(Min, BytesToShow); in PrintMemorySnippet()
275 if (!IsAccessibleMemoryRange(Min, Max - Min)) { in PrintMemorySnippet()
282 for (uptr P = Min; P != Max; ++P) { in PrintMemorySnippet()
290 Range *InRange = upperBound(Min, Ranges, NumRanges); in PrintMemorySnippet()
291 for (uptr P = Min; P != Max; ++P) { in PrintMemorySnippet()
[all …]
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/cris/c/
H A Dsched5.c10 int Min = sched_get_priority_min (SCHED_OTHER); in main() local
12 if (Min != 0 || Max != 0) in main()
14 fprintf (stderr, "min: %d, max: %d\n", Min, Max); in main()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DBytesOutputStyle.cpp92 uint32_t Max = R.Max.getValueOr(R.Min); in dump()
94 if (Max < R.Min) in dump()
103 dumpBlockRanges(R.Min, Max); in dump()
111 if (Max < R.Min) in dump()
119 dumpByteRanges(R.Min, Max); in dump()
207 void BytesOutputStyle::dumpBlockRanges(uint32_t Min, uint32_t Max) { in dumpBlockRanges() argument
211 for (uint32_t I = Min; I <= Max; ++I) { in dumpBlockRanges()
430 void BytesOutputStyle::dumpByteRanges(uint32_t Min, uint32_t Max) { in dumpByteRanges() argument
437 consumeError(Reader.skip(Min)); in dumpByteRanges()
438 uint32_t Size = Max - Min + 1; in dumpByteRanges()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h196 bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max);
205 unsigned Min, Max; variable
223 unsigned Min, unsigned Max) in Directive() argument
225 Min(Min), Max(Max), MatchAnyLine(MatchAnyLine || MatchAnyFileAndLine), in Directive()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DAPFixedPoint.cpp264 APSInt Min = APFixedPoint::getMin(CommonFXSema).getValue() in mul() local
267 if (Result < Min) in mul()
268 Result = Min; in mul()
272 Overflowed = Result < Min || Result > Max; in mul()
319 APSInt Min = APFixedPoint::getMin(CommonFXSema).getValue() in div() local
322 if (Result < Min) in div()
323 Result = Min; in div()
327 Overflowed = Result < Min || Result > Max; in div()
355 APSInt Min = APFixedPoint::getMin(Sema).getValue().extOrTrunc(Wide); in shl() local
357 if (Result < Min) in shl()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DLegalizeMutations.cpp57 unsigned Min) { in widenScalarOrEltToNextPow2() argument
61 std::max(1u << Log2_32_Ceil(Ty.getScalarSizeInBits()), Min); in widenScalarOrEltToNextPow2()
67 unsigned Min) { in moreElementsToNextPow2() argument
71 std::max(1u << Log2_32_Ceil(VecTy.getNumElements()), Min); in moreElementsToNextPow2()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DPointerSumType.h232 struct Min : std::integral_constant< struct
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);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
H A DRISCVSubtarget.cpp132 unsigned Min = RVVVectorBitsMin; in getMinRVVVectorSizeInBits() local
134 Min = std::min(RVVVectorBitsMin, RVVVectorBitsMax); in getMinRVVVectorSizeInBits()
135 return PowerOf2Floor(Min < 128 ? 0 : Min); in getMinRVVVectorSizeInBits()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp673 FunctionModRefBehavior Min = FMRB_UnknownModRefBehavior; in getModRefBehavior() local
678 Min = FMRB_OnlyReadsMemory; in getModRefBehavior()
680 Min = FMRB_OnlyWritesMemory; in getModRefBehavior()
683 Min = FunctionModRefBehavior(Min & FMRB_OnlyAccessesArgumentPointees); in getModRefBehavior()
685 Min = FunctionModRefBehavior(Min & FMRB_OnlyAccessesInaccessibleMem); in getModRefBehavior()
687 Min = FunctionModRefBehavior(Min & FMRB_OnlyAccessesInaccessibleOrArgMem); in getModRefBehavior()
694 Min = in getModRefBehavior()
695 FunctionModRefBehavior(Min & getBestAAResults().getModRefBehavior(F)); in getModRefBehavior()
697 return Min; in getModRefBehavior()
707 FunctionModRefBehavior Min = FMRB_UnknownModRefBehavior; in getModRefBehavior() local
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonConstExtenders.cpp60 int32_t Min = INT_MIN, Max = INT_MAX; member
66 : Min(L), Max(H), Align(A), Offset(O) {} in OffsetRange()
73 Min = adjustUp(std::max(Min, A.Min), Align, Offset); in intersect()
77 Min = 0; in intersect()
81 if (Min > Max) in intersect()
82 std::tie(Min, Max, Align) = std::make_tuple(0, -1, 1); in intersect()
86 Min += S; in shift()
95 Min = (INT_MIN-D < Min) ? Min+D : INT_MIN; in extendBy()
101 return Min > Max; in empty()
104 return Min <= V && V <= Max && (V-Offset) % Align == 0; in contains()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DIntegral.h65 static const auto Min = std::numeric_limits<T>::min();
152 return Integral(Min);
183 return CheckRange<T, Min, Max>(Value);
246 template <typename T, T Min, T Max>
249 return Min <= V && V <= Max;
252 template <typename T, T Min, T Max>
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
H A DLowerTypeTests.h63 uint64_t Min = std::numeric_limits<uint64_t>::max();
69 if (Min > Offset) in addOffset()
70 Min = Offset; in addOffset()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DConstantRange.cpp669 APInt Min = APInt::getMinValue(BW).zextOrSelf(ResultBitWidth); in castOp() local
671 return ConstantRange(std::move(Min), std::move(Max)); in castOp()
1497 APInt Min = getSignedMin(), Max = getSignedMax(); in sshl_sat() local
1499 APInt NewL = Min.sshl_sat(Min.isNonNegative() ? ShAmtMin : ShAmtMax); in sshl_sat()
1559 APInt Min = getUnsignedMin(), Max = getUnsignedMax(); in unsignedAddMayOverflow() local
1563 if (Min.ugt(~OtherMin)) in unsignedAddMayOverflow()
1575 APInt Min = getSignedMin(), Max = getSignedMax(); in signedAddMayOverflow() local
1583 if (Min.isNonNegative() && OtherMin.isNonNegative() && in signedAddMayOverflow()
1584 Min.sgt(SignedMax - OtherMin)) in signedAddMayOverflow()
1593 if (Min.isNegative() && OtherMin.isNegative() && in signedAddMayOverflow()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DCodeViewRecordIO.cpp68 Optional<uint32_t> Min = Limits.front().bytesRemaining(Offset); in maxFieldLength() local
72 Min = (Min.hasValue()) ? std::min(*Min, *ThisMin) : *ThisMin; in maxFieldLength()
74 assert(Min.hasValue() && "Every field must have a maximum length!"); in maxFieldLength()
76 return *Min; in maxFieldLength()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp93 unsigned Min, unsigned Max) in StandardDirective() argument
95 MatchAnyLine, Text, Min, Max) {} in StandardDirective()
112 unsigned Min, unsigned Max, StringRef RegexStr) in RegexDirective() argument
114 MatchAnyLine, Text, Min, Max), in RegexDirective()
293 unsigned Min = 1, Max = 1; member
305 MatchAnyLine, UD.Text, UD.Min, UD.Max); in attachDirective()
585 if (PH.Next(D.Min)) { in ParseDirective()
594 if (!PH.Next(D.Max) || D.Max < D.Min) { in ParseDirective()
601 D.Max = D.Min; in ParseDirective()
968 if (i >= D.Min) break; in CheckLists()
[all …]
/netbsd-src/sys/external/bsd/acpica/dist/tests/misc/
H A Dbadcode.asl237 // Length larger than Min/Max window size
245 // Min and Max not multiples of alignment value
285 // Length larger than Min/Max window size
302 // Address Min (with zero length) not on granularity boundary
320 // Invalid combination: zero length, both Min and Max are fixed
329 // Invalid combination: non-zero length, Min Fixed, Max not fixed
338 // Invalid combination: non-zero length, Min not Fixed, Max fixed

12345678910>>...15