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

/external/chromium_org/third_party/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.h47 max_ = T();
59 if (sample_to_remove >= max_) {
73 if (count_ == 1 || sample >= max_) {
74 max_ = sample;
100 max_ = samples_[next_index_];
102 max_ = _max(max_, samples_[(next_index_ + i) % max_count()]);
106 return max_;
161 mutable T max_; member in class:rtc::RollingAccumulator
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dhistogram.h25 double max_; member in class:leveldb::Histogram
/external/chromium_org/v8/src/compiler/
H A Dnode-cache.h21 explicit NodeCache(int max = 256) : entries_(NULL), size_(0), max_(max) {}
40 int32_t max_; member in class:v8::internal::compiler::NodeCache
/external/chromium_org/components/metrics/serialization/
H A Dmetric_sample.h56 // histogram: histogram\0|name_| |sample_| |min_| |max_| |bucket_count_|\0
58 // linearhistogram: linearhistogram\0|name_| |sample_| |max_|\0
111 const int max_; member in class:metrics::MetricSample
/external/chromium_org/ui/gfx/
H A Dbreak_list.h21 // A solitary break at position 0 applies to the entire space [0, max_).
22 // |max_| is initially 0 and should be set to match the available ranged space.
24 // The value of the terminal break applies to the range [break.first, max_).
47 size_t max() const { return max_; }
54 // the next break's start position (or |max_| for the terminal break).
63 // Check for ordered breaks [0, |max_|) with no adjacent equivalent values.
68 size_t max_; member in class:gfx::BreakList
72 BreakList<T>::BreakList() : breaks_(1, Break(0, T())), max_(0) {
76 BreakList<T>::BreakList(T value) : breaks_(1, Break(0, value)), max_(0) {
91 DCHECK(Range(0, max_)
[all...]
/external/chromium_org/base/metrics/
H A Dhistogram_samples.cc27 HistogramBase::Sample max_; member in class:base::__anon2386::SampleCountPickleIterator
45 !iter_->ReadInt(&max_) ||
55 *max = max_;
/external/deqp/modules/gles2/functional/
H A Des2fImplementationLimitTests.cpp67 FloatRange (float min_, float max_) : min(min_), max(max_) {} argument
/external/chromium_org/components/policy/core/browser/
H A Dconfiguration_policy_handler.h135 int max_; member in class:policy::IntRangePolicyHandlerBase
/external/chromium_org/media/cast/logging/
H A Dstats_event_subscriber.h104 int64 max_; member in class:media::cast::StatsEventSubscriber::SimpleHistogram
/external/chromium_org/third_party/libwebp/utils/
H A Dquant_levels_dec.c65 int min_, max_; // min and max level values member in struct:__anon13301
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/chromium_org/v8/src/
H A Dcounters.h179 max_(max),
216 int max_; member in class:v8::internal::Histogram
H A Dast.h2804 max_(max),
2829 int max() { return max_; }
2838 int max_; member in class:v8::internal::FINAL
/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:__anon33398
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/chromium_org/ash/wm/workspace/
H A Dworkspace_window_resizer.cc273 max_(max) {
278 max_ = size_;
282 return size_ == (shrinking ? min_ : max_);
294 return max_ != 0;
302 return has_max() && size_ > max_;
320 if (has_max() && new_value > max_) {
321 size_ = max_;
322 return new_value - max_;
332 int max_; member in class:ash::WindowSize
/external/chromium_org/third_party/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::__anon14898::__anon14899
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_framework.h51 max_(0) {
91 return max_;
110 min_ = max_ = 0;
115 min_ = max_ = *it;
118 max_ = std::max(max_, *it);
130 T max_; member in class:webrtc::testing::bwe::Stats
/external/deqp/modules/glshared/
H A DglsTextureTestUtil.hpp563 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::__anon30308::__anon30309

Completed in 691 milliseconds