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

1 2 3 4 5

  /ndk/sources/cxx-stl/llvm-libc++/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++/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/webkit/LayoutTests/http/tests/cookies/resources/
clearCookies.cgi 10 if ($cookie =~ /Max-Age/i) {
11 $cookie =~ s/Max-Age *= *[0-9]+/Max-Age=0/i;
15 $cookie .= "Max-Age=0";
  /external/clang/include/clang/Frontend/
VerifyDiagnosticConsumer.h 134 StringRef Text, unsigned Min, unsigned Max);
142 unsigned Min, Max;
155 StringRef Text, unsigned Min, unsigned Max)
157 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/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 161 StringRef Text, unsigned Min, unsigned Max)
162 : Directive(DirectiveLoc, DiagnosticLoc, Text, Min, Max) { }
179 StringRef Text, unsigned Min, unsigned Max)
180 : Directive(DirectiveLoc, DiagnosticLoc, Text, Min, Max), Regex(Text) { }
375 unsigned Max = 1;
379 // or more, or by a '-' meaning a range from min to max.
381 Max = Directive::MaxCount;
385 if (!PH.Next(Max) || Max < Min) {
392 Max = Min
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.cc 59 uptr size_to_allocate = Max(size, GetPageSizeCached());
80 uptr max = (uptr)-1L;
81 return (max / size) < n;
  /external/freetype/include/freetype/
fterrors.h 142 #define FT_ERROR_END_LIST FT_ERR_CAT( FT_ERR_PREFIX, Max ) };
  /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 138 *beg.chunk = Max(value, end.offset);
149 *end.chunk = Max(end.value, end.offset);
205 *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/opencv/cv/src/
_cvipp.h 315 IPCV_MORPHOLOGY( Max, Dilate, 8u, 1 )
316 IPCV_MORPHOLOGY( Max, Dilate, 8u, 3 )
317 IPCV_MORPHOLOGY( Max, Dilate, 8u, 4 )
318 IPCV_MORPHOLOGY( Max, Dilate, 16u, 1 )
319 IPCV_MORPHOLOGY( Max, Dilate, 16u, 3 )
320 IPCV_MORPHOLOGY( Max, Dilate, 16u, 4 )
321 IPCV_MORPHOLOGY( Max, Dilate, 32f, 1 )
322 IPCV_MORPHOLOGY( Max, Dilate, 32f, 3 )
323 IPCV_MORPHOLOGY( Max, Dilate, 32f, 4 )
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BitSet.cs 96 BitSet s = new BitSet(Math.Max(a, b) + 1);
142 int newSize = Math.Max(_bits.Length << 1, NumWordsToHold(bit));
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BitSet.cs 105 BitSet s = new BitSet( Math.Max( a, b ) + 1 );
158 int newSize = Math.Max( _bits.Length << 1, NumWordsToHold( bit ) );
  /external/skia/bench/
bench_util.py 51 Max = _ExtremeType(1, "Max")
171 min_x = Max
181 max_x = max(max_x, x)
208 self.serror = math.sqrt(max(0, se2))
209 self.serror_slope = math.sqrt(max(0, sB2))
210 self.serror_intercept = math.sqrt(max(0, sa2))
240 return max(0, (lower_right_y - upper_left_y) / regr_width)
  /external/chromium/chrome/browser/resources/net_internals/
socketpoolwrapper.js 85 tablePrinter.addHeaderCell('Max');
86 tablePrinter.addHeaderCell('Max Per Group');
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 70 case AtomicRMWInst::Max:
  /external/v8/src/
v8utils.h 126 ASSERT(Min(dst, src) + num_words <= Max(dst, src));
zone.cc 194 new_size = Max(kSegmentOverhead + size, kMaximumSegmentSize);

Completed in 1305 milliseconds

1 2 3 4 5