Searched refs:Min (Results 51 - 75 of 147) sorted by relevance

123456

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dsize_class_map.h85 return Max(1U, Min(MaxNumCachedHint, N));
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_libcdep.cpp132 out_buf += __sanitizer::Min<uptr>(n, frame_desc.length());
H A Dsanitizer_unwind_linux_libcdep.cpp129 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)};
H A Dsanitizer_deadlock_detector1.cpp130 len = Min<uptr>(len, DDReport::kMaxLoopSize);
H A Dsanitizer_allocator_local_cache.h249 const uptr count = Min(c->max_count / 2, c->count);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DValueTypes.h83 /// Returns the EVT that represents a vector EC.Min elements in length,
90 return getExtendedVectorVT(Context, VT, EC.Min);
369 assert(!(EltCnt.Min & 1) && "Splitting vector, but not in half!");
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp253 const llvm::APSInt &Min = BVF.getValue(R[I].first, T); local
255 assert(Min <= Max);
256 State = CM.assumeInclusiveRange(State, *N, Min, Max, false);
304 const llvm::APSInt &Min = BVF.getValue(R[I - 1].second + 1ULL, T); local
306 assert(Min <= Max);
307 State = CM.assumeInclusiveRange(State, *N, Min, Max, false);
/freebsd-11-stable/usr.bin/ministat/
H A Dministat.c172 Min(struct dataset *ds) function
219 printf(" N Min Max Median Avg Stddev\n");
227 ds->n, Min(ds), Max(ds), Median(ds), Avg(ds), Stddev(ds));
311 AdjPlot(Min(ds));
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp332 nonloc::ConcreteInt Min(BVF.getMinValue(indexTy));
336 Idx.castAs<NonLoc>(), Min, indexTy);
343 Min, indexTy);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DTypeBasedAliasAnalysis.cpp408 FunctionModRefBehavior Min = FMRB_UnknownModRefBehavior;
415 Min = FMRB_OnlyReadsMemory;
417 return FunctionModRefBehavior(AAResultBase::getModRefBehavior(Call) & Min);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp351 // Val >= Min && Val <= Hi --> Val <= Hi
507 APInt Min = APIntOps::smin(ValRange.getSignedMin(), Low); local
510 LowerBound = ConstantInt::get(SI->getContext(), Min);
512 DefaultIsUnreachableFromSwitch = (Min + (NumSimpleCases - 1) == Max);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRAsmBackend.cpp42 int64_t Min = minIntN(Width); local
45 Diagnostic += " (expected an integer in the range " + std::to_string(Min) +
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DTriple.h340 unsigned Maj, Min, Micro; local
341 getOSVersion(Maj, Min, Micro);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_allocator.cpp124 max_malloc_size = Min(common_flags()->max_allocation_size_mb << 20,
225 uptr memcpy_size = Min(new_size, old_size);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_malloc_win.cpp161 REAL(memcpy)(new_alloc, p, Min<size_t>(size, old_size));
343 Min<size_t>(dwBytes, old_usable_size));
H A Dasan_malloc_linux.cpp109 const uptr copy_size = Min(size, kDlsymAllocPoolSize - offset);
H A Dasan_allocator.cpp361 return Min(Max(rz_log, RZSize2Log(min_rz)), RZSize2Log(max_rz));
461 Min(kMaxAllowedMallocSize, max_user_defined_malloc_size);
551 uptr fill_size = Min(size, (uptr)fl.max_malloc_fill_size);
598 size_to_fill = Min(size_to_fill, (uptr)fl.max_free_fill_size);
683 uptr memcpy_size = Min(new_size, m->UsedSize());
H A Dasan_interceptors.cpp408 uptr copy_length = Min(size, from_length + 1);
480 uptr from_size = Min(size, MaybeRealStrnlen(from, size) + 1);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DTextDiagnostic.cpp959 unsigned Min = std::min(A.first, B.first);
961 if (Max - Min + 1 <= MaxRange)
962 return {Min, Max};
978 A.first = std::max(Min + Slack, A.first) - Slack;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_interceptors.cpp149 uptr copy_size = Min(size, kDlsymAllocPoolSize - offset);
H A Dhwasan_report.cpp144 uptr frames = Min((uptr)flags()->stack_history_size, sa->size());
529 Min(access_size, static_cast<uptr>(offset) + (1 << kShadowScale)));
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerLoop.cpp676 Min(MaxMutationLen, Max(U.size(), TmpMaxMutationLen));
734 MinSize = Min(File.Size, MinSize);
799 Min(MaxMutationLen, Max(size_t(4), Corpus.MaxInputSize()));
822 Min(MaxMutationLen, TmpMaxMutationLen + Log(TmpMaxMutationLen));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerAtomic.cpp78 case AtomicRMWInst::Min:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp602 GepNode *Min = *std::min_element(S.begin(), S.end(), NodeOrder); local
603 std::pair<ProjMap::iterator,bool> Ins = PM.insert(std::make_pair(&S, Min));
609 UseSet &MinUs = Uses[Min];
614 // original values of Min.
620 Uses.erase(Min);
623 assert((Min->Flags & Flags) == Min->Flags);
624 Min->Flags = Flags;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.h110 uint64_t Min; member in struct:opts::bytes::NumberRange

Completed in 733 milliseconds

123456