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

1 2 3 4 5 6 7

  /external/libcxx/test/numerics/rand/rand.adapt/rand.adapt.ibits/
result_type.pass.cpp 22 template <class UIntType, UIntType Min, UIntType Max>
32 static_assert(Min < Max, "rand1 invalid parameters");
37 static const result_type _Min = Min;
41 static _LIBCPP_CONSTEXPR result_type min() {return Min;}
44 explicit rand1(result_type sd = Min) : x_(sd)
46 if (x_ < Min)
47 x_ = Min;
58 x_ = Min;
eval.pass.cpp 20 template <class UIntType, UIntType Min, UIntType Max>
30 static_assert(Min < Max, "rand1 invalid parameters");
35 static const result_type _Min = Min;
39 static _LIBCPP_CONSTEXPR result_type min() {return Min;}
42 explicit rand1(result_type sd = Min) : x_(sd)
54 x_ = Min;
  /external/libcxx/test/numerics/rand/rand.adapt/rand.adapt.shuf/
result_type.pass.cpp 22 template <class UIntType, UIntType Min, UIntType Max>
32 static_assert(Min < Max, "rand1 invalid parameters");
37 static const result_type _Min = Min;
41 static _LIBCPP_CONSTEXPR result_type min() {return Min;}
44 explicit rand1(result_type sd = Min) : x_(sd)
46 if (x_ < Min)
47 x_ = Min;
58 x_ = Min;
eval.pass.cpp 20 template <class UIntType, UIntType Min, UIntType Max>
30 static_assert(Min < Max, "rand1 invalid parameters");
35 static const result_type _Min = Min;
39 static _LIBCPP_CONSTEXPR result_type min() {return Min;}
42 explicit rand1(result_type sd = Min) : x_(sd)
54 x_ = Min;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.ibits/
result_type.pass.cpp 22 template <class UIntType, UIntType Min, UIntType Max>
32 static_assert(Min < Max, "rand1 invalid parameters");
37 static const result_type _Min = Min;
41 static _LIBCPP_CONSTEXPR result_type min() {return Min;}
44 explicit rand1(result_type sd = Min) : x_(sd)
46 if (x_ < Min)
47 x_ = Min;
58 x_ = Min;
eval.pass.cpp 20 template <class UIntType, UIntType Min, UIntType Max>
30 static_assert(Min < Max, "rand1 invalid parameters");
35 static const result_type _Min = Min;
39 static _LIBCPP_CONSTEXPR result_type min() {return Min;}
42 explicit rand1(result_type sd = Min) : x_(sd)
54 x_ = Min;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.shuf/
result_type.pass.cpp 22 template <class UIntType, UIntType Min, UIntType Max>
32 static_assert(Min < Max, "rand1 invalid parameters");
37 static const result_type _Min = Min;
41 static _LIBCPP_CONSTEXPR result_type min() {return Min;}
44 explicit rand1(result_type sd = Min) : x_(sd)
46 if (x_ < Min)
47 x_ = Min;
58 x_ = Min;
eval.pass.cpp 20 template <class UIntType, UIntType Min, UIntType Max>
30 static_assert(Min < Max, "rand1 invalid parameters");
35 static const result_type _Min = Min;
39 static _LIBCPP_CONSTEXPR result_type min() {return Min;}
42 explicit rand1(result_type sd = Min) : x_(sd)
54 x_ = Min;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenTypes.cs 44 public const int Min = Up + 1;
  /external/valgrind/main/VEX/priv/
host_mips_defs.c 1185 i->Min.LI.dst = dst;
1186 i->Min.LI.imm = imm;
1194 i->Min.Alu.op = op;
1195 i->Min.Alu.dst = dst;
1196 i->Min.Alu.srcL = srcL;
1197 i->Min.Alu.srcR = srcR;
1206 i->Min.Shft.op = op;
1207 i->Min.Shft.sz32 = sz32;
1208 i->Min.Shft.dst = dst;
1209 i->Min.Shft.srcL = srcL
    [all...]
  /external/chromium_org/sync/internal_api/public/base/
enum_set.h 21 template <typename E, E Min, E Max>
22 EnumSet<E, Min, Max> Union(EnumSet<E, Min, Max> set1,
23 EnumSet<E, Min, Max> set2);
25 template <typename E, E Min, E Max>
26 EnumSet<E, Min, Max> Intersection(EnumSet<E, Min, Max> set1,
27 EnumSet<E, Min, Max> set2);
29 template <typename E, E Min, E Max>
30 EnumSet<E, Min, Max> Difference(EnumSet<E, Min, Max> set1
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 204 MemoryLocation Min = Loc - MinBytesNearLoc, Max = Loc + MinBytesNearLoc;
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, Ranges, NumRanges)
    [all...]
  /external/llvm/include/llvm/CodeGen/PBQP/
ReductionRules.h 48 PBQPNum Min = ECosts[0][j] + XCosts[0];
51 if (C < Min)
52 Min = C;
54 YCosts[j] += Min;
58 PBQPNum Min = ECosts[i][0] + XCosts[0];
61 if (C < Min)
62 Min = C;
64 YCosts[i] += Min;
110 PBQPNum Min = (*YXECosts)[i][0] + (*ZXECosts)[j][0] + XCosts[0];
113 if (C < Min) {
    [all...]
  /external/clang/include/clang/Frontend/
VerifyDiagnosticConsumer.h 150 StringRef Text, unsigned Min, unsigned Max);
158 unsigned Min, Max;
172 bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max)
174 Text(Text), Min(Min), Max(Max), MatchAnyLine(MatchAnyLine) {
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
fragments.swg 217 #define %numeric_signed_type_asval(Type, Base, Frag, Min, Max) \
218 %numeric_type_asval(Type, Base, Frag, (v < Min || v > Max))
226 %define %numeric_slong(Type, Frag, Min, Max)
228 %numeric_signed_type_asval(Type, long, Frag , Min, Max)
241 %define %numeric_double(Type, Frag, Min, Max)
243 %numeric_signed_type_asval(Type, double, Frag , Min, Max)
  /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 78 Value Min() const {
  /external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 167 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;
438 if (PH.Next(Min)) {
440 // A positive integer can be followed by a '+' meaning min
441 // or more, or by a '-' meaning a range from min to max.
447 if (!PH.Next(Max) || Max < Min) {
454 Max = Min;
    [all...]
  /external/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 425 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
486 // Unwrap loop packages in reverse post-order, tracking min and max
488 auto Min = Scaled64::getLargest();
491 // Update min/max scale.
492 Min = std::min(Min, Freqs[Index].Scaled)
    [all...]
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 130 ModRefBehavior Min = UnknownModRefBehavior;
134 Min = DoesNotAccessMemory;
136 Min = OnlyReadsMemory;
139 return ModRefBehavior(AliasAnalysis::getModRefBehavior(F) & Min);
146 ModRefBehavior Min = UnknownModRefBehavior;
151 Min = DoesNotAccessMemory;
153 Min = OnlyReadsMemory;
156 return ModRefBehavior(AliasAnalysis::getModRefBehavior(CS) & Min);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
Stats.cs 99 public static int min(int[] X) { method in class:Antlr.Runtime.Misc.Stats
100 return EnumerableExtensions.Min(EnumerableExtensions.DefaultIfEmpty(X, int.MaxValue));
  /external/compiler-rt/lib/asan/
asan_poisoning.cc 95 *beg.chunk = Min(value, beg.offset);
108 *beg.chunk = Min(beg.value, beg.offset);
286 uptr a = RoundDownTo(Min(old_mid, new_mid), granularity);
329 uptr r1_end = Min(end + kMaxRangeToCheck, mid);
331 uptr r2_end = Min(end, mid + kMaxRangeToCheck);
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 611 // into the target scope. 'Min' will end up being the index of
613 unsigned Min = TargetScope;
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/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 236 // 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();
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();
529 if (ComparisonVal == Min)
561 llvm::APSInt Min = AdjustmentType.getMinValue();
562 llvm::APSInt Lower = Min-Adjustment
    [all...]
  /hardware/intel/img/psb_video/src/
pnw_hostjpeg.h 295 #define CLIP(Number,Max,Min) if((Number) > (Max)) (Number) = (Max); \
296 else if((Number) < (Min)) (Number) = (Min)

Completed in 664 milliseconds

1 2 3 4 5 6 7