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

1 2 3 4 5 6 7 8

  /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;
BitSet.cs 173 int min = Math.Min( _bits.Length, a._bits.Length );
174 for ( int i = min - 1; i >= 0; i-- )
233 int n = Math.Min( this._bits.Length, otherSet._bits.Length );
  /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/valgrind/main/VEX/priv/
host_mips_defs.c 1113 i->Min.LI.dst = dst;
1114 i->Min.LI.imm = imm;
1122 i->Min.Alu.op = op;
1123 i->Min.Alu.dst = dst;
1124 i->Min.Alu.srcL = srcL;
1125 i->Min.Alu.srcR = srcR;
1134 i->Min.Shft.op = op;
1135 i->Min.Shft.sz32 = sz32;
1136 i->Min.Shft.dst = dst;
1137 i->Min.Shft.srcL = srcL
    [all...]
  /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/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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenConstants.cs 62 public const int Min = Up + 1;
BitSet.cs 154 int min = Math.Min(_bits.Length, a._bits.Length);
155 for (int i = min - 1; i >= 0; i--) {
202 int n = Math.Min(this._bits.Length, otherSet._bits.Length);
  /art/runtime/base/
histogram.h 70 Value Min() const {
  /external/clang/lib/Frontend/
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/llvm/include/llvm/ADT/
Triple.h 199 unsigned Maj, Min, Micro;
200 getOSVersion(Maj, Min, Micro);
  /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/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/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/llvm/lib/Analysis/
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...]
TypeBasedAliasAnalysis.cpp 412 ModRefBehavior Min = UnknownModRefBehavior;
419 Min = OnlyReadsMemory;
421 return ModRefBehavior(AliasAnalysis::getModRefBehavior(CS) & Min);
AliasAnalysis.cpp 202 ModRefBehavior Min = UnknownModRefBehavior;
207 Min = getModRefBehavior(F);
210 if (!AA) return Min;
214 return ModRefBehavior(AA->getModRefBehavior(CS) & Min);
  /external/chromium_org/v8/test/webkit/fast/js/
toString-number.js 42 [-9007199254740992, '-9007199254740992', '-100000000000000000000000000000000000000000000000000000', '-2gosa7pa2gw'], // Min Integer in a double.
54 [-9007199254740992.0, '-9007199254740992', '-100000000000000000000000000000000000000000000000000000', '-2gosa7pa2gw'], // Min Integer in a double.
  /external/opencv/cv/src/
_cvipp.h 306 IPCV_MORPHOLOGY( Min, Erode, 8u, 1 )
307 IPCV_MORPHOLOGY( Min, Erode, 8u, 3 )
308 IPCV_MORPHOLOGY( Min, Erode, 8u, 4 )
309 IPCV_MORPHOLOGY( Min, Erode, 16u, 1 )
310 IPCV_MORPHOLOGY( Min, Erode, 16u, 3 )
311 IPCV_MORPHOLOGY( Min, Erode, 16u, 4 )
312 IPCV_MORPHOLOGY( Min, Erode, 32f, 1 )
313 IPCV_MORPHOLOGY( Min, Erode, 32f, 3 )
314 IPCV_MORPHOLOGY( Min, Erode, 32f, 4 )
    [all...]
  /external/compiler-rt/lib/asan/
asan_poisoning.cc 85 *beg.chunk = Min(value, beg.offset);
98 *beg.chunk = Min(beg.value, beg.offset);
asan_interceptors.cc 309 ASAN_READ_RANGE(s1, Min(i + 1, size));
310 ASAN_READ_RANGE(s2, Min(i + 1, size));
422 uptr copy_length = Min(size, from_length + 1);
487 uptr from_size = Min(size, MaybeRealStrnlen(from, size) + 1);
500 ASAN_READ_RANGE(s, Min(length + 1, maxlen));

Completed in 627 milliseconds

1 2 3 4 5 6 7 8