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

123

/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/pdfium/xfa/fwl/
H A Dcfwl_eventscroll.h16 Min, member in class:CFWL_EventScroll::Code
/external/vboot_reference/firmware/lib/include/
H A Dutility.h47 #define Min(a, b) (((a) < (b)) ? (a) : (b)) macro
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
H A DMin.java40 public class Min extends AbstractStorelessUnivariateStatistic implements Serializable { class in inherits:AbstractStorelessUnivariateStatistic,Serializable
52 * Create a Min instance
54 public Min() { method in class:Min
60 * Copy constructor, creates a new {@code Min} identical
63 * @param original the {@code Min} instance to copy
65 public Min(Min original) { method in class:Min
144 public Min copy() {
145 Min result = new Min();
[all...]
/external/clang/lib/Basic/
H A DTargets.cpp142 unsigned Maj, Min, Rev; local
144 Triple.getMacOSXVersion(Maj, Min, Rev);
147 Triple.getOSVersion(Maj, Min, Rev);
155 PlatformMinVersion = VersionTuple(Maj, Min, Rev);
161 assert(Maj < 10 && Min < 100 && Rev < 100 && "Invalid version!");
164 Str[1] = '0' + (Min / 10);
165 Str[2] = '0' + (Min % 10);
176 assert(Maj < 10 && Min < 100 && Rev < 100 && "Invalid version!");
179 Str[1] = '0' + (Min / 10);
180 Str[2] = '0' + (Min
[all...]
/external/llvm/include/llvm/Transforms/IPO/
H A DLowerTypeTests.h72 uint64_t Min, Max; member in struct:llvm::lowertypetests::BitSetBuilder
74 BitSetBuilder() : Min(std::numeric_limits<uint64_t>::max()), Max(0) {}
77 if (Min > Offset)
78 Min = Offset;
/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/llvm/include/llvm/Analysis/
H A DMemoryBuiltins.h37 Min = 1, member in class:llvm::ObjSizeMode
138 /// If Mode is Min or Max the size will be evaluated even if it depends on
/external/skia/src/core/
H A DSk4px.h69 static Wide Min(const Wide& a, const Wide& b) { return INHERITED::Min(a,b); } function in class:__anon16926::Sk4px::Wide
/external/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h152 unsigned Min, unsigned Max);
161 unsigned Min, Max; member in class:clang::VerifyDiagnosticConsumer::Directive
175 bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max)
177 Text(Text), Min(Min), Max(Max), MatchAnyLine(MatchAnyLine) {
174 Directive(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max) argument
/external/google-benchmark/src/
H A Dstat.h206 // keeps the Min and Max values; the "-"
277 VType Min() const { return min_; } function in class:benchmark::Stat1MinMax
280 // The - operation makes no sense with Min/Max
300 << " nsamples = " << s.NumSamples() << " min = " << s.Min()
/external/libcxx/utils/google-benchmark/src/
H A Dstat.h206 // keeps the Min and Max values; the "-"
277 VType Min() const { return min_; } function in class:benchmark::Stat1MinMax
280 // The - operation makes no sense with Min/Max
300 << " nsamples = " << s.NumSamples() << " min = " << s.Min()
/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) {}
/external/llvm/include/llvm/CodeGen/PBQP/
H A DReductionRules.h49 PBQPNum Min = ECosts[0][j] + XCosts[0]; local
52 if (C < Min)
53 Min = C;
55 YCosts[j] += Min;
59 PBQPNum Min = ECosts[i][0] + XCosts[0]; local
62 if (C < Min)
63 Min = C;
65 YCosts[i] += Min;
111 PBQPNum Min = (*YXECosts)[i][0] + (*ZXECosts)[j][0] + XCosts[0]; local
114 if (C < Min) {
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DFloat2Int.cpp196 APInt Min = APInt::getMinValue(BW).zextOrSelf(MaxIntegerBW+1); local
198 seen(I, validateRange(ConstantRange(Min, Max)));
/external/pdfium/third_party/base/numerics/
H A Dsafe_math.h52 // Min() - Returns whichever is lowest of the current instance or argument.
246 constexpr CheckedNumeric<typename MathWrapper<CheckedMinOp, T, U>::type> Min( function in class:pdfium::base::internal::CheckedNumeric
463 BASE_NUMERIC_ARITHMETIC_VARIADIC(Min)
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DAliasAnalysis.cpp197 ModRefBehavior Min = UnknownModRefBehavior; local
202 Min = getModRefBehavior(F);
205 if (!AA) return Min;
209 return ModRefBehavior(AA->getModRefBehavior(CS) & Min);
/external/swiftshader/third_party/LLVM/lib/Analysis/IPA/
H A DGlobalsModRef.cpp124 ModRefBehavior Min = UnknownModRefBehavior; local
128 Min = DoesNotAccessMemory;
130 Min = OnlyReadsMemory;
133 return ModRefBehavior(AliasAnalysis::getModRefBehavior(F) & Min);
140 ModRefBehavior Min = UnknownModRefBehavior; local
145 Min = DoesNotAccessMemory;
147 Min = OnlyReadsMemory;
150 return ModRefBehavior(AliasAnalysis::getModRefBehavior(CS) & Min);
/external/clang/lib/Frontend/
H A DInitPreprocessor.cpp132 const char *DenormMin, *Epsilon, *Max, *Min; local
148 Min = PickFP(Sem, "1.17549435e-38", "2.2250738585072014e-308",
177 Builder.defineMacro(DefPrefix + "MIN__", Twine(Min)+Ext);
/external/compiler-rt/lib/ubsan/
H A Dubsan_diag.cc251 MemoryLocation Min = subtractNoOverflow(Loc, MinBytesNearLoc); local
253 MemoryLocation OrigMin = Min;
255 Min = __sanitizer::Min(Ranges[I].getStart().getMemoryLocation(), Min);
261 if (Max - Min > BytesToShow)
262 Min = __sanitizer::Min(Max - BytesToShow, OrigMin);
263 Max = addNoOverflow(Min, BytesToShow);
265 if (!IsAccessibleMemoryRange(Min, Ma
[all...]
/external/eigen/Eigen/src/Geometry/
H A DAlignedBox.h47 Min=0, Max=1, enumerator in enum:Eigen::AlignedBox::CornerType
/external/skia/src/opts/
H A DSkNx_neon.h66 AI static SkNx Min(const SkNx& l, const SkNx& r) { return vmin_f32(l.fVec, r.fVec); } function in class:__anon17112::SkNx
161 AI static SkNx Min(const SkNx& l, const SkNx& r) { return vminq_f32(l.fVec, r.fVec); } function in class:__anon17112::SkNx
269 AI static SkNx Min(const SkNx& a, const SkNx& b) { return vmin_u16(a.fVec, b.fVec); } function in class:__anon17112::SkNx
309 AI static SkNx Min(const SkNx& a, const SkNx& b) { return vminq_u16(a.fVec, b.fVec); } function in class:__anon17112::SkNx
374 AI static SkNx Min(const SkNx& a, const SkNx& b) { return vminq_u8(a.fVec, b.fVec); } function in class:__anon17112::SkNx
435 AI static SkNx Min(const SkNx& a, const SkNx& b) { return vminq_s32(a.fVec, b.fVec); } function in class:__anon17112::SkNx
484 AI static SkNx Min(const SkNx& a, const SkNx& b) { return vminq_u32(a.fVec, b.fVec); } function in class:__anon17112::SkNx
/external/clang/lib/Sema/
H A DJumpDiagnostics.cpp705 // into the target scope. 'Min' will end up being the index of
707 unsigned Min = TargetScope; local
709 Reachable.set(Min);
712 if (Min == 0) break;
715 if (Scopes[Min].InDiag) break;
717 Min = Scopes[Min].ParentScope;
744 if (Scope == 0 || Scope < Min) break;
/external/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp245 // intersection with the two ranges [Min, Upper] and [Lower, Max],
499 // Special case for Int == Min. This is always false.
501 llvm::APSInt Min = AdjustmentType.getMinValue(); local
502 if (ComparisonVal == Min)
505 llvm::APSInt Lower = Min - Adjustment;
571 // Special case for Int == Min. This is always feasible.
573 llvm::APSInt Min = AdjustmentType.getMinValue(); local
574 if (ComparisonVal == Min)
613 llvm::APSInt Min = AdjustmentType.getMinValue();
614 llvm::APSInt Lower = Min
[all...]

Completed in 1124 milliseconds

123