/external/chromium-trace/trace-viewer/src/base/ |
D | bbox2.js | 22 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_ = vec2.create(); 76 vec2.set(this.max_, value[0], value[1]); 81 this.max_[0] = Math.max(this.max_[0], value[0]); [all …]
|
D | range.js | 15 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/tools/telemetry/telemetry/timeline/ |
D | bounds.py | 10 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_, value) 104 return Bounds.GetOverlap(first_bounds.min_, first_bounds.max_, [all …]
|
/external/chromium_org/third_party/leveldatabase/src/util/ |
D | histogram.cc | 35 max_ = 0; in Clear() 52 if (max_ < value) max_ = value; in Add() 60 if (other.max_ > max_) max_ = other.max_; in Merge() 87 if (r > max_) r = max_; in Percentile() 91 return max_; in Percentile() 114 (num_ == 0.0 ? 0.0 : min_), Median(), max_); in ToString()
|
D | histogram.h | 25 double max_; variable
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
D | rollingaccumulator.h | 64 max_ = T(); in Reset() 76 if (sample_to_remove >= max_) { in AddSample() 90 if (count_ == 1 || sample >= max_) { in AddSample() 91 max_ = sample; in AddSample() 117 max_ = samples_[next_index_]; in ComputeMax() 119 max_ = _max(max_, samples_[(next_index_ + i) % max_count()]); in ComputeMax() 123 return max_; in ComputeMax() 178 mutable T max_; variable
|
/external/chromium_org/third_party/webrtc/base/ |
D | rollingaccumulator.h | 47 max_ = T(); in Reset() 59 if (sample_to_remove >= max_) { in AddSample() 73 if (count_ == 1 || sample >= max_) { in AddSample() 74 max_ = sample; in AddSample() 100 max_ = samples_[next_index_]; in ComputeMax() 102 max_ = _max(max_, samples_[(next_index_ + i) % max_count()]); in ComputeMax() 106 return max_; in ComputeMax() 161 mutable T max_; variable
|
/external/qemu/android/utils/ |
D | vector.h | 24 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/ui/gfx/ |
D | break_list.h | 47 size_t max() const { return max_; } in max() 68 size_t max_; variable 72 BreakList<T>::BreakList() : breaks_(1, Break(0, T())), max_(0) { in BreakList() 76 BreakList<T>::BreakList(T value) : breaks_(1, Break(0, value)), max_(0) { in BreakList() 91 DCHECK(Range(0, max_).Contains(range)); in ApplyValue() 102 if (trailing_value != value && range.end() != max_) in ApplyValue() 115 max_ = max; in SetMax() 142 return Range(i->first, next == breaks_.end() ? max_ : next->first); in GetRange() 168 if (max_ > 0) in CheckBreaks() 169 DCHECK_LT(breaks_.back().first, max_) << "Break beyond max position."; in CheckBreaks()
|
/external/chromium_org/components/metrics/chromeos/ |
D | metric_sample.cc | 27 max_(max), in MetricSample() 56 max_, in ToString() 64 max_, in ToString() 92 return max_; in max() 194 max_ == metric.max_ && bucket_count_ == metric.bucket_count_; in IsEqual()
|
D | metric_sample.h | 111 const int max_; variable
|
/external/chromium_org/content/browser/resources/media/ |
D | timeline_graph_view.js | 286 this.max_ = 0; 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_ - this.min_);
|
/external/webp/src/utils/ |
D | quant_levels_dec.c | 65 int min_, max_; // min and max level values member 143 if (v < p->max_ && v > p->min_) { in ApplyFilter() 186 p->max_ = 0; in CountLevels() 190 if (v > p->max_) p->max_ = v; in CountLevels() 194 p->min_level_dist_ = p->max_ - p->min_; in CountLevels()
|
/external/chromium_org/third_party/libwebp/utils/ |
D | quant_levels_dec.c | 65 int min_, max_; // min and max level values member 143 if (v < p->max_ && v > p->min_) { in ApplyFilter() 186 p->max_ = 0; in CountLevels() 190 if (v > p->max_) p->max_ = v; in CountLevels() 194 p->min_level_dist_ = p->max_ - p->min_; in CountLevels()
|
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/ |
D | bwe_test_framework.h | 49 max_(0) { in Stats() 89 return max_; in GetMax() 108 min_ = max_ = 0; in RefreshMinMax() 113 min_ = max_ = *it; in RefreshMinMax() 116 max_ = std::max(max_, *it); in RefreshMinMax() 128 T max_; variable
|
/external/chromium_org/chrome/browser/resources/net_internals/ |
D | timeline_graph_view.js | 477 this.max_ = 0; 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_;
|
/external/chromium_org/base/metrics/ |
D | histogram_samples.cc | 27 HistogramBase::Sample max_; member in base::__anon067485750111::SampleCountPickleIterator 45 !iter_->ReadInt(&max_) || in Next() 55 *max = max_; in Get()
|
/external/chromium_org/ash/wm/workspace/ |
D | workspace_window_resizer.cc | 269 max_(max) { in WindowSize() 274 max_ = size_; in WindowSize() 278 return size_ == (shrinking ? min_ : max_); in is_at_capacity() 290 return max_ != 0; in has_max() 298 return has_max() && size_ > max_; in is_overflowing() 316 if (has_max() && new_value > max_) { in Add() 317 size_ = max_; in Add() 318 return new_value - max_; in Add() 328 int max_; member in ash::WindowSize
|
/external/deqp/modules/gles2/functional/ |
D | es2fImplementationLimitTests.cpp | 67 FloatRange (float min_, float max_) : min(min_), max(max_) {} in FloatRange()
|
/external/chromium_org/components/policy/core/browser/ |
D | configuration_policy_handler.cc | 109 max_(max), in IntRangePolicyHandlerBase() 135 if (value < min_ || value > max_) { in EnsureInRange() 145 value = std::min(std::max(value, min_), max_); in EnsureInRange()
|
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/ |
D | cffparse.c | 848 #define CFF_FIELD_DELTA( code_, name_, max_, id_ ) \ in FT_Create_Class_cff_field_handlers() argument 854 clazz[i].array_max = max_; \ in FT_Create_Class_cff_field_handlers() 897 #define CFF_FIELD_DELTA( code_, name_, max_, id_ ) \ in FT_Create_Class_cff_field_handlers() argument 903 clazz[i].array_max = max_; \ in FT_Create_Class_cff_field_handlers()
|
/external/chromium_org/third_party/freetype/src/cff/ |
D | cffparse.c | 848 #define CFF_FIELD_DELTA( code_, name_, max_, id_ ) \ in FT_Create_Class_cff_field_handlers() argument 854 clazz[i].array_max = max_; \ in FT_Create_Class_cff_field_handlers() 897 #define CFF_FIELD_DELTA( code_, name_, max_, id_ ) \ in FT_Create_Class_cff_field_handlers() argument 903 clazz[i].array_max = max_; \ in FT_Create_Class_cff_field_handlers()
|
/external/freetype/src/cff/ |
D | cffparse.c | 844 #define CFF_FIELD_DELTA( code_, name_, max_, id_ ) \ in FT_Create_Class_cff_field_handlers() argument 850 clazz[i].array_max = max_; \ in FT_Create_Class_cff_field_handlers() 893 #define CFF_FIELD_DELTA( code_, name_, max_, id_ ) \ in FT_Create_Class_cff_field_handlers() argument 899 clazz[i].array_max = max_; \ in FT_Create_Class_cff_field_handlers()
|
/external/chromium_org/third_party/re2/re2/ |
D | regexp.h | 327 int max() { DCHECK_EQ(op_, kRegexpRepeat); return max_; } in max() 548 int max_; member
|
/external/regex-re2/re2/ |
D | regexp.h | 327 int max() { DCHECK_EQ(op_, kRegexpRepeat); return max_; } in max() 548 int max_; member
|