| /freebsd-12.1/contrib/llvm/tools/llvm-xray/ |
| H A D | xray-graph.h | 49 double Max; member 171 A.Pct90 + B.Pct90, A.Pct99 + B.Pct99, A.Max + B.Max, 180 A.Pct90 - B.Pct90, A.Pct99 - B.Pct99, A.Max - B.Max, 193 A.Max / B, 205 A.Max * B, 219 A.Pct90 * B.Pct90, A.Pct99 * B.Pct99, A.Max * B.Max, 227 A.Pct90 / B.Pct90, A.Pct99 / B.Pct99, A.Max / B.Max,
|
| H A D | xray-color-helper.cpp | 88 int Max = 0; in convertToHSV() local 92 if (Scaled[i] > Scaled[Max]) in convertToHSV() 93 Max = i; in convertToHSV() 96 double C = Scaled[Max] - Scaled[Min]; in convertToHSV() 99 (C == 0) ? 0 : (Scaled[(Max + 1) % 3] - Scaled[(Max + 2) % 3]) / C; in convertToHSV() 100 HPrime = HPrime + 2.0 * Max; in convertToHSV() 104 double V = Scaled[Max]; in convertToHSV()
|
| H A D | xray-graph.cpp | 169 if (S.Max < L) in updateStat() 170 S.Max = L; in updateStat() 279 M.Max = std::max(M.Max, S.Max); in updateMaxStats() 340 &TimeStat::Max, &TimeStat::Sum}; in getString() 362 &TimeStat::Max, &TimeStat::Sum}; in getDouble()
|
| H A D | xray-account.cpp | 231 double Max; member 243 R.Max = *MinMax.second; in getStats() 287 Row.Max /= CycleFrequency; in exportStats() 316 sortByKey(Results, [](const TupleType &X) { return std::get<2>(X).Max; }); in exportStats() 366 Row.Pct90, Row.Pct99, Row.Max, Row.Sum) in exportStatsAsText() 376 << Row.Pct90 << ',' << Row.Pct99 << ',' << Row.Max << "," << Row.Sum in exportStatsAsCSV()
|
| /freebsd-12.1/contrib/compiler-rt/lib/xray/ |
| H A D | xray_buffer_queue.h | 85 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);
|
| H A D | xray_function_call_trie.h | 194 explicit Allocators(uptr Max) XRAY_NEVER_INSTRUMENT { in Allocators() 195 new (&NodeAllocatorStorage) NodeAllocatorType(Max); in Allocators() 199 new (&RootAllocatorStorage) RootAllocatorType(Max); in Allocators() 203 new (&ShadowStackAllocatorStorage) ShadowStackAllocatorType(Max); in Allocators() 207 new (&NodeIdPairAllocatorStorage) NodeIdPairAllocatorType(Max); in Allocators() 311 static Allocators InitAllocatorsCustom(uptr Max) XRAY_NEVER_INSTRUMENT { in InitAllocatorsCustom() argument 312 Allocators A(Max); in InitAllocatorsCustom()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/ |
| H A D | BytesOutputStyle.cpp | 93 uint32_t Max = R.Max.getValueOr(R.Min); in dump() local 95 if (Max < R.Min) in dump() 99 if (Max >= File.getBlockCount()) in dump() 104 dumpBlockRanges(R.Min, Max); in dump() 110 uint32_t Max = R.Max.getValueOr(File.getFileSize()); in dump() local 112 if (Max < R.Min) in dump() 115 if (Max >= File.getFileSize()) in dump() 120 dumpByteRanges(R.Min, Max); in dump() 208 void BytesOutputStyle::dumpBlockRanges(uint32_t Min, uint32_t Max) { in dumpBlockRanges() argument 212 for (uint32_t I = Min; I <= Max; ++I) { in dumpBlockRanges() [all …]
|
| H A D | BytesOutputStyle.h | 37 void dumpBlockRanges(uint32_t Min, uint32_t Max); 38 void dumpByteRanges(uint32_t Min, uint32_t Max);
|
| /freebsd-12.1/contrib/compiler-rt/lib/ubsan/ |
| H A D | ubsan_diag.cc | 255 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()
|
| /freebsd-12.1/contrib/llvm/lib/MCA/ |
| H A D | Support.cpp | 72 double Max = static_cast<double>(NumMicroOps) / DispatchWidth; in computeBlockRThroughput() local 84 Max = std::max(Max, Throughput); in computeBlockRThroughput() 90 return Max; in computeBlockRThroughput()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Frontend/ |
| H A D | VerifyDiagnosticConsumer.h | 158 unsigned Min, unsigned Max); 167 unsigned Min, Max; variable 183 bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max) in Directive() argument 185 Text(Text), Min(Min), Max(Max), MatchAnyLine(MatchAnyLine) { in Directive()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/ |
| H A D | VerifyDiagnosticConsumer.cpp | 191 unsigned Max) in StandardDirective() argument 210 : Directive(DirectiveLoc, DiagnosticLoc, MatchAnyLine, Text, Min, Max), in RegexDirective() 518 unsigned Max = 1; in ParseDirective() local 524 Max = Directive::MaxCount; in ParseDirective() 528 if (!PH.Next(Max) || Max < Min) { in ParseDirective() 535 Max = Min; in ParseDirective() 539 Max = Directive::MaxCount; in ParseDirective() 587 RegexKind, Pos, ExpectedLoc, MatchAnyLine, Text, Min, Max); in ParseDirective() 787 for (unsigned i = 0; i < D.Max; ++i) { in CheckLists() 974 unsigned Min, unsigned Max) { in create() argument [all …]
|
| /freebsd-12.1/contrib/llvm/include/llvm/Transforms/IPO/ |
| H A D | LowerTypeTests.h | 65 uint64_t Max = 0; member 72 if (Max < Offset) in addOffset() 73 Max = Offset; in addOffset()
|
| /freebsd-12.1/contrib/llvm/lib/Target/Hexagon/ |
| H A D | HexagonConstExtenders.cpp | 73 Max = adjustDown(std::min(Max, A.Max), Align, Offset); in intersect() 77 Max = -1; in intersect() 80 if (Min > Max) in intersect() 86 Max += S; in shift() 96 Max = (INT_MAX-D > Max) ? Max+D : INT_MAX; in extendBy() 100 return Min > Max; in empty() 106 return Min == R.Min && Max == R.Max && Align == R.Align; in operator ==() 114 if (Max != R.Max) in operator <() 115 return Max < R.Max; in operator <() 435 if (OR.Min > OR.Max) in operator <<() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | CriticalAntiDepBreaker.cpp | 454 const SUnit *Max = nullptr; in BreakAntiDependencies() local 458 if (!Max || SU->getDepth() + SU->Latency > Max->getDepth() + Max->Latency) in BreakAntiDependencies() 459 Max = SU; in BreakAntiDependencies() 465 << (Max->getDepth() + Max->Latency) << "\n"); in BreakAntiDependencies() 477 const SUnit *CriticalPathSU = Max; in BreakAntiDependencies()
|
| /freebsd-12.1/contrib/llvm/lib/Target/Lanai/ |
| H A D | LanaiSchedule.td | 31 // Max micro-ops that can be buffered for optimized loop dispatch/execution. 39 // Max micro-ops that may be scheduled per cycle. [default = 1] 48 // Max micro-ops that can be buffered. [default = -1]
|
| /freebsd-12.1/contrib/bearssl/T0/ |
| H A D | TPointerExpr.cs | 68 numBits = Math.Max(numBits, BitLength(rmin)); in GetMaxBitLength() 71 numBits = Math.Max(numBits, BitLength(rmax)); in GetMaxBitLength()
|
| H A D | WordInterpreted.cs | 191 mds = Math.Max(mds, c + w.MaxDataStack); in AnalyseFlow() 192 mrs = Math.Max(mrs, w.MaxReturnStack); in AnalyseFlow() 207 mds = Math.Max(mds, c + a); in AnalyseFlow()
|
| /freebsd-12.1/contrib/compiler-rt/lib/asan/ |
| H A D | asan_poisoning.cc | 163 *beg.chunk = Max(value, end.offset); in __asan_unpoison_memory_region() 174 *end.chunk = Max(end.value, end.offset); in __asan_unpoison_memory_region() 317 *shadow_end = Max(end_value, end_offset); in PoisonAlignedStackMemory() 377 uptr c = RoundUpTo(Max(old_mid, new_mid), granularity); in __sanitizer_annotate_contiguous_container() 420 uptr r2_beg = Max(beg, mid - kMaxRangeToCheck); in __sanitizer_contiguous_container_find_bad_address() 422 uptr r3_beg = Max(end - kMaxRangeToCheck, mid); in __sanitizer_contiguous_container_find_bad_address()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/ |
| H A D | GCNMinRegStrategy.cpp | 120 T Max = std::numeric_limits<T>::min(); in findMax() local 124 if (Cur >= Max) { in findMax() 125 if (Cur > Max) { in findMax() 126 Max = Cur; in findMax()
|
| /freebsd-12.1/usr.bin/ministat/ |
| H A D | README | 22 N Min Max Median Avg Stddev 40 N Min Max Median Avg Stddev
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | BlockFrequencyInfoImpl.cpp | 462 const Scaled64 &Min, const Scaled64 &Max) { in convertFloatingToInteger() argument 470 const unsigned SpreadBits = (Max / Min).lg(); in convertFloatingToInteger() 481 ScalingFactor = Scaled64(1, MaxBits) / Max; in convertFloatingToInteger() 485 LLVM_DEBUG(dbgs() << "float-to-int: min = " << Min << ", max = " << Max in convertFloatingToInteger() 535 auto Max = Scaled64::getZero(); in finalizeMetrics() local 539 Max = std::max(Max, Freqs[Index].Scaled); in finalizeMetrics() 543 convertFloatingToInteger(*this, Min, Max); in finalizeMetrics()
|
| /freebsd-12.1/contrib/llvm/include/llvm/FuzzMutate/ |
| H A D | Random.h | 22 template <typename T, typename GenT> T uniform(GenT &Gen, T Min, T Max) { in uniform() argument 23 return std::uniform_int_distribution<T>(Min, Max)(Gen); in uniform()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AVR/MCTargetDesc/ |
| H A D | AVRAsmBackend.cpp | 44 int64_t Max = maxIntN(Width); in signed_width() local 47 " to " + std::to_string(Max) + ")"; in signed_width() 62 int64_t Max = maxUIntN(Width); in unsigned_width() local 65 std::to_string(Max) + ")"; in unsigned_width()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | TargetInfo.h | 809 int Max; member 820 ImmRange.Min = ImmRange.Max = 0; in ConstraintInfo() 852 return !ImmRange.isConstrained || (Value.sge(ImmRange.Min) && Value.sle(ImmRange.Max)); in isValidAsmImmediate() 860 void setRequiresImmediate(int Min, int Max) { in setRequiresImmediate() 863 ImmRange.Max = Max; in setRequiresImmediate()
|