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

123456789

/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/remoting/test/
H A Dleaky_bucket.cc26 return base::TimeDelta::Max();
/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();
284 static Time Max();
500 return Max();
508 return Max();
516 return Max();
524 return Max();
532 return Max();
540 return Max();
548 return Max();
556 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.cpp166 if (numberOfRenderingConnections() == 1 && node().internalChannelCountMode() == AudioNode::Max)
185 ASSERT(numberOfRenderingConnections() > 1 || node().internalChannelCountMode() != AudioNode::Max);
212 if (numberOfRenderingConnections() == 1 && node().internalChannelCountMode() == AudioNode::Max) {
H A DAudioNode.cpp57 , m_newChannelCountMode(Max)
59 , m_channelCountMode(Max)
283 if (m_channelCountMode != Max)
296 case Max:
315 m_newChannelCountMode = 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));
/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/chromium_org/chrome/browser/ui/webui/interstitials/
H A Dinterstitial_ui.cc75 request_url.host(), "CA", base::Time::Max(), base::Time::Max());

Completed in 530 milliseconds

123456789