Searched defs:min_ (Results 1 - 14 of 14) sorted by relevance

/external/gmock/src/
H A Dgmock-cardinalities.cc53 : min_(min >= 0 ? min : 0),
54 max_(max >= min_ ? max : min_) {
74 virtual int ConservativeLowerBound() const { return min_; }
78 return min_ <= call_count && call_count <= max_;
88 const int min_; member in class:testing::__anon6195::BetweenCardinalityImpl
109 if (min_ == 0) {
117 } else if (min_ == max_) {
118 *os << "called " << FormatTimes(min_);
120 *os << "called at least " << FormatTimes(min_);
[all...]
/external/google-breakpad/src/testing/src/
H A Dgmock-cardinalities.cc53 : min_(min >= 0 ? min : 0),
54 max_(max >= min_ ? max : min_) {
74 virtual int ConservativeLowerBound() const { return min_; }
78 return min_ <= call_count && call_count <= max_;
88 const int min_; member in class:testing::__anon6440::BetweenCardinalityImpl
109 if (min_ == 0) {
117 } else if (min_ == max_) {
118 *os << "called " << FormatTimes(min_);
120 *os << "called at least " << FormatTimes(min_);
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fImplementationLimitTests.cpp67 FloatRange (float min_, float max_) : min(min_), max(max_) {} argument
/external/libchrome/base/metrics/
H A Dhistogram_samples.cc27 HistogramBase::Sample min_; member in class:base::__anon9217::SampleCountPickleIterator
45 if (!iter_->ReadInt(&min_) ||
55 *min = min_;
/external/webrtc/webrtc/base/
H A Drollingaccumulator.h50 min_ = T();
63 if (sample_to_remove <= min_) {
78 if (count_ == 1 || sample <= min_) {
79 min_ = sample;
114 min_ = samples_[next_index_];
116 min_ = std::min(min_, samples_[(next_index_ + i) % max_count()]);
120 return min_;
164 mutable T min_; member in class:rtc::RollingAccumulator
/external/google-benchmark/src/
H A Dstat.h219 min_ = dat;
233 min_ = dat;
238 min_ = stat.min_;
244 min_ = std::numeric_limits<VType>::infinity();
247 min_ = std::numeric_limits<VType>::max();
255 min_ = stat.min_;
262 if (stat.min_ < min_) min
293 VType min_; // min of value[i] member in class:benchmark::Stat1MinMax
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fImplementationLimitTests.cpp76 FloatRange (float min_, float max_) : min(min_), max(max_) {} argument
/external/webp/src/utils/
H A Dquant_levels_dec.c65 int min_, max_; // min and max level values member in struct:__anon19912
143 if (v < p->max_ && v > p->min_) {
185 p->min_ = 255;
189 if (v < p->min_) p->min_ = v;
194 p->min_level_dist_ = p->max_ - p->min_;
/external/deqp/modules/glshared/
H A DglsTextureTestUtil.hpp555 LogGradientFmt (const tcu::Vec4* min_, const tcu::Vec4* max_) : valueMin(min_), valueMax(max_) {} argument
H A DglsVertexArrayTests.cpp1918 MultiVertexArrayTest::Spec::ArraySpec::ArraySpec(Array::InputType inputType_, Array::OutputType outputType_, Array::Storage storage_, Array::Usage usage_, int componentCount_, int offset_, int stride_, bool normalize_, GLValue min_, GLValue max_) argument
1927 , min (min_)
/external/regex-re2/re2/
H A Dregexp.h120 // Matches sub_[0] at least min_ times, at most max_ times.
326 int min() { DCHECK_EQ(op_, kRegexpRepeat); return min_; }
549 int min_; member in struct:re2::Regexp::__anon15615::__anon15616
/external/v8/src/
H A Dcounters.h181 min_(min),
219 int min_; member in class:v8::internal::Histogram
/external/v8/src/regexp/
H A Dregexp-ast.h377 min_(min),
397 int min() { return min_; }
406 int min_; member in class:v8::internal::final
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_framework.h96 min_(0),
132 return min_;
155 min_ = max_ = 0;
160 min_ = max_ = *it;
162 min_ = std::min(min_, *it);
174 T min_; member in class:webrtc::testing::bwe::Stats

Completed in 283 milliseconds