Home
last modified time | relevance | path

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

12

/third_party/googletest/googlemock/src/
Dgmock-cardinalities.cc53 : min_(min >= 0 ? min : 0), max_(max >= min_ ? max : min_) { in BetweenCardinalityImpl()
73 int ConservativeUpperBound() const override { return max_; } in ConservativeUpperBound()
76 return min_ <= call_count && call_count <= max_; in IsSatisfiedByCallCount()
80 return call_count >= max_; in IsSaturatedByCallCount()
87 const int max_; member in testing::__anon6f2706b60111::BetweenCardinalityImpl
109 if (max_ == 0) { in DescribeTo()
111 } else if (max_ == INT_MAX) { in DescribeTo()
114 *os << "called at most " << FormatTimes(max_); in DescribeTo()
116 } else if (min_ == max_) { in DescribeTo()
118 } else if (max_ == INT_MAX) { in DescribeTo()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
Dlog_uniform_int_distribution.h61 max_(max), in min_()
63 range_(static_cast<unsigned_type>(max_) - in min_()
66 assert(max_ >= min_); in min_()
93 result_type(max)() const { return max_; } in result_type()
97 return a.min_ == b.min_ && a.max_ == b.max_ && a.base_ == b.base_;
111 result_type max_; variable
/third_party/node/deps/v8/src/objects/
Dinternal-index.h67 explicit Range(size_t max) : min_(0), max_(max) {} in Range()
68 Range(size_t min, size_t max) : min_(min), max_(max) {} in Range()
71 InternalIndex end() { return InternalIndex(max_); } in end()
75 size_t max_; variable
/third_party/skia/third_party/externals/libwebp/src/utils/
Dquant_levels_dec_utils.c66 int min_, max_; // min and max level values member
145 if (v < p->max_ && v > p->min_) { in ApplyFilter()
188 p->max_ = 0; in CountLevels()
193 if (v > p->max_) p->max_ = v; in CountLevels()
199 p->min_level_dist_ = p->max_ - p->min_; in CountLevels()
/third_party/googletest/googlemock/test/
Dgmock-matchers-arithmetic_test.cc1040 max_(Floating::Max()), in FloatingPointTest()
1115 const RawType max_; member in testing::gmock_matchers_test::__anon7ba8fa9f0111::FloatingPointTest
1160 Matcher<RawType> m5 = matcher_maker(ParentType::max_, ParentType::max_); in TestNearMatches()
1161 EXPECT_TRUE(m5.Matches(ParentType::max_)); in TestNearMatches()
1162 EXPECT_FALSE(m5.Matches(-ParentType::max_)); in TestNearMatches()
1164 Matcher<RawType> m6 = matcher_maker(-ParentType::max_, ParentType::max_); in TestNearMatches()
1165 EXPECT_FALSE(m6.Matches(ParentType::max_)); in TestNearMatches()
1166 EXPECT_TRUE(m6.Matches(-ParentType::max_)); in TestNearMatches()
1168 Matcher<RawType> m7 = matcher_maker(ParentType::max_, 0); in TestNearMatches()
1169 EXPECT_TRUE(m7.Matches(ParentType::max_)); in TestNearMatches()
[all …]
/third_party/libdrm/freedreno/msm/
Dmsm_priv.h133 unsigned nr_ ## name, max_ ## name; \
137 (x)->name = grow((x)->name, (x)->nr_ ## name, &(x)->max_ ## name, sizeof((x)->name[0])); \
/third_party/vk-gl-cts/external/vulkan-docs/src/config/
Dmathtest.txt253 \left \lfloor \log_2(max_{clamped}) \right \rfloor + (B+1)
254 & \text{for}\ max_{clamped} > 2^{-(B+1)} \\
256 & \text{for}\ max_{clamped} \leq 2^{-(B+1)}
266 max_{shared} =
268 \frac{max_{clamped}}{2^{(exp'-B-N)}}+\frac{1}{2}
280 exp' & \text{for}\ 0 \leq max_{shared} < 2^N \\
281 exp'+1 & \text{for}\ max_{shared} = 2^N
510 N & = \min \left (\left \lceil \frac{\rho_{max}}{\rho_{min}} \right \rceil ,max_{Aniso} \right )
Dmathtest.adoc253 \left \lfloor \log_2(max_{clamped}) \right \rfloor + (B+1)
254 & \text{for}\ max_{clamped} > 2^{-(B+1)} \\
256 & \text{for}\ max_{clamped} \leq 2^{-(B+1)}
266 max_{shared} =
268 \frac{max_{clamped}}{2^{(exp'-B-N)}}+\frac{1}{2}
280 exp' & \text{for}\ 0 \leq max_{shared} < 2^N \\
281 exp'+1 & \text{for}\ max_{shared} = 2^N
510 N & = \min \left (\left \lceil \frac{\rho_{max}}{\rho_{min}} \right \rceil ,max_{Aniso} \right )
/third_party/vk-gl-cts/modules/gles2/functional/
Des2fImplementationLimitTests.cpp67 FloatRange (float min_, float max_) : min(min_), max(max_) {} in FloatRange()
/third_party/mesa3d/src/freedreno/drm/
Dfreedreno_priv.h78 unsigned short nr_##name, max_##name; \
83 grow((void **)&(x)->name, (x)->nr_##name, &(x)->max_##name, \
/third_party/node/deps/v8/src/logging/
Dcounters.h166 int max() const { return max_; } in max()
184 max_ = max; in Initialize()
213 int max_; variable
Dcounters.cc56 return counters_->CreateHistogram(name_, min_, max_, num_buckets_); in CreateHistogram()
/third_party/skia/third_party/skcms/src/
DTransform_inl.h226 SI F max_(F x, F y) { return (F)vmaxq_f16((float16x8_t)x, (float16x8_t)y); } in max_() function
229 SI F max_(F x, F y) { return (F)vmaxq_f32((float32x4_t)x, (float32x4_t)y); } in max_() function
232 SI F max_(F x, F y) { return if_then_else(x < y, y, x); } in max_() function
297 I32 bits = cast<I32>(max_(fbits, F0)); in approx_exp2()
344 F v = approx_pow(max_(tf->a + tf->b * approx_pow(x, tf->c), F0) in apply_pq()
646 F ix = max_(F0, min_(v, F1)) * (float)(curve->table_entries - 1); in table()
1109 r = max_(F0, min_(r, F1)); in exec_ops()
1110 g = max_(F0, min_(g, F1)); in exec_ops()
1111 b = max_(F0, min_(b, F1)); in exec_ops()
1112 a = max_(F0, min_(a, F1)); in exec_ops()
/third_party/node/deps/v8/src/regexp/
Dregexp-ast.h412 max_(max), in RegExpQuantifier()
435 int max() const { return max_; } in max()
445 int max_; variable
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fImplementationLimitTests.cpp76 FloatRange (float min_, float max_) : min(min_), max(max_) {} in FloatRange()
/third_party/libdrm/man/
DdrmModeGetResources.3.rst70 The *min_\** and *max_\** fields indicate the maximum size of a framebuffer
/third_party/vk-gl-cts/framework/opengl/
DgluTextureTestUtil.hpp432 LogGradientFmt (const tcu::Vec4* min_, const tcu::Vec4* max_) : valueMin(min_), valueMax(max_) {} in LogGradientFmt()
/third_party/littlefs/scripts/
Dperf.py944 max_ = max(it.chain((float(getattr(r, tk)) for r in results), [1]))
957 if float(getattr(r, tk)) / max_ >= t0:
1010 if float(getattr(r, tk)) / max_ >= t1:
1012 elif float(getattr(r, tk)) / max_ >= t0:
/third_party/libdrm/etnaviv/
Detnaviv_cmd_stream.c48 (x)->name = grow((x)->name, (x)->nr_ ## name, &(x)->max_ ## name, sizeof((x)->name[0])); \
/third_party/mesa3d/src/etnaviv/drm/
Detnaviv_cmd_stream.c49 (x)->name = grow((x)->name, (x)->nr_ ## name, &(x)->max_ ## name, sizeof((x)->name[0])); \
/third_party/libinput/tools/
Dlibinput-debug-gui.c71 #define clip(val_, min_, max_) min((max_), max((min_), (val_))) argument
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/
Dtextures.txt268 \left \lfloor \log_2(max_{clamped}) \right \rfloor + (B+1)
269 & \text{for}\ max_{clamped} > 2^{-(B+1)} \\
271 & \text{for}\ max_{clamped} \leq 2^{-(B+1)}
281 max_{shared} =
283 { \frac{max_{clamped}}{2^{(exp'-B-N)}} + \frac{1}{2} }
293 exp' & \text{for}\ 0 \leq max_{shared} < 2^N \\
294 exp'+1 & \text{for}\ max_{shared} = 2^N
Dtextures.adoc316 \left \lfloor \log_2(max_{clamped}) \right \rfloor + (B+1)
317 & \text{for}\ max_{clamped} > 2^{-(B+1)} \\
319 & \text{for}\ max_{clamped} \leq 2^{-(B+1)}
329 max_{shared} =
331 { \frac{max_{clamped}}{2^{(exp'-B-N)}} + \frac{1}{2} }
341 exp' & \text{for}\ 0 \leq max_{shared} < 2^N \\
342 exp'+1 & \text{for}\ max_{shared} = 2^N
/third_party/vk-gl-cts/modules/glshared/
DglsVertexArrayTests.cpp1836 …usage_, int componentCount_, int offset_, int stride_, bool normalize_, GLValue min_, GLValue max_) in ArraySpec() argument
1846 , max (max_) in ArraySpec()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMipsScheduleP5600.td426 // hadd_[su].[bhwd], hsub_[su].[bhwd], max_[sua].[bhwd], min_[sua].[bhwd],

12