Home
last modified time | relevance | path

Searched refs:Max (Results 1 – 25 of 507) sorted by relevance

12345678910>>...21

/netbsd-src/games/robots/
H A Dmove_robs.c60 move(Max.y, Max.x); in move_robots()
83 Max.y = 0; in move_robots()
84 Max.x = 0; in move_robots()
105 if (rp->y > Max.y) in move_robots()
106 Max.y = rp->y; in move_robots()
107 if (rp->x > Max.x) in move_robots()
108 Max.x = rp->x; in move_robots()
121 move(Max.y, Max.x); in move_robots()
H A Dmake_level.c74 Max.y = 0; in make_level()
75 Max.x = 0; in make_level()
89 if (cp->y > Max.y) in make_level()
90 Max.y = cp->y; in make_level()
91 if (cp->x > Max.x) in make_level()
92 Max.x = cp->x; in make_level()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
H A Dxray-graph.h48 double Max; member
169 A.Pct90 + B.Pct90, A.Pct99 + B.Pct99, A.Max + B.Max,
178 A.Pct90 - B.Pct90, A.Pct99 - B.Pct99, A.Max - B.Max,
191 A.Max / B,
203 A.Max * B,
217 A.Pct90 * B.Pct90, A.Pct99 * B.Pct99, A.Max * B.Max,
225 A.Pct90 / B.Pct90, A.Pct99 / B.Pct99, A.Max / B.Max,
H A Dxray-color-helper.cpp87 int Max = 0; in convertToHSV() local
91 if (Scaled[i] > Scaled[Max]) in convertToHSV()
92 Max = i; in convertToHSV()
95 double C = Scaled[Max] - Scaled[Min]; in convertToHSV()
98 (C == 0) ? 0 : (Scaled[(Max + 1) % 3] - Scaled[(Max + 2) % 3]) / C; in convertToHSV()
99 HPrime = HPrime + 2.0 * Max; in convertToHSV()
103 double V = Scaled[Max]; in convertToHSV()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/xray/
H A Dxray_buffer_queue.h85 size_t Max = 0; variable
88 DCHECK_NE(Offset, Max);
91 } while (!Buffers[Offset].Used && Offset != Max);
108 Max(M) { in Iterator()
111 while (!Buffers[Offset].Used && Offset != Max) { in Iterator()
125 DCHECK_EQ(L.Max, R.Max);
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DBytesOutputStyle.cpp92 uint32_t Max = R.Max.getValueOr(R.Min); in dump() local
94 if (Max < R.Min) in dump()
98 if (Max >= File.getBlockCount()) in dump()
103 dumpBlockRanges(R.Min, Max); in dump()
109 uint32_t Max = R.Max.getValueOr(File.getFileSize()); in dump() local
111 if (Max < R.Min) in dump()
114 if (Max >= File.getFileSize()) 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()
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
H A Dsegmented_array_test.cc203 constexpr uint64_t Max = 9; in TEST() local
205 for (uint64_t i = 0; i < Max; ++i) { in TEST()
215 auto Counter = Max; in TEST()
216 ASSERT_EQ(Data.size(), size_t(Max)); in TEST()
240 constexpr uint64_t Max = 9; in TEST() local
242 for (uint64_t i = 0; i < Max; ++i) { in TEST()
252 auto Counter = Max; in TEST()
253 ASSERT_EQ(Data->size(), size_t(Max)); in TEST()
264 for (uint64_t i = 0; i < Max; ++i) { in TEST()
281 for (uint64_t i = 0; i < Max; ++i) { in TEST()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
H A Dubsan_diag.cc253 MemoryLocation Max = addNoOverflow(Loc, MinBytesNearLoc); in PrintMemorySnippet() local
257 Max = __sanitizer::Max(Ranges[I].getEnd().getMemoryLocation(), Max); 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()
282 for (uptr P = Min; P != Max; ++P) { in PrintMemorySnippet()
303 for (uptr P = Min; P != Max; ++P) { in PrintMemorySnippet()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
H A Dubsan_diag.cc255 MemoryLocation Max = addNoOverflow(Loc, MinBytesNearLoc); in PrintMemorySnippet() local
259 Max = __sanitizer::Max(Ranges[I].getEnd().getMemoryLocation(), Max); 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()
284 for (uptr P = Min; P != Max; ++P) { in PrintMemorySnippet()
305 for (uptr P = Min; P != Max; ++P) { in PrintMemorySnippet()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/ubsan/
H A Dubsan_diag.cpp262 MemoryLocation Max = addNoOverflow(Loc, MinBytesNearLoc); in PrintMemorySnippet() local
266 Max = __sanitizer::Max(Ranges[I].getEnd().getMemoryLocation(), Max); 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()
291 for (uptr P = Min; P != Max; ++P) { in PrintMemorySnippet()
312 for (uptr P = Min; P != Max; ++P) { in PrintMemorySnippet()
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/cris/c/
H A Dsched5.c11 int Max = sched_get_priority_max (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/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/gpl3/gdb/dist/sim/testsuite/cris/asm/
H A Dba.ms22 ; Max short forward branch.
54 ; Max short backward branch.
61 ; Max long forward branch.
90 ; Max long backward branch.
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DAPFixedPoint.cpp262 APSInt Max = APFixedPoint::getMax(CommonFXSema).getValue() in mul() local
269 else if (Result > Max) in mul()
270 Result = Max; in mul()
272 Overflowed = Result < Min || Result > Max; in mul()
317 APSInt Max = APFixedPoint::getMax(CommonFXSema).getValue() in div() local
324 else if (Result > Max) in div()
325 Result = Max; in div()
327 Overflowed = Result < Min || Result > Max; in div()
354 APSInt Max = APFixedPoint::getMax(Sema).getValue().extOrTrunc(Wide); in shl() local
359 else if (Result > Max) in shl()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MCA/
H A DSupport.cpp88 double Max = static_cast<double>(NumMicroOps) / DispatchWidth; in computeBlockRThroughput() local
100 Max = std::max(Max, Throughput); in computeBlockRThroughput()
106 return Max; in computeBlockRThroughput()
/netbsd-src/external/gpl2/gettext/dist/gnulib-local/lib/
H A Dxgetcwd.c33 # define getcwd(Buf, Max) (getcwd) (Buf, Max, 0) argument
39 # define getcwd(Buf, Max) getwd (Buf) argument
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DIntegral.h66 static const auto Max = std::numeric_limits<T>::max();
155 return Integral(Max);
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>
255 return V >= 0 && static_cast<uint64_t>(V) <= Max;
/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()
74 Max = adjustDown(std::min(Max, A.Max), Align, Offset); in intersect()
78 Max = -1; in intersect()
81 if (Min > Max) in intersect()
82 std::tie(Min, Max, Align) = std::make_tuple(0, -1, 1); in intersect()
87 Max += S; in shift()
97 Max = (INT_MAX-D > Max) ? Max+D : INT_MAX; 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/llvm/lib/CodeGen/
H A DCriticalAntiDepBreaker.cpp457 const SUnit *Max = nullptr; in BreakAntiDependencies() local
461 if (!Max || SU->getDepth() + SU->Latency > Max->getDepth() + Max->Latency) in BreakAntiDependencies()
462 Max = SU; in BreakAntiDependencies()
464 assert(Max && "Failed to find bottom of the critical path"); in BreakAntiDependencies()
469 << (Max->getDepth() + Max->Latency) << "\n"); in BreakAntiDependencies()
481 const SUnit *CriticalPathSU = Max; in BreakAntiDependencies()
/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()
590 D.Max = Directive::MaxCount; in ParseDirective()
594 if (!PH.Next(D.Max) || D.Max < D.Min) { in ParseDirective()
601 D.Max = D.Min; in ParseDirective()
605 D.Max = Directive::MaxCount; in ParseDirective()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
H A DLowerTypeTests.h64 uint64_t Max = 0; member
71 if (Max < Offset) in addOffset()
72 Max = Offset; in addOffset()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DConstantRange.cpp670 APInt Max = APInt::getMaxValue(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
1500 APInt NewU = Max.sshl_sat(Max.isNegative() ? ShAmtMin : ShAmtMax) + 1; in sshl_sat()
1559 APInt Min = getUnsignedMin(), Max = getUnsignedMax(); in unsignedAddMayOverflow() local
1565 if (Max.ugt(~OtherMax)) in unsignedAddMayOverflow()
1575 APInt Min = getSignedMin(), Max = getSignedMax(); in signedAddMayOverflow() local
1586 if (Max.isNegative() && OtherMax.isNegative() && in signedAddMayOverflow()
1587 Max.slt(SignedMin - OtherMax)) in signedAddMayOverflow()
1590 if (Max.isNonNegative() && OtherMax.isNonNegative() && in signedAddMayOverflow()
[all …]
/netbsd-src/external/bsd/less/dist/
H A Ddefines.o2180 #define UNGOT_SIZE 100 /* Max chars to unget() */
181 #define LINEBUF_SIZE 1024 /* Max size of line in input file */
183 #define PROMPT_SIZE 200 /* Max size of prompt string */
186 #define TAGLINE_SIZE 512 /* Max size of line in tags file */
187 #define TABSTOP_MAX 32 /* Max number of custom tab stops */
190 #define UNGOT_SIZE 200 /* Max chars to unget() */
193 #define PROMPT_SIZE 2048 /* Max size of prompt string */
196 #define TAGLINE_SIZE 1024 /* Max size of line in tags file */
197 #define TABSTOP_MAX 128 /* Max number of custom tab stops */
H A Ddefines.wn181 #define UNGOT_SIZE 100 /* Max chars to unget() */
182 #define LINEBUF_SIZE 1024 /* Max size of line in input file */
184 #define PROMPT_SIZE 200 /* Max size of prompt string */
187 #define TAGLINE_SIZE 512 /* Max size of line in tags file */
188 #define TABSTOP_MAX 32 /* Max number of custom tab stops */
191 #define UNGOT_SIZE 200 /* Max chars to unget() */
194 #define PROMPT_SIZE 2048 /* Max size of prompt string */
197 #define TAGLINE_SIZE 1024 /* Max size of line in tags file */
198 #define TABSTOP_MAX 128 /* Max number of custom tab stops */
H A Ddefines.o9187 #define UNGOT_SIZE 100 /* Max chars to unget() */
188 #define LINEBUF_SIZE 1024 /* Max size of line in input file */
190 #define PROMPT_SIZE 200 /* Max size of prompt string */
193 #define TAGLINE_SIZE 512 /* Max size of line in tags file */
194 #define TABSTOP_MAX 32 /* Max number of custom tab stops */
197 #define UNGOT_SIZE 200 /* Max chars to unget() */
200 #define PROMPT_SIZE 2048 /* Max size of prompt string */
203 #define TAGLINE_SIZE 1024 /* Max size of line in tags file */
204 #define TABSTOP_MAX 128 /* Max number of custom tab stops */

12345678910>>...21