Searched defs:Min (Results 1 - 25 of 40) 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.cpp123 unsigned Maj, Min, Rev; local
125 Triple.getMacOSXVersion(Maj, Min, Rev);
128 Triple.getOSVersion(Maj, Min, Rev);
136 PlatformMinVersion = VersionTuple(Maj, Min, Rev);
142 assert(Maj < 10 && Min < 100 && Rev < 100 && "Invalid version!");
145 Str[1] = '0' + (Min / 10);
146 Str[2] = '0' + (Min % 10);
157 assert(Maj < 100 && Min < 100 && Rev < 100 && "Invalid version!");
161 Str[2] = '0' + std::min(Min, 9U);
171 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/chromium_org/third_party/skia/bench/
H A Dbench_util.py87 Min = _ExtremeType(-1, "Min") variable
269 max_x = Min
/external/llvm/include/llvm/CodeGen/PBQP/
H A DReductionRules.h48 PBQPNum Min = ECosts[0][j] + XCosts[0]; local
51 if (C < Min)
52 Min = C;
54 YCosts[j] += Min;
58 PBQPNum Min = ECosts[i][0] + XCosts[0]; local
61 if (C < Min)
62 Min = C;
64 YCosts[i] += Min;
110 PBQPNum Min = (*YXECosts)[i][0] + (*ZXECosts)[j][0] + XCosts[0]; local
113 if (C < Min) {
[all...]
/external/skia/bench/
H A Dbench_util.py87 Min = _ExtremeType(-1, "Min") variable
269 max_x = Min
/external/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h150 StringRef Text, unsigned Min, unsigned Max);
158 unsigned Min, Max; member in class:clang::VerifyDiagnosticConsumer::Directive
172 bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max)
174 Text(Text), Min(Min), Max(Max), MatchAnyLine(MatchAnyLine) {
171 Directive(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max) argument
/external/compiler-rt/lib/ubsan/
H A Dubsan_diag.cc204 MemoryLocation Min = Loc - MinBytesNearLoc, Max = Loc + MinBytesNearLoc; local
206 Min = __sanitizer::Min(Ranges[I].getStart().getMemoryLocation(), Min);
211 if (Max - Min > BytesToShow)
212 Min = __sanitizer::Min(Max - BytesToShow, Loc - MinBytesNearLoc);
213 Max = Min + BytesToShow;
216 for (uptr P = Min; P != Max; ++P) {
225 Range *InRange = upperBound(Min, Range
[all...]
/external/llvm/include/llvm/ADT/
H A DSCCIterator.h55 StackElement(NodeType *Node, const ChildItTy &Child, unsigned Min) argument
56 : Node(Node), NextChild(Child), MinVisited(Min) {}
H A DTriple.h225 unsigned Maj, Min, Micro; local
226 getOSVersion(Maj, Min, Micro);
/external/llvm/lib/Analysis/IPA/
H A DGlobalsModRef.cpp130 ModRefBehavior Min = UnknownModRefBehavior; variable
134 Min = DoesNotAccessMemory;
136 Min = OnlyReadsMemory;
139 return ModRefBehavior(AliasAnalysis::getModRefBehavior(F) & Min);
146 ModRefBehavior Min = UnknownModRefBehavior; variable
151 Min = DoesNotAccessMemory;
153 Min = OnlyReadsMemory;
156 return ModRefBehavior(AliasAnalysis::getModRefBehavior(CS) & Min);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/
H A DMediaQueryInspector.js33 Min: 2
115 if (model.section() === WebInspector.MediaQueryInspector.Section.Min) {
375 this._section = WebInspector.MediaQueryInspector.Section.Min;
454 if (this.section() === WebInspector.MediaQueryInspector.Section.Min)
/external/clang/lib/Frontend/
H A DInitPreprocessor.cpp133 const char *DenormMin, *Epsilon, *Max, *Min; local
148 Min = PickFP(Sem, "1.17549435e-38", "2.2250738585072014e-308",
176 Builder.defineMacro(DefPrefix + "MIN__", Twine(Min)+Ext);
H A DVerifyDiagnosticConsumer.cpp167 bool MatchAnyLine, StringRef Text, unsigned Min,
169 : Directive(DirectiveLoc, DiagnosticLoc, MatchAnyLine, Text, Min, Max) { }
186 bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max,
188 : Directive(DirectiveLoc, DiagnosticLoc, MatchAnyLine, Text, Min, Max),
436 unsigned Min = 1; local
438 if (PH.Next(Min)) {
447 if (!PH.Next(Max) || Max < Min) {
454 Max = Min;
507 Min, Max));
722 if (i >= D.Min) brea
166 StandardDirective(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max) argument
185 RegexDirective(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max, StringRef RegexStr) argument
875 create(bool RegexKind, SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, bool MatchAnyLine, 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],
468 // Special case for Int == Min. This is always false.
470 llvm::APSInt Min = AdjustmentType.getMinValue(); local
471 if (ComparisonVal == Min)
474 llvm::APSInt Lower = Min-Adjustment;
526 // Special case for Int == Min. This is always feasible.
528 llvm::APSInt Min = AdjustmentType.getMinValue(); local
529 if (ComparisonVal == Min)
561 llvm::APSInt Min = AdjustmentType.getMinValue();
562 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.cpp224 ModRefBehavior Min = UnknownModRefBehavior; local
229 Min = getModRefBehavior(F);
232 if (!AA) return Min;
236 return ModRefBehavior(AA->getModRefBehavior(CS) & Min);
H A DBlockFrequencyInfoImpl.cpp425 const Scaled64 &Min, const Scaled64 &Max) {
429 // with large numbers. Instead, push Min up a little from 1 to give some
434 Scaled64 ScalingFactor = Min.inverse();
435 if ((Max / Min).lg() < 60)
439 DEBUG(dbgs() << "float-to-int: min = " << Min << ", max = " << Max
488 auto Min = Scaled64::getLargest(); local
492 Min = std::min(Min, Freqs[Index].Scaled);
497 convertFloatingToInteger(*this, Min, Max);
424 convertFloatingToInteger(BlockFrequencyInfoImplBase &BFI, const Scaled64 &Min, const Scaled64 &Max) argument
H A DBasicAliasAnalysis.cpp682 ModRefBehavior Min = UnknownModRefBehavior;
687 Min = OnlyReadsMemory;
690 return ModRefBehavior(AliasAnalysis::getModRefBehavior(CS) & Min);
708 ModRefBehavior Min = UnknownModRefBehavior; local
712 Min = OnlyReadsMemory;
716 Min = OnlyAccessesArgumentPointees;
719 return ModRefBehavior(AliasAnalysis::getModRefBehavior(F) & Min);
/external/chromium_org/v8/src/
H A Dtypes.cc59 return lhs->Min()->Number() <= rhs->Min()->Number()
69 && range->Min()->Number() <= val->Number()
75 // Min and Max computation.
78 double TypeImpl<Config>::Min() { function in class:v8::internal::TypeImpl
80 if (this->IsBitset()) return BitsetType::Min(this->AsBitset());
84 min = std::min(min, this->AsUnion()->Get(i)->Min());
88 if (this->IsRange()) return this->AsRange()->Min()->Number();
355 double TypeImpl<Config>::BitsetType::Min(bitset bits) { function in class:v8::internal::TypeImpl::BitsetType
946 type->AsRange()->Min(), typ
[all...]
H A Dutils.h146 T Min(T a, T b) { function in namespace:v8::internal
1117 // DCHECK(Min(dst, const_cast<T*>(src)) + num_words <=
1163 DCHECK(Min(dst, const_cast<T*>(src)) + num_bytes <=
/external/clang/lib/Sema/
H A DJumpDiagnostics.cpp611 // into the target scope. 'Min' will end up being the index of
613 unsigned Min = TargetScope; local
615 Reachable.set(Min);
618 if (Min == 0) break;
621 if (Scopes[Min].InDiag) break;
623 Min = Scopes[Min].ParentScope;
650 if (Scope == 0 || Scope < Min) break;
/external/chromium_org/v8/src/compiler/
H A Dregister-allocator.cc15 static inline LifetimePosition Min(LifetimePosition a, LifetimePosition b) { function in namespace:v8::internal::compiler
403 first_interval_->start_ = Min(start, first_interval_->start_);
1816 free_until_pos[cur_reg] = Min(free_until_pos[cur_reg], next_intersection);
1912 block_pos[cur_reg] = Min(block_pos[cur_reg], next_intersection);
1913 use_pos[cur_reg] = Min(block_pos[cur_reg], use_pos[cur_reg]);
1915 use_pos[cur_reg] = Min(use_pos[cur_reg], next_intersection);
2027 next_intersection = Min(next_intersection, next_pos->pos());

Completed in 4897 milliseconds

12