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

1 2 3 4 5 6 7 8 9

  /external/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)
  /external/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/chromium_org/media/base/
buffers.h 40 return base::TimeDelta::Max();
  /external/llvm/include/llvm/Support/
RandomNumberGenerator.h 41 /// Returns a random number in the range [0, Max).
42 uint64_t next(uint64_t Max);
  /external/llvm/lib/Support/
RandomNumberGenerator.cpp 58 uint64_t RandomNumberGenerator::next(uint64_t Max) {
59 std::uniform_int_distribution<uint64_t> distribution(0, Max - 1);
  /external/clang/include/clang/Frontend/
VerifyDiagnosticConsumer.h 150 StringRef Text, unsigned Min, unsigned Max);
158 unsigned Min, Max;
172 bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max)
174 Text(Text), Min(Min), Max(Max), MatchAnyLine(MatchAnyLine) {
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 204 MemoryLocation Min = Loc - MinBytesNearLoc, Max = Loc + MinBytesNearLoc;
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; ++P)
    [all...]
  /external/chromium_org/net/quic/congestion_control/
time_loss_algorithm.cc 37 QuicTime::Delta loss_delay = QuicTime::Delta::Max(
39 QuicTime::Delta::Max(rtt_stats.SmoothedRtt(), rtt_stats.latest_rtt())
  /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/remoting/test/
leaky_bucket.cc 26 return base::TimeDelta::Max();
  /external/chromium_org/third_party/freetype/include/freetype/
fterrors.h 135 #define FT_ERROR_END_LIST FT_ERR_CAT( FT_ERR_PREFIX, Max ) };
  /external/freetype/include/
fterrors.h 135 #define FT_ERROR_END_LIST FT_ERR_CAT( FT_ERR_PREFIX, Max ) };
  /external/chromium_org/base/time/
time.h 87 static TimeDelta Max();
99 return delta_ == std::numeric_limits<int64>::max();
271 return us_ == std::numeric_limits<int64>::max();
284 static Time Max();
498 // Preserve max to prevent overflow.
499 if (days == std::numeric_limits<int>::max())
500 return Max();
506 // Preserve max to prevent overflow.
507 if (hours == std::numeric_limits<int>::max())
508 return Max();
    [all...]
time.cc 20 TimeDelta TimeDelta::Max() {
21 return TimeDelta(std::numeric_limits<int64>::max());
26 // Preserve max to prevent overflow.
27 return std::numeric_limits<int>::max();
34 // Preserve max to prevent overflow.
35 return std::numeric_limits<int>::max();
42 // Preserve max to prevent overflow.
43 return std::numeric_limits<int>::max();
50 // Preserve max to prevent overflow.
58 // Preserve max to prevent overflow
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioNodeInput.cpp 152 maxChannels = std::max(maxChannels, output->numberOfChannels());
166 if (numberOfRenderingConnections() == 1 && node().internalChannelCountMode() == AudioNode::Max)
185 ASSERT(numberOfRenderingConnections() > 1 || node().internalChannelCountMode() != AudioNode::Max);
212 if (numberOfRenderingConnections() == 1 && node().internalChannelCountMode() == AudioNode::Max) {
AudioNode.cpp 57 , m_newChannelCountMode(Max)
59 , m_channelCountMode(Max)
283 if (m_channelCountMode != Max)
296 case Max:
297 return "max";
299 return "clamped-max";
314 if (mode == "max") {
315 m_newChannelCountMode = Max;
316 } else if (mode == "clamped-max") {
  /art/runtime/base/
histogram.h 82 Value Max() const {
103 // histogram percentiles are. Grows adaptively when we hit max buckets.
  /external/chromium_org/net/quic/
quic_time_test.cc 60 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));
quic_time.h 65 static Delta Max(Delta delta1, Delta delta2);
88 static QuicTime Max(QuicTime time1, QuicTime time2);
  /external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 168 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;
441 // or more, or by a '-' meaning a range from min to max.
443 Max = Directive::MaxCount;
447 if (!PH.Next(Max) || Max < Min) {
454 Max = Min
    [all...]
  /external/compiler-rt/lib/asan/
asan_poisoning.cc 134 *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/
interstitial_ui.cc 75 request_url.host(), "CA", base::Time::Max(), base::Time::Max());

Completed in 827 milliseconds

1 2 3 4 5 6 7 8 9