Searched refs:max_ (Results 1 - 25 of 32) sorted by relevance

12

/external/google-breakpad/src/testing/src/
H A Dgmock-cardinalities.cc54 max_(max >= min_ ? max : min_) {
75 virtual int ConservativeUpperBound() const { return max_; }
78 return min_ <= call_count && call_count <= max_;
82 return call_count >= max_;
89 const int max_; member in class:testing::__anon6898::BetweenCardinalityImpl
110 if (max_ == 0) {
112 } else if (max_ == INT_MAX) {
115 *os << "called at most " << FormatTimes(max_);
117 } else if (min_ == max_) {
119 } else if (max_
123 *os << "called between " << min_ << " and " << max_ << " times"; local
[all...]
/external/googletest/googlemock/src/
H A Dgmock-cardinalities.cc54 max_(max >= min_ ? max : min_) {
75 virtual int ConservativeUpperBound() const { return max_; }
78 return min_ <= call_count && call_count <= max_;
82 return call_count >= max_;
89 const int max_; member in class:testing::__anon6986::BetweenCardinalityImpl
110 if (max_ == 0) {
112 } else if (max_ == INT_MAX) {
115 *os << "called at most " << FormatTimes(max_);
117 } else if (min_ == max_) {
119 } else if (max_
123 *os << "called between " << min_ << " and " << max_ << " times"; local
[all...]
/external/v8/testing/gmock/src/
H A Dgmock-cardinalities.cc54 max_(max >= min_ ? max : min_) {
75 virtual int ConservativeUpperBound() const { return max_; }
78 return min_ <= call_count && call_count <= max_;
82 return call_count >= max_;
89 const int max_; member in class:testing::__anon21881::BetweenCardinalityImpl
110 if (max_ == 0) {
112 } else if (max_ == INT_MAX) {
115 *os << "called at most " << FormatTimes(max_);
117 } else if (min_ == max_) {
119 } else if (max_
123 *os << "called between " << min_ << " and " << max_ << " times"; local
[all...]
/external/webrtc/webrtc/base/
H A Dexp_filter.h24 : max_(max) {
33 // y(k) = min(alpha_^ exp * y(k-1) + (1 - alpha_^ exp) * sample, max_).
45 const float max_; member in class:rtc::ExpFilter
H A Dexp_filter.cc34 if (max_ != kValueUndefined && filtered_ > max_) {
35 filtered_ = max_;
H A Drollingaccumulator.h48 max_ = T();
60 if (sample_to_remove >= max_) {
74 if (count_ == 1 || sample >= max_) {
75 max_ = sample;
101 max_ = samples_[next_index_];
103 max_ = std::max(max_, samples_[(next_index_ + i) % max_count()]);
107 return max_;
162 mutable T max_; member in class:rtc::RollingAccumulator
/external/chromium-trace/catapult/telemetry/telemetry/timeline/
H A Dbounds.py10 self.max_ = None
22 return "Bounds(min=%s,max=%s)" % (self.min_, self.max_)
38 return self.max_
44 return self.max_ - self.min_
48 return (self.min_ + self.max_) * 0.5
66 self.max_ = None
72 self.AddValue(bounds.max_)
76 self.max_ = value
81 self.max_ = max(self.max_, valu
[all...]
/external/google-benchmark/src/
H A Dstat.h217 max_ = dat;
231 max_ = dat;
236 max_ = stat.max_;
244 max_ = -std::numeric_limits<VType>::infinity();
247 max_ = std::numeric_limits<VType>::min();
253 max_ = stat.max_;
260 if (stat.max_ > max_) max
291 VType max_; // max of value[i] member in class:benchmark::Stat1MinMax
[all...]
/external/libcxx/utils/google-benchmark/src/
H A Dstat.h217 max_ = dat;
231 max_ = dat;
236 max_ = stat.max_;
244 max_ = -std::numeric_limits<VType>::infinity();
247 max_ = std::numeric_limits<VType>::min();
253 max_ = stat.max_;
260 if (stat.max_ > max_) max
291 VType max_; // max of value[i] member in class:benchmark::Stat1MinMax
[all...]
/external/v8/src/compiler/
H A Dnode-cache.h33 : entries_(nullptr), size_(0), max_(max) {}
54 size_t max_; member in class:v8::internal::compiler::final
H A Dnode-cache.cc33 if (size_ >= max_) return false; // Don't grow past the maximum size.
/external/libchrome/base/metrics/
H A Dhistogram_samples.cc28 HistogramBase::Sample max_; member in class:base::__anon9937::SampleCountPickleIterator
46 !iter_->ReadInt(&max_) ||
56 *max = max_;
/external/webp/src/utils/
H A Dquant_levels_dec_utils.c66 int min_, max_; // min and max level values member in struct:__anon24257
144 if (v < p->max_ && v > p->min_) {
187 p->max_ = 0;
192 if (v > p->max_) p->max_ = v;
198 p->min_level_dist_ = p->max_ - p->min_;
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_framework.h97 max_(0) {
136 return max_;
155 min_ = max_ = 0;
160 min_ = max_ = *it;
163 max_ = std::max(max_, *it);
175 T max_; member in class:webrtc::testing::bwe::Stats
/external/deqp/modules/gles2/functional/
H A Des2fImplementationLimitTests.cpp67 FloatRange (float min_, float max_) : min(min_), max(max_) {} argument
/external/v8/src/regexp/
H A Dregexp-ast.h378 max_(max),
398 int max() { return max_; }
407 int max_; member in class:v8::internal::final
/external/deqp/framework/opengl/
H A DgluTextureTestUtil.hpp378 LogGradientFmt (const tcu::Vec4* min_, const tcu::Vec4* max_) : valueMin(min_), valueMax(max_) {} argument
/external/regex-re2/re2/
H A Dregexp.h120 // Matches sub_[0] at least min_ times, at most max_ times.
121 // max_ == -1 means no upper limit.
327 int max() { DCHECK_EQ(op_, kRegexpRepeat); return max_; }
548 int max_; member in struct:re2::Regexp::__anon16549::__anon16550
H A Dsimplify.cc277 Regexp* nre = SimplifyRepeat(newsub, re->min_, re->max_,
/external/pdfium/third_party/freetype/src/cff/
H A Dcffparse.c864 #define CFF_FIELD_DELTA( code_, name_, max_, id_ ) \
870 clazz[i].array_max = max_; \
913 #define CFF_FIELD_DELTA( code_, name_, max_, id_ ) \
919 clazz[i].array_max = max_; \
/external/deqp/modules/gles3/functional/
H A Des3fImplementationLimitTests.cpp76 FloatRange (float min_, float max_) : min(min_), max(max_) {} argument
/external/freetype/src/cff/
H A Dcffparse.c1167 #define CFF_FIELD_DELTA( code_, name_, max_, id_ ) \
1173 clazz[i].array_max = max_; \
1227 #define CFF_FIELD_DELTA( code_, name_, max_, id_ ) \
1233 clazz[i].array_max = max_; \
/external/googletest/googlemock/test/
H A Dgmock-matchers_test.cc2720 max_(Floating::Max()),
2798 const RawType max_; member in class:testing::gmock_matchers_test::FloatingPointTest
2850 Matcher<RawType> m5 = matcher_maker(ParentType::max_, ParentType::max_);
2851 EXPECT_TRUE(m5.Matches(ParentType::max_));
2852 EXPECT_FALSE(m5.Matches(-ParentType::max_));
2854 Matcher<RawType> m6 = matcher_maker(-ParentType::max_, ParentType::max_);
2855 EXPECT_FALSE(m6.Matches(ParentType::max_));
2856 EXPECT_TRUE(m6.Matches(-ParentType::max_));
[all...]
/external/v8/testing/gmock/test/
H A Dgmock-matchers_test.cc2724 max_(Floating::Max()),
2802 const RawType max_; member in class:testing::gmock_matchers_test::FloatingPointTest
2848 Matcher<RawType> m5 = matcher_maker(ParentType::max_, ParentType::max_);
2849 EXPECT_TRUE(m5.Matches(ParentType::max_));
2850 EXPECT_FALSE(m5.Matches(-ParentType::max_));
2852 Matcher<RawType> m6 = matcher_maker(-ParentType::max_, ParentType::max_);
2853 EXPECT_FALSE(m6.Matches(ParentType::max_));
2854 EXPECT_TRUE(m6.Matches(-ParentType::max_));
[all...]
/external/libdrm/freedreno/msm/
H A Dmsm_ringbuffer.c82 (x)->name = grow((x)->name, (x)->nr_ ## name, &(x)->max_ ## name, sizeof((x)->name[0])); \

Completed in 646 milliseconds

12