HomeSort by relevance Sort by last modified time
    Searched refs:Max (Results 1 - 25 of 199) 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");
38 static const result_type _Max = Max;
42 static _LIBCPP_CONSTEXPR result_type max() {return Max;}
48 if (x_ > Max)
49 x_ = Max;
55 if (x_ < Max)
eval.pass.cpp 20 template <class UIntType, UIntType Min, UIntType Max>
30 static_assert(Min < Max, "rand1 invalid parameters");
36 static const result_type _Max = Max;
40 static _LIBCPP_CONSTEXPR result_type max() {return Max;}
44 if (x_ > Max)
45 x_ = Max;
51 if (x_ < Max)
  /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");
38 static const result_type _Max = Max;
42 static _LIBCPP_CONSTEXPR result_type max() {return Max;}
48 if (x_ > Max)
49 x_ = Max;
55 if (x_ < Max)
eval.pass.cpp 20 template <class UIntType, UIntType Min, UIntType Max>
30 static_assert(Min < Max, "rand1 invalid parameters");
36 static const result_type _Max = Max;
40 static _LIBCPP_CONSTEXPR result_type max() {return Max;}
44 if (x_ > Max)
45 x_ = Max;
51 if (x_ < Max)
  /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/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/compiler-rt/lib/ubsan/
ubsan_diag.cc 166 MemoryLocation Min = Loc - MinBytesNearLoc, Max = Loc + MinBytesNearLoc;
169 Max = __sanitizer::Max(Ranges[I].getEnd().getMemoryLocation(), Max);
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) {
188 for (uptr P = Min; P != Max; ++P) {
206 for (uptr P = Min; P != Max; ++P)
    [all...]
  /external/eigen/unsupported/test/
polynomialutils.cpp 78 _Scalar Max = roots.array().abs().maxCoeff();
80 bool eval = (M >= Max) && (m <= min);
85 cerr << "Min,Max: (" << min << ", " << Max << ")" << endl;
  /external/chromium_org/base/time/
time.cc 59 Time Time::Max() {
60 return Time(std::numeric_limits<int64>::max());
67 if (tt == std::numeric_limits<time_t>::max())
68 return Max();
76 // Preserve max without offset to prevent overflow.
77 return std::numeric_limits<time_t>::max();
79 if (std::numeric_limits<int64>::max() - kTimeTToMicrosecondsOffset <= us_) {
82 return std::numeric_limits<time_t>::max();
91 if (dt == std::numeric_limits<double>::max())
92 return Max();
    [all...]
  /external/freetype/include/freetype/
fterrors.h 135 #define FT_ERROR_END_LIST FT_ERR_CAT( FT_ERR_PREFIX, Max ) };
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioNodeInput.cpp 163 maxChannels = max(maxChannels, output->numberOfChannels());
177 if (numberOfRenderingConnections() == 1 && node()->internalChannelCountMode() == AudioNode::Max)
196 ASSERT(numberOfRenderingConnections() > 1 || node()->internalChannelCountMode() != AudioNode::Max);
223 if (numberOfRenderingConnections() == 1 && node()->internalChannelCountMode() == AudioNode::Max) {
AudioNode.cpp 58 , m_channelCountMode(Max)
213 if (m_channelCountMode != Max)
224 case Max:
225 return "max";
227 return "clamped-max";
242 if (mode == "max")
243 m_channelCountMode = Max;
244 else if (mode == "clamped-max")
AudioNode.h 86 Max,
  /art/runtime/base/
histogram.h 74 Value Max() const {
95 // histogram percentiles are. Grows adaptively when we hit max buckets.
  /external/chromium_org/third_party/freetype/include/freetype/
fterrors.h 142 #define FT_ERROR_END_LIST FT_ERR_CAT( FT_ERR_PREFIX, Max ) };
  /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) { }
402 unsigned Max = 1;
406 // or more, or by a '-' meaning a range from min to max.
408 Max = Directive::MaxCount;
412 if (!PH.Next(Max) || Max < Min) {
419 Max = Min
    [all...]
  /external/llvm/lib/CodeGen/
CriticalAntiDepBreaker.cpp 422 const SUnit *Max = 0;
426 if (!Max || SU->getDepth() + SU->Latency > Max->getDepth() + Max->Latency)
427 Max = SU;
433 << (Max->getDepth() + Max->Latency) << "\n");
445 const SUnit *CriticalPathSU = Max;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
Stats.cs 104 public static int max(int[] X) { method in class:Antlr.Runtime.Misc.Stats
105 return EnumerableExtensions.Max(EnumerableExtensions.DefaultIfEmpty(X, int.MinValue));
  /external/opencv/cvaux/src/
cvfacedetection.cpp 197 double Max = 0;
218 if (CurStat > Max)
219 Max = CurStat;
227 if (CurStat == Max)
  /external/compiler-rt/lib/asan/
asan_poisoning.cc 126 *beg.chunk = Max(value, end.offset);
137 *end.chunk = Max(end.value, end.offset);
242 *shadow_end = Max(end_value, end_offset);
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 236 // intersection with the two ranges [Min, Upper] and [Lower, Max],
495 // Special case for Int == Max. This is always false.
497 llvm::APSInt Max = AdjustmentType.getMaxValue();
498 if (ComparisonVal == Max)
502 llvm::APSInt Upper = Max-Adjustment;
530 llvm::APSInt Max = AdjustmentType.getMaxValue();
532 llvm::APSInt Upper = Max-Adjustment;
553 // Special case for Int == Max. This is always feasible.
555 llvm::APSInt Max = AdjustmentType.getMaxValue();
556 if (ComparisonVal == Max)
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 89 /// abs(step) * max-iteration(loop) <= unsigned-max(bitwidth).
257 /// This is a temporary pair of exact and max expressions that are
261 const SCEV *Max;
263 /*implicit*/ ExitLimit(const SCEV *E) : Exact(E), Max(E) {}
265 ExitLimit(const SCEV *E, const SCEV *M) : Exact(E), Max(M) {}
271 !isa<SCEVCouldNotCompute>(Max);
307 /// Max - An expression indicating the least maximum backedge-taken
309 const SCEV *Max;
312 BackedgeTakenInfo() : Max(0) {
    [all...]
  /external/chromium_org/android_webview/browser/
aw_form_database_service.cc 72 base::Time end = base::Time::Max();
  /external/chromium_org/v8/test/webkit/fast/js/
toString-number.js 41 [9007199254740992, '9007199254740992', '100000000000000000000000000000000000000000000000000000', '2gosa7pa2gw'], // Max Integer in a double.
53 [9007199254740992.0, '9007199254740992', '100000000000000000000000000000000000000000000000000000', '2gosa7pa2gw'], // Max Integer in a double.
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.cc 117 uptr size_to_allocate = Max(size, GetPageSizeCached());
138 uptr max = (uptr)-1L;
139 return (max / size) < n;

Completed in 749 milliseconds

1 2 3 4 5 6 7 8