Home
last modified time | relevance | path

Searched refs:max_ (Results 1 – 25 of 33) sorted by relevance

12

/external/v8/testing/gmock/src/
Dgmock-cardinalities.cc54 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/
Dgmock-cardinalities.cc54 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/
Dgmock-cardinalities.cc54 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/
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_, value)
104 return Bounds.GetOverlap(first_bounds.min_, first_bounds.max_,
[all …]
/external/webrtc/webrtc/base/
Drollingaccumulator.h48 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
Dexp_filter.cc34 if (max_ != kValueUndefined && filtered_ > max_) { in Apply()
35 filtered_ = max_; in Apply()
Dexp_filter.h24 : max_(max) { in max_() function
45 const float max_; variable
/external/google-benchmark/src/
Dstat.h217 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/
Dstat.h217 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/
Dquant_levels_dec_utils.c66 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/
Dbwe_test_framework.h97 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/
Dhistogram_samples.cc28 HistogramBase::Sample max_; member in base::__anon1c76099b0111::SampleCountPickleIterator
46 !iter_->ReadInt(&max_) || in Next()
56 *max = max_; in Get()
/external/v8/src/compiler/
Dnode-cache.h33 : entries_(nullptr), size_(0), max_(max) {} in entries_()
54 size_t max_; variable
Dnode-cache.cc33 if (size_ >= max_) return false; // Don't grow past the maximum size. in Resize()
/external/deqp/modules/gles2/functional/
Des2fImplementationLimitTests.cpp67 FloatRange (float min_, float max_) : min(min_), max(max_) {} in FloatRange()
/external/pdfium/third_party/freetype/src/cff/
Dcffparse.c864 #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/
Dregexp.h327 int max() { DCHECK_EQ(op_, kRegexpRepeat); return max_; } in max()
548 int max_; member
Dsimplify.cc277 Regexp* nre = SimplifyRepeat(newsub, re->min_, re->max_, in PostVisit()
/external/v8/src/regexp/
Dregexp-ast.h378 max_(max), in RegExpQuantifier()
398 int max() { return max_; } in max()
407 int max_; variable
/external/deqp/framework/opengl/
DgluTextureTestUtil.hpp378 LogGradientFmt (const tcu::Vec4* min_, const tcu::Vec4* max_) : valueMin(min_), valueMax(max_) {} in LogGradientFmt()
/external/freetype/src/cff/
Dcffparse.c1167 #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/
Dgmock-matchers_test.cc2724 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/
Dgmock-matchers_test.cc2720 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/
Des3fImplementationLimitTests.cpp76 FloatRange (float min_, float max_) : min(min_), max(max_) {} in FloatRange()
/external/libdrm/freedreno/msm/
Dmsm_ringbuffer.c82 (x)->name = grow((x)->name, (x)->nr_ ## name, &(x)->max_ ## name, sizeof((x)->name[0])); \

12