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

1 2 3 4

  /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/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/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/fuzzer/
FuzzerDefs.h 146 template <class T> T Max(T a, T b) { return a > b ? a : b; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
AssumeBundleQueries.h 74 unsigned Max;
110 /// This is only intended for use in std::min/std::max between attribute that
115 "This is only intend for use in min/max to select the best for "
  /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/bsd/libbind/dist/irs/
irp_ho.c 62 #define Max(a,b) ((a) > (b) ? (a) : (b))
  /src/games/robots/
extern.c 79 COORD Max; /* Max area robots take up */
  /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/tools/llvm-xray/
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...]
xray-account.cpp 72 MAX,
86 clEnumValN(SortField::MAX, "max", "maximum function durations"),
125 MM = std::make_pair(std::min(MM.first, V), std::max(MM.second, V));
128 template <class T> T diff(T L, T R) { return std::max(L, R) - std::min(L, R); }
135 assert(Depth >= 0 && Depth < std::numeric_limits<decltype(Depth)>::max());
266 double Max;
278 R.Max = *MinMax.second;
324 Row.Max /= CycleFrequency;
352 case SortField::MAX
    [all...]
  /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/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/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/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/clang/lib/StaticAnalyzer/Checkers/
Iterator.cpp 276 llvm::APSInt Max = AT.getMaxValue() / AT.getValue(Scale);
279 nonloc::ConcreteInt(Max), SVB.getConditionType());
286 llvm::APSInt Min = -Max;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
KnownBits.h 142 APInt Max = ~Zero;
145 Max.clearSignBit();
146 return Max;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CriticalAntiDepBreaker.cpp 457 const SUnit *Max = nullptr;
461 if (!Max || SU->getDepth() + SU->Latency > Max->getDepth() + Max->Latency)
462 Max = SU;
464 assert(Max && "Failed to find bottom of the critical path");
469 << (Max->getDepth() + Max->Latency) << "\n");
481 const SUnit *CriticalPathSU = Max;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantRange.cpp 14 // ranges (other integral ranges use min/max values for special range values):
55 "Lower == Upper, but they aren't min or max value!");
432 return std::max(getSignedMin().getMinSignedBits(),
670 APInt Max = APInt::getMaxValue(BW).zextOrSelf(ResultBitWidth);
671 return ConstantRange(std::move(Min), std::move(Max));
1007 // be non-wrapping, round the result min and max value to the appropriate
1042 // Similarly for the upper bound, swapping min for max.
1052 ConstantRange Result_sext(std::min(L, Compare), std::max(L, Compare) + 1);
1332 APInt max = getUnsignedMax();
1340 if (Other_umax.ugt(max.countLeadingZeros())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPURegBankCombiner.cpp 50 unsigned Min, Max, Med;
91 // 4 operand commutes of: min(max(Val, K0), K1).
92 // Find K1 from outer instr: min(max(...), K1) or min(K1, max(...)).
93 // Find K0 and Val from inner instr: max(K0, Val) or max(Val, K0).
94 // 4 operand commutes of: max(min(Val, K1), K0).
95 // Find K0 from outer instr: max(min(...), K0) or max(K0, min(...)).
101 MMMOpc.Min, m_CommutativeBinOp(MMMOpc.Max, m_Reg(Val), m_Cst(K0))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/MCTargetDesc/
AVRAsmBackend.cpp 44 int64_t Max = maxIntN(Width);
47 " to " + std::to_string(Max) + ")";
63 int64_t Max = maxUIntN(Width);
66 std::to_string(Max) + ")";
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
BenchmarkResult.h 78 enum ResultAggregationModeE { Min, Max, Mean, MinVariance };
107 double max() const { return MaxValue; } function in class:llvm::exegesis::PerInstructionStats
116 double MinValue = std::numeric_limits<double>::max();
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
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...]
llvm-pdbutil.h 111 llvm::Optional<uint64_t> Max;

Completed in 29 milliseconds

1 2 3 4