/external/v8/testing/gmock/src/ |
D | gmock-cardinalities.cc | 54 max_(max >= min_ ? max : min_) { in BetweenCardinalityImpl() 75 virtual int ConservativeUpperBound() const { return max_; } in ConservativeUpperBound() 78 return min_ <= call_count && call_count <= max_; in IsSatisfiedByCallCount() 82 return call_count >= max_; in IsSaturatedByCallCount() 89 const int max_; member in testing::__anoncd2a0d000111::BetweenCardinalityImpl 110 if (max_ == 0) { in DescribeTo() 112 } else if (max_ == INT_MAX) { in DescribeTo() 115 *os << "called at most " << FormatTimes(max_); in DescribeTo() 117 } else if (min_ == max_) { in DescribeTo() 119 } else if (max_ == INT_MAX) { in DescribeTo() [all …]
|
/external/googletest/googlemock/src/ |
D | gmock-cardinalities.cc | 54 max_(max >= min_ ? max : min_) { in BetweenCardinalityImpl() 75 virtual int ConservativeUpperBound() const { return max_; } in ConservativeUpperBound() 78 return min_ <= call_count && call_count <= max_; in IsSatisfiedByCallCount() 82 return call_count >= max_; in IsSaturatedByCallCount() 89 const int max_; member in testing::__anona25c05380111::BetweenCardinalityImpl 110 if (max_ == 0) { in DescribeTo() 112 } else if (max_ == INT_MAX) { in DescribeTo() 115 *os << "called at most " << FormatTimes(max_); in DescribeTo() 117 } else if (min_ == max_) { in DescribeTo() 119 } else if (max_ == INT_MAX) { in DescribeTo() [all …]
|
/external/google-breakpad/src/testing/src/ |
D | gmock-cardinalities.cc | 54 max_(max >= min_ ? max : min_) { in BetweenCardinalityImpl() 75 virtual int ConservativeUpperBound() const { return max_; } in ConservativeUpperBound() 78 return min_ <= call_count && call_count <= max_; in IsSatisfiedByCallCount() 82 return call_count >= max_; in IsSaturatedByCallCount() 89 const int max_; member in testing::__anon90e0e8ed0111::BetweenCardinalityImpl 110 if (max_ == 0) { in DescribeTo() 112 } else if (max_ == INT_MAX) { in DescribeTo() 115 *os << "called at most " << FormatTimes(max_); in DescribeTo() 117 } else if (min_ == max_) { in DescribeTo() 119 } else if (max_ == INT_MAX) { in DescribeTo() [all …]
|
/external/chromium-trace/catapult/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/webrtc/webrtc/base/ |
D | rollingaccumulator.h | 48 max_ = T(); in Reset() 60 if (sample_to_remove >= max_) { in AddSample() 74 if (count_ == 1 || sample >= max_) { in AddSample() 75 max_ = sample; in AddSample() 101 max_ = samples_[next_index_]; in ComputeMax() 103 max_ = std::max(max_, samples_[(next_index_ + i) % max_count()]); in ComputeMax() 107 return max_; in ComputeMax() 162 mutable T max_; variable
|
D | exp_filter.cc | 34 if (max_ != kValueUndefined && filtered_ > max_) { in Apply() 35 filtered_ = max_; in Apply()
|
D | exp_filter.h | 24 : max_(max) { in max_() function 45 const float max_; variable
|
/external/google-benchmark/src/ |
D | stat.h | 217 max_ = dat; in Stat1MinMax() 231 max_ = dat; in Stat1MinMax() 236 max_ = stat.max_; in Stat1MinMax() 244 max_ = -std::numeric_limits<VType>::infinity(); in Clear() 247 max_ = std::numeric_limits<VType>::min(); in Clear() 253 max_ = stat.max_; 260 if (stat.max_ > max_) max_ = stat.max_; 275 VType Max() const { return max_; } in Max() 291 VType max_; // max of value[i] variable
|
/external/libcxx/utils/google-benchmark/src/ |
D | stat.h | 217 max_ = dat; in Stat1MinMax() 231 max_ = dat; in Stat1MinMax() 236 max_ = stat.max_; in Stat1MinMax() 244 max_ = -std::numeric_limits<VType>::infinity(); in Clear() 247 max_ = std::numeric_limits<VType>::min(); in Clear() 253 max_ = stat.max_; 260 if (stat.max_ > max_) max_ = stat.max_; 275 VType Max() const { return max_; } in Max() 291 VType max_; // max of value[i] variable
|
/external/webp/src/utils/ |
D | quant_levels_dec_utils.c | 66 int min_, max_; // min and max level values member 144 if (v < p->max_ && v > p->min_) { in ApplyFilter() 187 p->max_ = 0; in CountLevels() 192 if (v > p->max_) p->max_ = v; in CountLevels() 198 p->min_level_dist_ = p->max_ - p->min_; in CountLevels()
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/ |
D | bwe_test_framework.h | 97 max_(0) { in Stats() 136 return max_; in GetMax() 155 min_ = max_ = 0; in RefreshMinMax() 160 min_ = max_ = *it; in RefreshMinMax() 163 max_ = std::max(max_, *it); in RefreshMinMax() 175 T max_; variable
|
/external/libchrome/base/metrics/ |
D | histogram_samples.cc | 28 HistogramBase::Sample max_; member in base::__anon1c76099b0111::SampleCountPickleIterator 46 !iter_->ReadInt(&max_) || in Next() 56 *max = max_; in Get()
|
/external/v8/src/compiler/ |
D | node-cache.h | 33 : entries_(nullptr), size_(0), max_(max) {} in entries_() 54 size_t max_; variable
|
D | node-cache.cc | 33 if (size_ >= max_) return false; // Don't grow past the maximum size. in Resize()
|
/external/deqp/modules/gles2/functional/ |
D | es2fImplementationLimitTests.cpp | 67 FloatRange (float min_, float max_) : min(min_), max(max_) {} in FloatRange()
|
/external/pdfium/third_party/freetype/src/cff/ |
D | cffparse.c | 864 #define CFF_FIELD_DELTA( code_, name_, max_, id_ ) \ in FT_Create_Class_cff_field_handlers() argument 870 clazz[i].array_max = max_; \ in FT_Create_Class_cff_field_handlers() 913 #define CFF_FIELD_DELTA( code_, name_, max_, id_ ) \ in FT_Create_Class_cff_field_handlers() argument 919 clazz[i].array_max = max_; \ in FT_Create_Class_cff_field_handlers()
|
/external/regex-re2/re2/ |
D | regexp.h | 327 int max() { DCHECK_EQ(op_, kRegexpRepeat); return max_; } in max() 548 int max_; member
|
D | simplify.cc | 277 Regexp* nre = SimplifyRepeat(newsub, re->min_, re->max_, in PostVisit()
|
/external/v8/src/regexp/ |
D | regexp-ast.h | 378 max_(max), in RegExpQuantifier() 398 int max() { return max_; } in max() 407 int max_; variable
|
/external/deqp/framework/opengl/ |
D | gluTextureTestUtil.hpp | 378 LogGradientFmt (const tcu::Vec4* min_, const tcu::Vec4* max_) : valueMin(min_), valueMax(max_) {} in LogGradientFmt()
|
/external/freetype/src/cff/ |
D | cffparse.c | 1167 #define CFF_FIELD_DELTA( code_, name_, max_, id_ ) \ in FT_Create_Class_cff_field_handlers() argument 1173 clazz[i].array_max = max_; \ in FT_Create_Class_cff_field_handlers() 1227 #define CFF_FIELD_DELTA( code_, name_, max_, id_ ) \ in FT_Create_Class_cff_field_handlers() argument 1233 clazz[i].array_max = max_; \ in FT_Create_Class_cff_field_handlers()
|
/external/v8/testing/gmock/test/ |
D | gmock-matchers_test.cc | 2724 max_(Floating::Max()), in FloatingPointTest() 2802 const RawType max_; member in testing::gmock_matchers_test::FloatingPointTest 2848 Matcher<RawType> m5 = matcher_maker(ParentType::max_, ParentType::max_); in TestNearMatches() 2849 EXPECT_TRUE(m5.Matches(ParentType::max_)); in TestNearMatches() 2850 EXPECT_FALSE(m5.Matches(-ParentType::max_)); in TestNearMatches() 2852 Matcher<RawType> m6 = matcher_maker(-ParentType::max_, ParentType::max_); in TestNearMatches() 2853 EXPECT_FALSE(m6.Matches(ParentType::max_)); in TestNearMatches() 2854 EXPECT_TRUE(m6.Matches(-ParentType::max_)); in TestNearMatches() 2856 Matcher<RawType> m7 = matcher_maker(ParentType::max_, 0); in TestNearMatches() 2857 EXPECT_TRUE(m7.Matches(ParentType::max_)); in TestNearMatches() [all …]
|
/external/googletest/googlemock/test/ |
D | gmock-matchers_test.cc | 2720 max_(Floating::Max()), in FloatingPointTest() 2798 const RawType max_; member in testing::gmock_matchers_test::FloatingPointTest 2850 Matcher<RawType> m5 = matcher_maker(ParentType::max_, ParentType::max_); in TestNearMatches() 2851 EXPECT_TRUE(m5.Matches(ParentType::max_)); in TestNearMatches() 2852 EXPECT_FALSE(m5.Matches(-ParentType::max_)); in TestNearMatches() 2854 Matcher<RawType> m6 = matcher_maker(-ParentType::max_, ParentType::max_); in TestNearMatches() 2855 EXPECT_FALSE(m6.Matches(ParentType::max_)); in TestNearMatches() 2856 EXPECT_TRUE(m6.Matches(-ParentType::max_)); in TestNearMatches() 2858 Matcher<RawType> m7 = matcher_maker(ParentType::max_, 0); in TestNearMatches() 2859 EXPECT_TRUE(m7.Matches(ParentType::max_)); in TestNearMatches() [all …]
|
/external/deqp/modules/gles3/functional/ |
D | es3fImplementationLimitTests.cpp | 76 FloatRange (float min_, float max_) : min(min_), max(max_) {} in FloatRange()
|
/external/libdrm/freedreno/msm/ |
D | msm_ringbuffer.c | 82 (x)->name = grow((x)->name, (x)->nr_ ## name, &(x)->max_ ## name, sizeof((x)->name[0])); \
|