Searched defs:Min (Results 1 - 24 of 24) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DTokenTypes.cs44 public const int Min = Up + 1; field in class:Antlr.Runtime.TokenTypes
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenConstants.cs62 public const int Min = Up + 1; field in class:Antlr.Runtime.TokenTypes
/external/skia/bench/
H A Dbench_util.py46 Min = _ExtremeType(-1, "Min") variable
102 max_x = Min
/external/clang/lib/Basic/
H A DTargets.cpp121 unsigned Maj, Min, Rev; local
123 Triple.getMacOSXVersion(Maj, Min, Rev);
126 Triple.getOSVersion(Maj, Min, Rev);
134 PlatformMinVersion = VersionTuple(Maj, Min, Rev);
140 assert(Maj < 10 && Min < 100 && Rev < 100 && "Invalid version!");
143 Str[1] = '0' + (Min / 10);
144 Str[2] = '0' + (Min % 10);
155 assert(Maj < 100 && Min < 100 && Rev < 100 && "Invalid version!");
159 Str[2] = '0' + std::min(Min, 9U);
165 PlatformMinVersion = VersionTuple(Maj, Min, Re
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DEnumerableExtensions.cs154 #region Min
156 public static int Min(IEnumerable<int> source) { method in class:Antlr.Runtime.JavaExtensions.EnumerableExtensions
159 return Iterate(source, int.MaxValue, delegate(int a, int b) { return Math.Min(a, b); });
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h138 template<class T> T Min(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/Analysis/IPA/
H A DGlobalsModRef.cpp125 ModRefBehavior Min = UnknownModRefBehavior; local
129 Min = DoesNotAccessMemory;
131 Min = OnlyReadsMemory;
134 return ModRefBehavior(AliasAnalysis::getModRefBehavior(F) & Min);
141 ModRefBehavior Min = UnknownModRefBehavior; local
146 Min = DoesNotAccessMemory;
148 Min = OnlyReadsMemory;
151 return ModRefBehavior(AliasAnalysis::getModRefBehavior(CS) & Min);
/external/clang/lib/Frontend/
H A DInitPreprocessor.cpp106 const char *DenormMin, *Epsilon, *Max, *Min; local
121 Min = PickFP(Sem, "1.17549435e-38F", "2.2250738585072014e-308",
149 Builder.defineMacro(DefPrefix + "MIN__", Twine(Min));
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) { }
347 unsigned Min = 1; local
349 if (PH.Next(Min)) {
358 if (!PH.Next(Max) || Max < Min) {
365 Max = Min;
410 Min, Max);
587 if (i >= D.Min) brea
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/clang/lib/Sema/
H A DJumpDiagnostics.cpp591 // into the target scope. 'Min' will end up being the index of
593 unsigned Min = TargetScope; local
595 Reachable.set(Min);
598 if (Min == 0) break;
601 if (Scopes[Min].InDiag) break;
603 Min = Scopes[Min].ParentScope;
630 if (Scope == 0 || Scope < Min) break;
/external/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp239 // intersection with the two ranges [Min, Upper] and [Lower, Max],
452 // Special case for Int == Min. This is always false.
454 llvm::APSInt Min = AdjustmentType.getMinValue(); local
455 if (ComparisonVal == Min)
458 llvm::APSInt Lower = Min-Adjustment;
510 // Special case for Int == Min. This is always feasible.
512 llvm::APSInt Min = AdjustmentType.getMinValue(); local
513 if (ComparisonVal == Min)
545 llvm::APSInt Min = AdjustmentType.getMinValue();
546 llvm::APSInt Lower = Min
[all...]
/external/eigen/Eigen/src/Geometry/
H A DAlignedBox.h44 Min=0, Max=1, enumerator in enum:Eigen::AlignedBox::CornerType
/external/llvm/lib/Analysis/
H A DAliasAnalysis.cpp201 ModRefBehavior Min = UnknownModRefBehavior; local
206 Min = getModRefBehavior(F);
209 if (!AA) return Min;
213 return ModRefBehavior(AA->getModRefBehavior(CS) & Min);
H A DBasicAliasAnalysis.cpp612 ModRefBehavior Min = UnknownModRefBehavior;
617 Min = OnlyReadsMemory;
620 return ModRefBehavior(AliasAnalysis::getModRefBehavior(CS) & Min);
638 ModRefBehavior Min = UnknownModRefBehavior; local
642 Min = OnlyReadsMemory;
645 return ModRefBehavior(AliasAnalysis::getModRefBehavior(F) & Min);
701 ModRefResult Min = ModRef; local
720 Min = Ref;
723 Min = Mod;
737 Min
[all...]
/external/llvm/include/llvm/ADT/
H A DTriple.h187 unsigned Maj, Min, Micro; local
188 getOSVersion(Maj, Min, Micro);
/external/v8/src/
H A Dutils.h203 T Min(T a, T b) { function in namespace:v8::internal
H A Dlithium-allocator.cc49 static inline LifetimePosition Min(LifetimePosition a, LifetimePosition b) { function in namespace:v8::internal
436 first_interval_->start_ = Min(start, first_interval_->start_);
1783 free_until_pos[cur_reg] = Min(free_until_pos[cur_reg], next_intersection);
1886 block_pos[cur_reg] = Min(block_pos[cur_reg], next_intersection);
1887 use_pos[cur_reg] = Min(block_pos[cur_reg], use_pos[cur_reg]);
1889 use_pos[cur_reg] = Min(use_pos[cur_reg], next_intersection);
1966 next_intersection = Min(next_intersection, next_pos->pos());
/external/llvm/lib/Transforms/Scalar/
H A DCodeGenPrepare.cpp617 bool Min = (cast<ConstantInt>(II->getArgOperand(1))->getZExtValue() == 1); local
619 Constant *RetVal = ConstantInt::get(ReturnTy, Min ? 0 : -1ULL);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp154 APInt& Min, APInt& Max) {
156 KnownZero.getBitWidth() == Min.getBitWidth() &&
158 "KnownZero, KnownOne and Min, Max must have equal bitwidth.");
163 Min = KnownOne;
167 Min.setBit(Min.getBitWidth()-1);
178 APInt &Min, APInt &Max) {
180 KnownZero.getBitWidth() == Min.getBitWidth() &&
182 "Ty, KnownZero, KnownOne and Min, Max must have equal bitwidth.");
186 Min
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/llvm/include/llvm/
H A DInstructions.h586 Min, enumerator in enum:llvm::AtomicRMWInst::BinOp
/external/clang/lib/CodeGen/
H A DCGExpr.cpp589 llvm::Value *Min = Builder.getFalse(); local
591 Builder.CreateICmpUGE(Builder.CreateCall2(F, Address, Min),
946 llvm::APInt Min;
949 Min = llvm::APInt(8, 0);
962 Min = -End;
966 Min = llvm::APInt(Bitwidth, 0);
971 return MDHelper.createRange(Min, End);
/external/svox/pico/lib/
H A Dpicopam.c333 #define Min 64 /*offset to min syllable duration (uint 16,pauses)*/ macro
1921 pos32 = Min;
4288 pos32 = Min;
/external/mdnsresponder/mDNSShared/
H A DCommonServices.h649 /*! @function Min
654 #if( !defined( Min ) )
655 #define Min( X, Y ) ( ( ( X ) < ( Y ) ) ? ( X ) : ( Y ) ) macro

Completed in 616 milliseconds