Searched defs:Max (Results 1 - 19 of 19) sorted by relevance

/external/skia/bench/
H A Dbench_util.py45 Max = _ExtremeType(1, "Max") variable
103 min_x = Max
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DEnumerableExtensions.cs131 #region Max
133 public static int Max(IEnumerable<int> source) { method in class:Antlr.Runtime.JavaExtensions.EnumerableExtensions
136 return Iterate(source, int.MinValue, delegate(int a, int b){return Math.Max(a, b);});
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h139 template<class T> T Max(T a, T b) { return a > b ? a : b; } function in namespace:__sanitizer
/external/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h120 StringRef Text, unsigned Min, unsigned Max);
128 unsigned Min, Max; member in class:clang::VerifyDiagnosticConsumer::Directive
141 StringRef Text, unsigned Min, unsigned Max)
143 Text(Text), Min(Min), Max(Max) {
140 Directive(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, StringRef Text, unsigned Min, unsigned Max) argument
/external/llvm/lib/CodeGen/
H A DCriticalAntiDepBreaker.cpp428 const SUnit *Max = 0; local
432 if (!Max || SU->getDepth() + SU->Latency > Max->getDepth() + Max->Latency)
433 Max = SU;
439 << (Max->getDepth() + Max->Latency) << "\n");
451 const SUnit *CriticalPathSU = Max;
/external/opencv/cvaux/src/
H A Dcvfacedetection.cpp197 double Max = 0; local
218 if (CurStat > Max)
219 Max = CurStat;
227 if (CurStat == Max)
/external/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp239 // intersection with the two ranges [Min, Upper] and [Lower, Max],
481 // Special case for Int == Max. This is always false.
483 llvm::APSInt Max = AdjustmentType.getMaxValue(); local
484 if (ComparisonVal == Max)
488 llvm::APSInt Upper = Max-Adjustment;
516 llvm::APSInt Max = AdjustmentType.getMaxValue();
518 llvm::APSInt Upper = Max-Adjustment;
539 // Special case for Int == Max. This is always feasible.
541 llvm::APSInt Max = AdjustmentType.getMaxValue(); local
542 if (ComparisonVal == Max)
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp95 APInt Max = APInt::getSignedMaxValue(W).sext(W * 2); local
96 return MulExt.slt(Min) || MulExt.sgt(Max);
H A DInstCombineCompares.cpp154 APInt& Min, APInt& Max) {
157 KnownZero.getBitWidth() == Max.getBitWidth() &&
158 "KnownZero, KnownOne and Min, Max must have equal bitwidth.");
164 Max = KnownOne|UnknownBits;
168 Max.clearBit(Max.getBitWidth()-1);
178 APInt &Min, APInt &Max) {
181 KnownZero.getBitWidth() == Max.getBitWidth() &&
182 "Ty, KnownZero, KnownOne and Min, Max must have equal bitwidth.");
188 Max
152 ComputeSignedMinMaxValuesFromKnownBits(const APInt& KnownZero, const APInt& KnownOne, APInt& Min, APInt& Max) argument
176 ComputeUnsignedMinMaxValuesFromKnownBits(const APInt &KnownZero, const APInt &KnownOne, APInt &Min, APInt &Max) argument
[all...]
/external/clang/lib/Frontend/
H A DInitPreprocessor.cpp106 const char *DenormMin, *Epsilon, *Max, *Min; local
125 Max = PickFP(Sem, "3.40282347e+38F", "1.7976931348623157e+308",
145 Builder.defineMacro(DefPrefix + "MAX__", Twine(Max));
H A DVerifyDiagnosticConsumer.cpp161 StringRef Text, unsigned Min, unsigned Max)
162 : Directive(DirectiveLoc, DiagnosticLoc, Text, Min, Max) { }
179 StringRef Text, unsigned Min, unsigned Max)
180 : Directive(DirectiveLoc, DiagnosticLoc, Text, Min, Max), Regex(Text) { }
348 unsigned Max = 1; local
354 Max = Directive::MaxCount;
358 if (!PH.Next(Max) || Max < Min) {
365 Max = Min;
369 Max
160 StandardDirective(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, StringRef Text, unsigned Min, unsigned Max) argument
178 RegexDirective(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, StringRef Text, unsigned Min, unsigned Max) argument
738 create(bool RegexKind, SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, StringRef Text, unsigned Min, unsigned Max) argument
[all...]
/external/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);
/external/v8/src/
H A Dutils.h196 T Max(T a, T b) { function in namespace:v8::internal
H A Dlithium-allocator.cc54 static inline LifetimePosition Max(LifetimePosition a, LifetimePosition b) { function in namespace:v8::internal
437 first_interval_->end_ = Max(end, first_interval_->end_);
/external/llvm/lib/VMCore/
H A DConstants.cpp1107 uint64_t Max = (1ll << NumBits) - 1;
1108 return Val <= Max;
1118 int64_t Max = (1ll << (NumBits-1)) - 1; local
1119 return (Val >= Min && Val <= Max);
/external/llvm/include/llvm/
H A DInstructions.h584 Max, enumerator in enum:llvm::AtomicRMWInst::BinOp
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp1852 const SCEVNAryExpr *Max = 0; local
1855 Max = S;
1858 Max = S;
1861 Max = U;
1869 if (Max->getNumOperands() != 2)
1872 const SCEV *MaxLHS = Max->getOperand(0);
1873 const SCEV *MaxRHS = Max->getOperand(1);
1917 // Max doesn't match expected pattern.
/external/svox/pico/lib/
H A Dpicopam.c334 #define Max 66 /*offset to max syllable duration (uint 16,pauses)*/ macro
1924 pos32 = Max;
4293 pos32 = Max;
/external/mdnsresponder/mDNSShared/
H A DCommonServices.h659 /*! @function Max
664 #if( !defined( Max ) )
665 #define Max( X, Y ) ( ( ( X ) > ( Y ) ) ? ( X ) : ( Y ) ) macro

Completed in 3017 milliseconds