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

12

/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/clang/lib/Basic/
H A DTargets.cpp124 unsigned Maj, Min, Rev; local
126 Triple.getMacOSXVersion(Maj, Min, Rev);
129 Triple.getOSVersion(Maj, Min, Rev);
137 PlatformMinVersion = VersionTuple(Maj, Min, Rev);
143 assert(Maj < 10 && Min < 100 && Rev < 100 && "Invalid version!");
146 Str[1] = '0' + (Min / 10);
147 Str[2] = '0' + (Min % 10);
158 assert(Maj < 100 && Min < 100 && Rev < 100 && "Invalid version!");
162 Str[2] = '0' + std::min(Min, 9U);
168 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/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Dutils.h126 static T Min(T a, T b) { function in namespace:WTF::double_conversion
/external/compiler-rt/lib/ubsan/
H A Dubsan_diag.cc166 MemoryLocation Min = Loc - MinBytesNearLoc, Max = Loc + MinBytesNearLoc; local
168 Min = __sanitizer::Min(Ranges[I].getStart().getMemoryLocation(), Min);
173 if (Max - Min > BytesToShow)
174 Min = __sanitizer::Min(Max - BytesToShow, Loc - MinBytesNearLoc);
175 Max = Min + BytesToShow;
178 for (uptr P = Min; P != Max; ++P) {
187 Range *InRange = upperBound(Min, Range
[all...]
/external/skia/bench/
H A Dbench_util.py80 Min = _ExtremeType(-1, "Min") variable
213 max_x = Min
/external/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
/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.cpp120 const char *DenormMin, *Epsilon, *Max, *Min; local
135 Min = PickFP(Sem, "1.17549435e-38", "2.2250738585072014e-308",
163 Builder.defineMacro(DefPrefix + "MIN__", Twine(Min)+Ext);
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) { }
401 unsigned Min = 1; local
403 if (PH.Next(Min)) {
412 if (!PH.Next(Max) || Max < Min) {
419 Max = Min;
464 Min, Max);
672 if (i >= D.Min) brea
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...]
/external/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp236 // intersection with the two ranges [Min, Upper] and [Lower, Max],
466 // Special case for Int == Min. This is always false.
468 llvm::APSInt Min = AdjustmentType.getMinValue(); local
469 if (ComparisonVal == Min)
472 llvm::APSInt Lower = Min-Adjustment;
524 // Special case for Int == Min. This is always feasible.
526 llvm::APSInt Min = AdjustmentType.getMinValue(); local
527 if (ComparisonVal == Min)
559 llvm::APSInt Min = AdjustmentType.getMinValue();
560 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.cpp202 ModRefBehavior Min = UnknownModRefBehavior; local
207 Min = getModRefBehavior(F);
210 if (!AA) return Min;
214 return ModRefBehavior(AA->getModRefBehavior(CS) & Min);
H A DBasicAliasAnalysis.cpp652 ModRefBehavior Min = UnknownModRefBehavior;
657 Min = OnlyReadsMemory;
660 return ModRefBehavior(AliasAnalysis::getModRefBehavior(CS) & Min);
678 ModRefBehavior Min = UnknownModRefBehavior; local
682 Min = OnlyReadsMemory;
685 return ModRefBehavior(AliasAnalysis::getModRefBehavior(F) & Min);
741 ModRefResult Min = ModRef; local
760 Min = Ref;
763 Min = Mod;
777 Min
[all...]
/external/chromium_org/v8/src/
H A Dutils.h249 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
444 first_interval_->start_ = Min(start, first_interval_->start_);
1810 free_until_pos[cur_reg] = Min(free_until_pos[cur_reg], next_intersection);
1910 block_pos[cur_reg] = Min(block_pos[cur_reg], next_intersection);
1911 use_pos[cur_reg] = Min(block_pos[cur_reg], use_pos[cur_reg]);
1913 use_pos[cur_reg] = Min(use_pos[cur_reg], next_intersection);
2028 next_intersection = Min(next_intersection, next_pos->pos());
/external/clang/lib/Sema/
H A DJumpDiagnostics.cpp616 // into the target scope. 'Min' will end up being the index of
618 unsigned Min = TargetScope; local
620 Reachable.set(Min);
623 if (Min == 0) break;
626 if (Scopes[Min].InDiag) break;
628 Min = Scopes[Min].ParentScope;
655 if (Scope == 0 || Scope < Min) break;
/external/llvm/include/llvm/ADT/
H A DTriple.h199 unsigned Maj, Min, Micro; local
200 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/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp372 int64_t Min = - (scale * (1LL << (field_width - 1))); local
374 return (Val % scale) == 0 && Val >= Min && Val <= Max;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp179 APInt& Min, APInt& Max) {
181 KnownZero.getBitWidth() == Min.getBitWidth() &&
183 "KnownZero, KnownOne and Min, Max must have equal bitwidth.");
188 Min = KnownOne;
192 Min.setBit(Min.getBitWidth()-1);
203 APInt &Min, APInt &Max) {
205 KnownZero.getBitWidth() == Min.getBitWidth() &&
207 "Ty, KnownZero, KnownOne and Min, Max must have equal bitwidth.");
211 Min
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...]
/external/llvm/lib/Transforms/Scalar/
H A DCodeGenPrepare.cpp632 bool Min = (cast<ConstantInt>(II->getArgOperand(1))->getZExtValue() == 1); local
634 Constant *RetVal = ConstantInt::get(ReturnTy, Min ? 0 : -1ULL);
/external/valgrind/main/VEX/priv/
H A Dhost_mips_defs.h628 } Min; member in struct:__anon27620

Completed in 1216 milliseconds

12