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

12

/external/chromium-trace/trace-viewer/src/base/
H A Dbbox2.js22 this.max_ = undefined;
31 this.max_ = undefined;
42 this.addVec2(bbox2.max_);
56 this.max_ = vec2.create();
58 vec2.set(this.max_, x, y);
63 this.max_[0] = Math.max(this.max_[0], x);
64 this.max_[1] = Math.max(this.max_[1], y);
74 this.max_
[all...]
H A Drange.js15 this.max_ = undefined;
24 this.max_ = undefined;
40 this.max_ = value;
45 this.max_ = Math.max(this.max_, value);
58 return this.max_;
64 return this.max_ - this.min_;
68 return (this.min_ + this.max_) * 0.5;
/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 Dexp_filter.cc34 if (max_ != kValueUndefined && filtered_ > max_) {
35 filtered_ = max_;
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/qemu/android/utils/
H A Dvector.h24 unsigned max_##name \
33 (obj)->max_##name = 0; \
40 (obj)->max_##name = (count); \
47 (obj)->max_##name = 0; \
61 (obj)->max_##name = (newMax); \
67 if (_newCount > (obj)->max_##name) \
70 &(obj)->max_##name, _newCount ); \
/external/chromium_org/tools/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/chromium_org/third_party/leveldatabase/src/util/
H A Dhistogram.cc35 max_ = 0;
52 if (max_ < value) max_ = value;
60 if (other.max_ > max_) max_ = other.max_;
87 if (r > max_) r = max_;
91 return max_;
[all...]
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
H A Dnode-cache.cc46 if (size_ >= max_) return false; // Don't grow past the maximum size.
/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/components/metrics/serialization/
H A Dmetric_sample.cc27 max_(max),
56 max_,
64 max_,
92 return max_;
194 max_ == metric.max_ && bucket_count_ == metric.bucket_count_;
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/content/browser/resources/media/
H A Dtimeline_graph_view.js286 this.max_ = 0;
354 * Lays out labels and sets |max_|/|min_|, taking the time units into
356 * |max_| will be set to the value of the largest label, which
385 // Convert |min_|/|max_| back to unit '1'.
387 this.max_ *= Math.pow(1024, unit);
400 this.min_ = this.max_ = maxValue;
451 this.max_ = Math.ceil(maxValue / stepSize) * stepSize;
455 for (var label = this.max_; label >= this.min_; label -= stepSize)
488 if (this.max_)
489 scale = bottom / (this.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/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/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/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/chromium_org/chrome/browser/resources/net_internals/
H A Dtimeline_graph_view.js477 this.max_ = 0;
535 * Lays out labels and sets |max_|, taking the time units into
537 * |max_| will be set to the value of the largest label, which
567 // Convert |max_| back to bytes, so it can be used when scaling values
569 this.max_ *= Math.pow(1024, unit);
581 this.max_ = maxValue;
632 this.max_ = Math.ceil(maxValue / stepSize) * stepSize;
635 for (var label = this.max_; label >= 0; label -= stepSize)
673 if (this.max_)
674 scale = bottom / this.max_;
[all...]
/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/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.cc109 max_(max),
135 if (value < min_ || value > max_) {
145 value = std::min(std::max(value, min_), max_);
/external/chromium_org/v8/src/
H A Dcounters.cc33 CreateHistogram(name_, min_, max_, num_buckets_);
/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

Completed in 668 milliseconds

12