Searched refs:Max (Results 1 - 25 of 31) sorted by relevance

12

/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h146 StringRef Text, unsigned Min, unsigned Max);
154 unsigned Min, Max; member in class:clang::VerifyDiagnosticConsumer::Directive
167 StringRef Text, unsigned Min, unsigned Max)
169 Text(Text), Min(Min), Max(Max) {
166 Directive(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, StringRef Text, unsigned Min, unsigned Max) argument
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp166 StringRef Text, unsigned Min, unsigned Max)
167 : Directive(DirectiveLoc, DiagnosticLoc, Text, Min, Max) { }
184 StringRef Text, unsigned Min, unsigned Max)
185 : Directive(DirectiveLoc, DiagnosticLoc, Text, Min, Max), Regex(Text) { }
402 unsigned Max = 1; local
408 Max = Directive::MaxCount;
412 if (!PH.Next(Max) || Max < Min) {
419 Max = Min;
423 Max
165 StandardDirective(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, StringRef Text, unsigned Min, unsigned Max) argument
183 RegexDirective(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, StringRef Text, unsigned Min, unsigned Max) argument
823 create(bool RegexKind, SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, StringRef Text, unsigned Min, unsigned Max) argument
[all...]
H A DInitPreprocessor.cpp133 const char *DenormMin, *Epsilon, *Max, *Min; local
152 Max = PickFP(Sem, "3.40282347e+38", "1.7976931348623157e+308",
172 Builder.defineMacro(DefPrefix + "MAX__", Twine(Max)+Ext);
/freebsd-10.1-release/contrib/llvm/lib/CodeGen/
H A DCriticalAntiDepBreaker.cpp422 const SUnit *Max = 0; local
426 if (!Max || SU->getDepth() + SU->Latency > Max->getDepth() + Max->Latency)
427 Max = SU;
433 << (Max->getDepth() + Max->Latency) << "\n");
445 const SUnit *CriticalPathSU = Max;
H A DRegisterPressure.cpp59 dbgs() << "Max Pressure: ";
374 if (N <= Max) {
378 Max = Size;
/freebsd-10.1-release/cddl/contrib/dtracetoolkit/Apps/
H A Dweblatency.d163 @Max[self->host] = max((timestamp - this->start)/1000000);
185 printa("%-32s %@11d\n", @Max);
/freebsd-10.1-release/cddl/contrib/dtracetoolkit/Bin/
H A Dweblatency.d163 @Max[self->host] = max((timestamp - this->start)/1000000);
185 printa("%-32s %@11d\n", @Max);
/freebsd-10.1-release/contrib/llvm/include/llvm/Analysis/
H A DScalarEvolution.h262 const SCEV *Max; member in struct:llvm::ScalarEvolution::ExitLimit
264 /*implicit*/ ExitLimit(const SCEV *E) : Exact(E), Max(E) {}
266 ExitLimit(const SCEV *E, const SCEV *M) : Exact(E), Max(M) {}
272 !isa<SCEVCouldNotCompute>(Max);
308 /// Max - An expression indicating the least maximum backedge-taken
310 const SCEV *Max; member in class:llvm::ScalarEvolution::BackedgeTakenInfo
313 BackedgeTakenInfo() : Max(0) {}
324 return ExitNotTaken.ExitingBlock || !isa<SCEVCouldNotCompute>(Max);
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp236 // intersection with the two ranges [Min, Upper] and [Lower, Max],
495 // Special case for Int == Max. This is always false.
497 llvm::APSInt Max = AdjustmentType.getMaxValue(); local
498 if (ComparisonVal == Max)
502 llvm::APSInt Upper = Max-Adjustment;
530 llvm::APSInt Max = AdjustmentType.getMaxValue();
532 llvm::APSInt Upper = Max-Adjustment;
553 // Special case for Int == Max. This is always feasible.
555 llvm::APSInt Max = AdjustmentType.getMaxValue(); local
556 if (ComparisonVal == Max)
[all...]
/freebsd-10.1-release/contrib/llvm/include/llvm/CodeGen/
H A DRegisterPressure.h159 unsigned Max;
161 PressureDiffs(): PDiffArray(0), Size(0), Max(0) {}
/freebsd-10.1-release/contrib/llvm/lib/Transforms/Scalar/
H A DLowerAtomic.cpp70 case AtomicRMWInst::Max:
H A DLoopStrengthReduce.cpp1947 const SCEVNAryExpr *Max = 0; local
1950 Max = S;
1953 Max = S;
1956 Max = U;
1964 if (Max->getNumOperands() != 2)
1967 const SCEV *MaxLHS = Max->getOperand(0);
1968 const SCEV *MaxRHS = Max->getOperand(1);
2010 // Max doesn't match expected pattern.
/freebsd-10.1-release/usr.bin/ministat/
H A Dministat.c178 Max(struct dataset *ds) function
216 printf(" N Min Max Median Avg Stddev\n");
224 ds->n, Min(ds), Max(ds), Median(ds), Avg(ds), Stddev(ds));
309 AdjPlot(Max(ds));
/freebsd-10.1-release/sys/contrib/dev/acpica/compiler/
H A Daslsupport.l352 sprintf (MsgBuffer, "Max %u", Gbl_LineBufferSize);
822 Gbl_Files[ASL_FILE_INPUT].Filename, "Max length 4096");
/freebsd-10.1-release/contrib/llvm/lib/Analysis/
H A DScalarEvolution.cpp3422 APInt Max = APIntOps::umax(StartRange.getUnsignedMax(),
3424 if (Min.isMinValue() && Max.isMaxValue())
3427 ConservativeResult.intersectWith(ConstantRange(Min, Max+1)));
3573 APInt Max = APIntOps::smax(StartRange.getSignedMax(),
3575 if (Min.isMinSignedValue() && Max.isMaxSignedValue())
3578 ConservativeResult.intersectWith(ConstantRange(Min, Max+1)));
4275 return Max ? Max : SE->getCouldNotCompute();
4280 if (Max && Max !
[all...]
/freebsd-10.1-release/sys/boot/i386/boot2/
H A Dboot1.S295 movb %dh,%ch # Max head number
306 movb %ch,%bl # Max head number
/freebsd-10.1-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp179 APInt& Min, APInt& Max) {
182 KnownZero.getBitWidth() == Max.getBitWidth() &&
183 "KnownZero, KnownOne and Min, Max must have equal bitwidth.");
189 Max = KnownOne|UnknownBits;
193 Max.clearBit(Max.getBitWidth()-1);
203 APInt &Min, APInt &Max) {
206 KnownZero.getBitWidth() == Max.getBitWidth() &&
207 "Ty, KnownZero, KnownOne and Min, Max must have equal bitwidth.");
213 Max
177 ComputeSignedMinMaxValuesFromKnownBits(const APInt& KnownZero, const APInt& KnownOne, APInt& Min, APInt& Max) argument
201 ComputeUnsignedMinMaxValuesFromKnownBits(const APInt &KnownZero, const APInt &KnownOne, APInt &Min, APInt &Max) argument
[all...]
H A DInstCombineMulDivRem.cpp94 APInt Max = APInt::getSignedMaxValue(W).sext(W * 2); local
95 return MulExt.slt(Min) || MulExt.sgt(Max);
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprScalar.cpp583 llvm::Value *Max = llvm::ConstantInt::get(VMContext, LargestInt);
585 Check = Builder.CreateICmpULE(Src, Max);
589 llvm::Value *LE = Builder.CreateICmpSLE(Src, Max);
614 APSInt Max = APSInt::getMaxValue(Width, Unsigned); local
616 if (MaxSrc.convertFromAPInt(Max, !Unsigned, APFloat::rmTowardZero) &
/freebsd-10.1-release/contrib/llvm/lib/IR/
H A DConstants.cpp1165 uint64_t Max = (1ll << NumBits) - 1;
1166 return Val <= Max;
1176 int64_t Max = (1ll << (NumBits-1)) - 1; local
1177 return (Val >= Min && Val <= Max);
H A DAsmWriter.cpp726 case AtomicRMWInst::Max: Out << " max"; break;
/freebsd-10.1-release/contrib/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp388 int64_t Max = scale * ((1LL << (field_width - 1)) - 1); local
389 return (Val % scale) == 0 && Val >= Min && Val <= Max;
/freebsd-10.1-release/contrib/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp119 case AtomicRMWInst::Max: return bitc::RMW_MAX;
/freebsd-10.1-release/contrib/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp625 int64_t Max = Align * ((1LL << width) - 1); local
626 return ((Val % Align) == 0) && (Val >= 0) && (Val <= Max);
639 int64_t Max = Align * ((1LL << (width-1)) - 1); local
641 return ((Val % Align) == 0) && (Val >= Min) && (Val <= Max);
/freebsd-10.1-release/contrib/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp1574 case AtomicRMWInst::Max: Operation = "AtomicRMWInst::Max"; break;

Completed in 274 milliseconds

12