HomeSort by: relevance | last modified time | path
    Searched refs:Max (Results 1 - 25 of 230) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /src/external/gpl3/gdb/dist/sim/testsuite/cris/c/
sched5.c 11 int Max = sched_get_priority_max (SCHED_OTHER);
12 if (Min != 0 || Max != 0)
14 fprintf (stderr, "min: %d, max: %d\n", Min, Max);
  /src/external/gpl3/gdb.old/dist/sim/testsuite/cris/c/
sched5.c 11 int Max = sched_get_priority_max (SCHED_OTHER);
12 if (Min != 0 || Max != 0)
14 fprintf (stderr, "min: %d, max: %d\n", Min, Max);
  /src/games/robots/
make_level.c 74 Max.y = 0;
75 Max.x = 0;
89 if (cp->y > Max.y)
90 Max.y = cp->y;
91 if (cp->x > Max.x)
92 Max.x = cp->x;
move_robs.c 60 move(Max.y, Max.x);
83 Max.y = 0;
84 Max.x = 0;
105 if (rp->y > Max.y)
106 Max.y = rp->y;
107 if (rp->x > Max.x)
108 Max.x = rp->x;
121 move(Max.y, Max.x)
    [all...]
extern.c 79 COORD Max; /* Max area robots take up */
play_level.c 68 move(Max.y, Max.x);
  /src/external/gpl2/gettext/dist/gnulib-local/lib/
xgetcwd.c 33 # define getcwd(Buf, Max) (getcwd) (Buf, Max, 0)
39 # define getcwd(Buf, Max) getwd (Buf)
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolUnknown.h 21 S->getSymTag() >= PDB_SymType::Max)
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
BytesOutputStyle.h 36 void dumpBlockRanges(uint32_t Min, uint32_t Max);
37 void dumpByteRanges(uint32_t Min, uint32_t Max);
BytesOutputStyle.cpp 92 uint32_t Max = R.Max.getValueOr(R.Min);
94 if (Max < R.Min)
96 "Invalid block range specified. Max < Min",
98 if (Max >= File.getBlockCount())
103 dumpBlockRanges(R.Min, Max);
109 uint32_t Max = R.Max.getValueOr(File.getFileSize());
111 if (Max < R.Min)
112 return make_error<StringError>("Invalid byte range specified. Max < Min"
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MCA/
Support.cpp 88 double Max = static_cast<double>(NumMicroOps) / DispatchWidth;
100 Max = std::max(Max, Throughput);
103 // The block reciprocal throughput is computed as the MAX of:
106 return Max;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
xray-graph.h 39 enum class StatType { NONE, COUNT, MIN, MED, PCT90, PCT99, MAX, SUM };
48 double Max;
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,
    [all...]
xray-color-helper.cpp 70 // Being below min, and missing left being above max.
87 int Max = 0;
91 if (Scaled[i] > Scaled[Max])
92 Max = i;
95 double C = Scaled[Max] - Scaled[Min];
98 (C == 0) ? 0 : (Scaled[(Max + 1) % 3] - Scaled[(Max + 2) % 3]) / C;
99 HPrime = HPrime + 2.0 * Max;
103 double V = Scaled[Max];
113 double n = std::max(std::min(B, 1.0), 0.0)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_buffer_queue.h 85 size_t Max = 0;
88 DCHECK_NE(Offset, Max);
91 } while (!Buffers[Offset].Used && Offset != Max);
108 Max(M) {
111 while (!Buffers[Offset].Used && Offset != Max) {
125 DCHECK_EQ(L.Max, R.Max);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
LowerTypeTests.h 63 uint64_t Min = std::numeric_limits<uint64_t>::max();
64 uint64_t Max = 0;
71 if (Max < Offset)
72 Max = Offset;
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
VerifyDiagnosticConsumer.h 196 bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max);
200 static const unsigned MaxCount = std::numeric_limits<unsigned>::max();
205 unsigned Min, Max;
223 unsigned Min, unsigned Max)
225 Min(Min), Max(Max), MatchAnyLine(MatchAnyLine || MatchAnyFileAndLine),
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
segmented_array_test.cc 203 constexpr uint64_t Max = 9;
205 for (uint64_t i = 0; i < Max; ++i) {
215 auto Counter = Max;
216 ASSERT_EQ(Data.size(), size_t(Max));
240 constexpr uint64_t Max = 9;
242 for (uint64_t i = 0; i < Max; ++i) {
252 auto Counter = Max;
253 ASSERT_EQ(Data->size(), size_t(Max));
264 for (uint64_t i = 0; i < Max; ++i) {
281 for (uint64_t i = 0; i < Max; ++i)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVSubtarget.cpp 31 "riscv-v-vector-bits-max",
43 "riscv-v-fixed-length-vector-lmul-max",
118 unsigned Max = std::max(RVVVectorBitsMin, RVVVectorBitsMax);
119 return PowerOf2Floor(Max < 128 ? 0 : Max);
143 return PowerOf2Floor(std::max<unsigned>(RVVVectorLMULMax, 1));
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag.cc 255 MemoryLocation Max = addNoOverflow(Loc, MinBytesNearLoc);
259 Max = __sanitizer::Max(Ranges[I].getEnd().getMemoryLocation(), Max);
264 if (Max - Min > BytesToShow)
265 Min = __sanitizer::Min(Max - BytesToShow, OrigMin);
266 Max = addNoOverflow(Min, BytesToShow);
268 if (!IsAccessibleMemoryRange(Min, Max - Min)) {
275 for (uptr P = Min; P != Max; ++P) {
284 for (uptr P = Min; P != Max; ++P)
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_diag.cpp 268 MemoryLocation Max = addNoOverflow(Loc, MinBytesNearLoc);
272 Max = __sanitizer::Max(Ranges[I].getEnd().getMemoryLocation(), Max);
277 if (Max - Min > BytesToShow)
278 Min = __sanitizer::Min(Max - BytesToShow, OrigMin);
279 Max = addNoOverflow(Min, BytesToShow);
281 if (!IsAccessibleMemoryRange(Min, Max - Min)) {
288 for (uptr P = Min; P != Max; ++P) {
297 for (uptr P = Min; P != Max; ++P)
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_diag.cpp 262 MemoryLocation Max = addNoOverflow(Loc, MinBytesNearLoc);
266 Max = __sanitizer::Max(Ranges[I].getEnd().getMemoryLocation(), Max);
271 if (Max - Min > BytesToShow)
272 Min = __sanitizer::Min(Max - BytesToShow, OrigMin);
273 Max = addNoOverflow(Min, BytesToShow);
275 if (!IsAccessibleMemoryRange(Min, Max - Min)) {
282 for (uptr P = Min; P != Max; ++P) {
291 for (uptr P = Min; P != Max; ++P)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Integral.h 66 static const auto Max = std::numeric_limits<T>::max();
154 static Integral max(unsigned NumBits) { function in class:clang::interp::Integral
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;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
APFixedPoint.cpp 72 unsigned CommonWidth = std::max(Val.getBitWidth(), OtherWidth);
81 unsigned CommonScale = std::max(getScale(), OtherScale);
153 unsigned CommonScale = std::max(getScale(), Other.getScale());
155 std::max(getIntegralBits(), Other.getIntegralBits()) + CommonScale;
262 APSInt Max = APFixedPoint::getMax(CommonFXSema).getValue()
269 else if (Result > Max)
270 Result = Max;
272 Overflowed = Result < Min || Result > Max;
317 APSInt Max = APFixedPoint::getMax(CommonFXSema).getValue()
324 else if (Result > Max)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/FuzzMutate/
Random.h 20 /// 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) {
22 return std::uniform_int_distribution<T>(Min, Max)(Gen);
28 std::numeric_limits<T>::max());
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-csharp-forms/
hello.cs 61 int totalWidth = Math.Max(Math.Max(label1.PreferredWidth, label2.PreferredWidth),

Completed in 33 milliseconds

1 2 3 4 5 6 7 8 910