HomeSort by relevance Sort by last modified time
    Searched refs:min_ (Results 1 - 17 of 17) sorted by null

  /external/google-breakpad/src/testing/src/
gmock-cardinalities.cc 53 : min_(min >= 0 ? min : 0),
54 max_(max >= min_ ? max : min_) {
74 virtual int ConservativeLowerBound() const { return min_; }
78 return min_ <= call_count && call_count <= max_;
88 const int min_; member in class:testing::__anon9603::BetweenCardinalityImpl
109 if (min_ == 0) {
117 } else if (min_ == max_) {
118 *os << "called " << FormatTimes(min_);
120 *os << "called at least " << FormatTimes(min_);
    [all...]
  /external/webp/src/utils/
quant_levels_dec.c 65 int min_, max_; // min and max level values member in struct:__anon21257
143 if (v < p->max_ && v > p->min_) {
185 p->min_ = 255;
189 if (v < p->min_) p->min_ = v;
194 p->min_level_dist_ = p->max_ - p->min_;
  /art/runtime/base/
histogram.h 107 // starting at min_ + i * bucket_width_ with size bucket_size_.
112 Value min_; member in class:art::Histogram
histogram-inl.h 90 DCHECK_GE(val, min_);
92 const size_t bucket_idx = static_cast<size_t>((val - min_) / bucket_width_);
124 min_ = 0;
134 return min_ + bucket_idx * bucket_width_;
  /art/cmdline/detail/
cmdline_parse_argument_detail.h 93 return min_ <= value && value <= max_;
269 TArg min_; member in struct:art::detail::CmdlineParserArgumentInfo
455 value, argument_info_.min_, argument_info_.max_);
  /external/deqp/modules/gles2/functional/
es2fImplementationLimitTests.cpp 67 FloatRange (float min_, float max_) : min(min_), max(max_) {}
  /external/v8/src/
counters.cc 33 CreateHistogram(name_, min_, max_, num_buckets_);
counters.h 178 min_(min),
215 int min_; member in class:v8::internal::Histogram
ast.h 2837 int min_; member in class:v8::internal::FINAL
    [all...]
  /external/regex-re2/re2/
regexp.h 120 // Matches sub_[0] at least min_ times, at most max_ times.
326 int min() { DCHECK_EQ(op_, kRegexpRepeat); return min_; }
549 int min_; member in struct:re2::Regexp::__anon17887::__anon17888
simplify.cc 277 Regexp* nre = SimplifyRepeat(newsub, re->min_, re->max_,
regexp.cc 278 re->min_ = min;
parse.cc 485 re->min_ = min;
    [all...]
  /external/deqp/modules/gles3/functional/
es3fImplementationLimitTests.cpp 76 FloatRange (float min_, float max_) : min(min_), max(max_) {}
  /external/deqp/modules/glshared/
glsTextureTestUtil.hpp 563 LogGradientFmt (const tcu::Vec4* min_, const tcu::Vec4* max_) : valueMin(min_), valueMax(max_) {}
glsVertexArrayTests.cpp     [all...]
  /art/cmdline/
cmdline_parser.h 124 argument_info_.min_ = min;

Completed in 375 milliseconds