Searched defs:max_ (Results 1 - 19 of 19) sorted by relevance

/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 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/opencv3/modules/cudev/include/opencv2/cudev/expr/
H A Dper_element_func.hpp73 max_(const SrcPtr1& src1, const SrcPtr2& src2) function in namespace:cv::cudev
/external/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::__anon6195::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/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::__anon6440::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/src/compiler/
H A Dnode-cache.h33 : entries_(nullptr), size_(0), max_(max) {}
54 size_t max_; member in class:v8::internal::compiler::final
/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.cc28 HistogramBase::Sample max_; member in class:base::__anon9223::SampleCountPickleIterator
46 !iter_->ReadInt(&max_) ||
56 *max = max_;
/external/google-benchmark/src/
H A Dstat.h218 max_ = dat;
232 max_ = dat;
237 max_ = stat.max_;
245 max_ = -std::numeric_limits<VType>::infinity();
248 max_ = std::numeric_limits<VType>::min();
254 max_ = stat.max_;
261 if (stat.max_ > max_) max
292 VType max_; // max 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:__anon21144
143 if (v < p->max_ && v > p->min_) {
186 p->max_ = 0;
190 if (v > p->max_) p->max_ = 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
1928 , max (max_)
/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::__anon16848::__anon16849
/external/v8/src/
H A Dcounters.h182 max_(max),
220 int max_; member in class:v8::internal::Histogram
/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/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/opencv3/modules/core/test/
H A Dtest_mat.cpp44 Mat_<double>& max_ = (Mat_<double>&)max; local
53 max_(0, ci) = std::max( max_(0, ci), (double)src_(ri, ci) );
65 max_(ri, 0) = std::max( max_(ri, 0), (double)src_(ri, ci) );
/external/gmock/test/
H A Dgmock-matchers_test.cc2669 max_(Floating::Max()),
2747 const RawType max_; member in class:testing::gmock_matchers_test::FloatingPointTest
2793 Matcher<RawType> m5 = matcher_maker(ParentType::max_, ParentType::max_);
2794 EXPECT_TRUE(m5.Matches(ParentType::max_));
2795 EXPECT_FALSE(m5.Matches(-ParentType::max_));
2797 Matcher<RawType> m6 = matcher_maker(-ParentType::max_, ParentType::max_);
2798 EXPECT_FALSE(m6.Matches(ParentType::max_));
2799 EXPECT_TRUE(m6.Matches(-ParentType::max_));
[all...]

Completed in 4486 milliseconds