/third_party/googletest/googlemock/src/ |
D | gmock-cardinalities.cc | 53 : 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/ |
D | log_uniform_int_distribution.h | 61 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/ |
D | internal-index.h | 67 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/ |
D | quant_levels_dec_utils.c | 66 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/ |
D | gmock-matchers-arithmetic_test.cc | 1040 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/ |
D | msm_priv.h | 133 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/ |
D | mathtest.txt | 253 \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 )
|
D | mathtest.adoc | 253 \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/ |
D | es2fImplementationLimitTests.cpp | 67 FloatRange (float min_, float max_) : min(min_), max(max_) {} in FloatRange()
|
/third_party/mesa3d/src/freedreno/drm/ |
D | freedreno_priv.h | 78 unsigned short nr_##name, max_##name; \ 83 grow((void **)&(x)->name, (x)->nr_##name, &(x)->max_##name, \
|
/third_party/node/deps/v8/src/logging/ |
D | counters.h | 166 int max() const { return max_; } in max() 184 max_ = max; in Initialize() 213 int max_; variable
|
D | counters.cc | 56 return counters_->CreateHistogram(name_, min_, max_, num_buckets_); in CreateHistogram()
|
/third_party/skia/third_party/skcms/src/ |
D | Transform_inl.h | 226 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/ |
D | regexp-ast.h | 412 max_(max), in RegExpQuantifier() 435 int max() const { return max_; } in max() 445 int max_; variable
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
D | es3fImplementationLimitTests.cpp | 76 FloatRange (float min_, float max_) : min(min_), max(max_) {} in FloatRange()
|
/third_party/libdrm/man/ |
D | drmModeGetResources.3.rst | 70 The *min_\** and *max_\** fields indicate the maximum size of a framebuffer
|
/third_party/vk-gl-cts/framework/opengl/ |
D | gluTextureTestUtil.hpp | 432 LogGradientFmt (const tcu::Vec4* min_, const tcu::Vec4* max_) : valueMin(min_), valueMax(max_) {} in LogGradientFmt()
|
/third_party/littlefs/scripts/ |
D | perf.py | 944 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/ |
D | etnaviv_cmd_stream.c | 48 (x)->name = grow((x)->name, (x)->nr_ ## name, &(x)->max_ ## name, sizeof((x)->name[0])); \
|
/third_party/mesa3d/src/etnaviv/drm/ |
D | etnaviv_cmd_stream.c | 49 (x)->name = grow((x)->name, (x)->nr_ ## name, &(x)->max_ ## name, sizeof((x)->name[0])); \
|
/third_party/libinput/tools/ |
D | libinput-debug-gui.c | 71 #define clip(val_, min_, max_) min((max_), max((min_), (val_))) argument
|
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/ |
D | textures.txt | 268 \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
|
D | textures.adoc | 316 \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/ |
D | glsVertexArrayTests.cpp | 1836 …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/ |
D | MipsScheduleP5600.td | 426 // hadd_[su].[bhwd], hsub_[su].[bhwd], max_[sua].[bhwd], min_[sua].[bhwd],
|