HomeSort by relevance Sort by last modified time
    Searched defs:Min (Results 1 - 25 of 30) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenTypes.cs 44 public const int Min = Up + 1;
  /external/clang/lib/Basic/
Targets.cpp 124 unsigned Maj, Min, Rev;
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)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenConstants.cs 62 public const int Min = Up + 1;
  /art/runtime/base/
histogram.h 70 Value Min() const {
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
utils.h 130 static T Min(T a, T b) {
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 166 MemoryLocation Min = Loc - MinBytesNearLoc, Max = Loc + MinBytesNearLoc;
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, Ranges, NumRanges)
    [all...]
  /external/skia/bench/
bench_util.py 13 ALGORITHM_MINIMUM = 'min'
80 Min = _ExtremeType(-1, "Min")
211 max_x = Min
223 min_x = min(min_x, x)
276 return min(0, (upper_right_y - lower_left_y) / regr_width)
  /external/clang/include/clang/Frontend/
VerifyDiagnosticConsumer.h 146 StringRef Text, unsigned Min, unsigned Max);
154 unsigned Min, Max;
167 StringRef Text, unsigned Min, unsigned Max)
169 Text(Text), Min(Min), Max(Max) {
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 120 const char *DenormMin, *Epsilon, *Max, *Min;
135 Min = PickFP(Sem, "1.17549435e-38", "2.2250738585072014e-308",
163 Builder.defineMacro(DefPrefix + "MIN__", Twine(Min)+Ext);
    [all...]
VerifyDiagnosticConsumer.cpp 166 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;
403 if (PH.Next(Min)) {
405 // A positive integer can be followed by a '+' meaning min
406 // or more, or by a '-' meaning a range from min to max.
412 if (!PH.Next(Max) || Max < Min) {
419 Max = Min;
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 236 // 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();
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();
527 if (ComparisonVal == Min)
559 llvm::APSInt Min = AdjustmentType.getMinValue();
560 llvm::APSInt Lower = Min-Adjustment
    [all...]
  /external/eigen/Eigen/src/Geometry/
AlignedBox.h 44 Min=0, Max=1,
101 inline const VectorType& (min)() const { return m_min; } function in class:Eigen::AlignedBox
103 inline VectorType& (min)() { return m_min; } function in class:Eigen::AlignedBox
186 { return (m_min.array()<=(b.min)().array()).all() && ((b.max)().array()<=m_max.array()).all(); }
277 m_min = (other.min)().template cast<Scalar>();
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 202 ModRefBehavior Min = UnknownModRefBehavior;
207 Min = getModRefBehavior(F);
210 if (!AA) return Min;
214 return ModRefBehavior(AA->getModRefBehavior(CS) & Min);
BasicAliasAnalysis.cpp 652 ModRefBehavior Min = UnknownModRefBehavior;
657 Min = OnlyReadsMemory;
660 return ModRefBehavior(AliasAnalysis::getModRefBehavior(CS) & Min);
678 ModRefBehavior Min = UnknownModRefBehavior;
682 Min = OnlyReadsMemory;
685 return ModRefBehavior(AliasAnalysis::getModRefBehavior(F) & Min);
741 ModRefResult Min = ModRef;
760 Min = Ref;
763 Min = Mod;
777 Min = Mod
    [all...]
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 125 ModRefBehavior Min = UnknownModRefBehavior;
129 Min = DoesNotAccessMemory;
131 Min = OnlyReadsMemory;
134 return ModRefBehavior(AliasAnalysis::getModRefBehavior(F) & Min);
141 ModRefBehavior Min = UnknownModRefBehavior;
146 Min = DoesNotAccessMemory;
148 Min = OnlyReadsMemory;
151 return ModRefBehavior(AliasAnalysis::getModRefBehavior(CS) & Min);
  /external/chromium_org/v8/src/
utils.h 249 T Min(T a, T b) {
    [all...]
lithium-allocator.cc 49 static inline LifetimePosition Min(LifetimePosition a, LifetimePosition b) {
441 first_interval_->start_ = Min(start, first_interval_->start_);
    [all...]
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 616 // into the target scope. 'Min' will end up being the index of
618 unsigned Min = TargetScope;
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/v8/src/
utils.h 203 T Min(T a, T b) {
lithium-allocator.cc 49 static inline LifetimePosition Min(LifetimePosition a, LifetimePosition b) {
436 first_interval_->start_ = Min(start, first_interval_->start_);
    [all...]
  /external/llvm/include/llvm/ADT/
Triple.h 199 unsigned Maj, Min, Micro;
200 getOSVersion(Maj, Min, Micro);
  /external/llvm/lib/Transforms/Scalar/
CodeGenPrepare.cpp 632 bool Min = (cast<ConstantInt>(II->getArgOperand(1))->getZExtValue() == 1);
634 Constant *RetVal = ConstantInt::get(ReturnTy, Min ? 0 : -1ULL);
    [all...]
  /external/llvm/include/llvm/IR/
Instructions.h 585 Min,
    [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 372 int64_t Min = - (scale * (1LL << (field_width - 1)));
374 return (Val % scale) == 0 && Val >= Min && Val <= Max;
    [all...]
  /external/valgrind/main/VEX/priv/
host_mips_defs.h 628 } Min;

Completed in 699 milliseconds

1 2