Searched refs:Max (Results 1 - 25 of 193) sorted by relevance

12345678

/external/libcxx/test/numerics/rand/rand.adapt/rand.adapt.ibits/
H A Dresult_type.pass.cpp22 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)
H A Deval.pass.cpp20 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/libcxx/test/numerics/rand/rand.adapt/rand.adapt.shuf/
H A Dresult_type.pass.cpp22 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)
H A Deval.pass.cpp20 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/
H A Denum_set.h21 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> Differenc
[all...]
/external/chromium_org/media/base/
H A Dbuffers.h40 return base::TimeDelta::Max();
/external/llvm/include/llvm/Support/
H A DRandomNumberGenerator.h41 /// Returns a random number in the range [0, Max).
42 uint64_t next(uint64_t Max);
/external/llvm/lib/Support/
H A DRandomNumberGenerator.cpp58 uint64_t RandomNumberGenerator::next(uint64_t Max) { argument
59 std::uniform_int_distribution<uint64_t> distribution(0, Max - 1);
/external/compiler-rt/lib/ubsan/
H A Dubsan_diag.cc204 MemoryLocation Min = Loc - MinBytesNearLoc, Max = Loc + MinBytesNearLoc; local
207 Max = __sanitizer::Max(Ranges[I].getEnd().getMemoryLocation(), Max);
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) {
226 for (uptr P = Min; P != Max; ++P) {
244 for (uptr P = Min; P != Max;
[all...]
/external/chromium_org/net/quic/congestion_control/
H A Dtime_loss_algorithm.cc37 QuicTime::Delta loss_delay = QuicTime::Delta::Max(
39 QuicTime::Delta::Max(rtt_stats.SmoothedRtt(), rtt_stats.latest_rtt())
/external/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h150 StringRef Text, unsigned Min, unsigned Max);
158 unsigned Min, Max; member in class:clang::VerifyDiagnosticConsumer::Directive
172 bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max)
174 Text(Text), Min(Min), Max(Max), MatchAnyLine(MatchAnyLine) {
171 Directive(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max) argument
/external/eigen/unsupported/test/
H A Dpolynomialutils.cpp78 _Scalar Max = roots.array().abs().maxCoeff(); local
80 bool eval = (M >= Max) && (m <= min);
85 cerr << "Min,Max: (" << min << ", " << Max << ")" << endl;
/external/chromium_org/third_party/freetype/include/freetype/
H A Dfterrors.h135 #define FT_ERROR_END_LIST FT_ERR_CAT( FT_ERR_PREFIX, Max ) };
/external/freetype/include/
H A Dfterrors.h135 #define FT_ERROR_END_LIST FT_ERR_CAT( FT_ERR_PREFIX, Max ) };
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dfterrors.h135 #define FT_ERROR_END_LIST FT_ERR_CAT( FT_ERR_PREFIX, Max ) };
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dfterrors.h135 #define FT_ERROR_END_LIST FT_ERR_CAT( FT_ERR_PREFIX, Max ) };
/external/chromium_org/base/time/
H A Dtime.h87 static TimeDelta Max();
279 static Time Max();
511 return Max();
519 return Max();
527 return Max();
535 return Max();
543 return Max();
551 return Max();
559 return Max();
567 return Max();
[all...]
H A Dtime.cc20 TimeDelta TimeDelta::Max() { function in class:base::TimeDelta
100 Time Time::Max() { function in class:base::Time
109 return Max();
133 return Max();
164 return Max();
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioNodeInput.cpp176 if (numberOfRenderingConnections() == 1 && node()->internalChannelCountMode() == AudioNode::Max)
195 ASSERT(numberOfRenderingConnections() > 1 || node()->internalChannelCountMode() != AudioNode::Max);
222 if (numberOfRenderingConnections() == 1 && node()->internalChannelCountMode() == AudioNode::Max) {
/external/chromium_org/net/quic/
H A Dquic_time_test.cc60 TEST(QuicTimeDeltaTest, Max) {
62 QuicTime::Delta::Max(QuicTime::Delta::FromMicroseconds(1000),
113 TEST_F(QuicTimeTest, Max) {
119 EXPECT_EQ(time_2, QuicTime::Max(time_1, time_2));
H A Dquic_time.cc74 QuicTime::Delta QuicTime::Delta::Max(QuicTime::Delta delta1, function in class:net::QuicTime::Delta
93 QuicTime QuicTime::Max(QuicTime time1, QuicTime time2) { function in class:net::QuicTime
H A Dquic_time.h65 static Delta Max(Delta delta1, Delta delta2);
85 static QuicTime Max(QuicTime time1, QuicTime time2);
/external/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp168 unsigned Max)
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),
437 unsigned Max = 1; local
443 Max = Directive::MaxCount;
447 if (!PH.Next(Max) || Max < Min) {
454 Max = Min;
458 Max
166 StandardDirective(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max) argument
185 RegexDirective(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max, StringRef RegexStr) argument
875 create(bool RegexKind, SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max) argument
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_poisoning.cc134 *beg.chunk = Max(value, end.offset);
145 *end.chunk = Max(end.value, end.offset);
251 *shadow_end = Max(end_value, end_offset);
287 uptr c = RoundUpTo(Max(old_mid, new_mid), granularity);
330 uptr r2_beg = Max(beg, mid - kMaxRangeToCheck);
332 uptr r3_beg = Max(end - kMaxRangeToCheck, mid);
/external/llvm/lib/CodeGen/
H A DCriticalAntiDepBreaker.cpp462 const SUnit *Max = nullptr; local
466 if (!Max || SU->getDepth() + SU->Latency > Max->getDepth() + Max->Latency)
467 Max = SU;
473 << (Max->getDepth() + Max->Latency) << "\n");
485 const SUnit *CriticalPathSU = Max;

Completed in 987 milliseconds

12345678