/external/XNNPACK/src/qs8-requantization/ |
D | fp32-scalar-fmagic.c | 31 const float fmin = (float) ((int32_t) qmin - (int32_t) zero_point); in xnn_qs8_requantize_fp32__scalar_fmagic() local 47 const float x_clamped = math_min_f32(math_max_f32(x_scaled, fmin), fmax); in xnn_qs8_requantize_fp32__scalar_fmagic() 48 const float y_clamped = math_min_f32(math_max_f32(y_scaled, fmin), fmax); in xnn_qs8_requantize_fp32__scalar_fmagic() 49 const float z_clamped = math_min_f32(math_max_f32(z_scaled, fmin), fmax); in xnn_qs8_requantize_fp32__scalar_fmagic() 50 const float w_clamped = math_min_f32(math_max_f32(w_scaled, fmin), fmax); in xnn_qs8_requantize_fp32__scalar_fmagic()
|
D | fp32-scalar-lrintf.c | 31 const float fmin = (float) ((int32_t) qmin - (int32_t) zero_point); in xnn_qs8_requantize_fp32__scalar_lrintf() local 45 const float x_clamped = math_min_f32(math_max_f32(x_scaled, fmin), fmax); in xnn_qs8_requantize_fp32__scalar_lrintf() 46 const float y_clamped = math_min_f32(math_max_f32(y_scaled, fmin), fmax); in xnn_qs8_requantize_fp32__scalar_lrintf() 47 const float z_clamped = math_min_f32(math_max_f32(z_scaled, fmin), fmax); in xnn_qs8_requantize_fp32__scalar_lrintf() 48 const float w_clamped = math_min_f32(math_max_f32(w_scaled, fmin), fmax); in xnn_qs8_requantize_fp32__scalar_lrintf()
|
/external/XNNPACK/src/qu8-requantization/ |
D | fp32-scalar-fmagic.c | 31 const float fmin = (float) ((int32_t) (uint32_t) qmin - (int32_t) (uint32_t) zero_point); in xnn_qu8_requantize_fp32__scalar_fmagic() local 47 const float x_clamped = math_min_f32(math_max_f32(x_scaled, fmin), fmax); in xnn_qu8_requantize_fp32__scalar_fmagic() 48 const float y_clamped = math_min_f32(math_max_f32(y_scaled, fmin), fmax); in xnn_qu8_requantize_fp32__scalar_fmagic() 49 const float z_clamped = math_min_f32(math_max_f32(z_scaled, fmin), fmax); in xnn_qu8_requantize_fp32__scalar_fmagic() 50 const float w_clamped = math_min_f32(math_max_f32(w_scaled, fmin), fmax); in xnn_qu8_requantize_fp32__scalar_fmagic()
|
D | fp32-scalar-lrintf.c | 31 const float fmin = (float) ((int32_t) (uint32_t) qmin - (int32_t) (uint32_t) zero_point); in xnn_qu8_requantize_fp32__scalar_lrintf() local 45 const float x_clamped = math_min_f32(math_max_f32(x_scaled, fmin), fmax); in xnn_qu8_requantize_fp32__scalar_lrintf() 46 const float y_clamped = math_min_f32(math_max_f32(y_scaled, fmin), fmax); in xnn_qu8_requantize_fp32__scalar_lrintf() 47 const float z_clamped = math_min_f32(math_max_f32(z_scaled, fmin), fmax); in xnn_qu8_requantize_fp32__scalar_lrintf() 48 const float w_clamped = math_min_f32(math_max_f32(w_scaled, fmin), fmax); in xnn_qu8_requantize_fp32__scalar_lrintf()
|
/external/cronet/buildtools/third_party/libc++/trunk/test/libcxx/diagnostics/ |
D | math_nodiscard_extensions.verify.cpp | 32 …std::fmin(0., 0.); // expected-warning-re {{ignoring return value of function declared… in test() 141 …std::fmin(0.f, 0.f); // expected-warning {{ignoring return value of function declared wi… in test() 142 …std::fmin(0.l, 0.l); // expected-warning {{ignoring return value of function declared wi… in test() 143 …std::fmin(0, 0); // expected-warning {{ignoring return value of function declared wi… in test() 144 …std::fmin(0U, 0U); // expected-warning {{ignoring return value of function declared wi… in test()
|
/external/llvm/test/MC/AArch64/ |
D | neon-max-min.s | 85 fmin v10.4h, v15.4h, v22.4h 86 fmin v10.8h, v15.8h, v22.8h 87 fmin v10.2s, v15.2s, v22.2s 88 fmin v3.4s, v5.4s, v6.4s 89 fmin v17.2d, v13.2d, v2.2d
|
/external/XNNPACK/src/f32-gemm/ |
D | 6x8-aarch64-neonfma-ld128.cc | 242 fmin(v20.v4s(), v20.v4s(), v7.v4s()); in generate() 243 fmin(v21.v4s(), v21.v4s(), v7.v4s()); in generate() 244 fmin(v22.v4s(), v22.v4s(), v7.v4s()); in generate() 245 fmin(v23.v4s(), v23.v4s(), v7.v4s()); in generate() 246 fmin(v24.v4s(), v24.v4s(), v7.v4s()); in generate() 247 fmin(v25.v4s(), v25.v4s(), v7.v4s()); in generate() 248 fmin(v26.v4s(), v26.v4s(), v7.v4s()); in generate() 249 fmin(v27.v4s(), v27.v4s(), v7.v4s()); in generate() 250 fmin(v28.v4s(), v28.v4s(), v7.v4s()); in generate() 251 fmin(v29.v4s(), v29.v4s(), v7.v4s()); in generate() [all …]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/ |
D | BisectionSolver.java | 107 double fmin; in solve() local 112 fmin = f.value(min); in solve() 115 if (fm * fmin > 0.0) { in solve()
|
/external/XNNPACK/src/f32-igemm/ |
D | 6x8-aarch64-neonfma-ld128.cc | 263 fmin(v20.v4s(), v20.v4s(), v7.v4s()); in generate() 264 fmin(v21.v4s(), v21.v4s(), v7.v4s()); in generate() 265 fmin(v22.v4s(), v22.v4s(), v7.v4s()); in generate() 266 fmin(v23.v4s(), v23.v4s(), v7.v4s()); in generate() 267 fmin(v24.v4s(), v24.v4s(), v7.v4s()); in generate() 268 fmin(v25.v4s(), v25.v4s(), v7.v4s()); in generate() 269 fmin(v26.v4s(), v26.v4s(), v7.v4s()); in generate() 270 fmin(v27.v4s(), v27.v4s(), v7.v4s()); in generate() 271 fmin(v28.v4s(), v28.v4s(), v7.v4s()); in generate() 272 fmin(v29.v4s(), v29.v4s(), v7.v4s()); in generate() [all …]
|
/external/mesa3d/docs/_extra/specs/ |
D | INTEL_shader_atomic_float_minmax.txt | 166 - fmin(qNaN, x) = fmin(x, qNaN) = fmax(qNaN, x) = fmax(x, qNaN) = x 167 - fmin(sNaN, x) = fmin(x, sNaN) = fmax(sNaN, x) = fmax(x, sNaN) = sNaN 168 - fmin(sNaN, qNaN) = fmin(qNaN, sNaN) = fmax(sNaN, qNaN) = 170 - fmin(sNaN, sNaN) = sNaN. This specification does not define which of 174 - fmin(qNaN, qNaN) = qNaN. This specification does not define which of
|
/external/llvm/test/CodeGen/PowerPC/ |
D | fminnum.ll | 4 declare double @fmin(double, double) 22 ; CHECK: bl fmin 24 %z = call double @fmin(double %x, double %y) readnone 43 ; CHECK: bl fmin
|
D | ctr-minmaxnum.ll | 8 declare double @fmin(double, double) 170 ; CHECK: bl fmin 178 %0 = call double @fmin(double %f, double 1.0) readnone 190 ; CHECK: bl fmin
|
/external/jdiff/src/jdiff/ |
D | DiffMyers.java | 119 int fmin = fmid, fmax = fmid; // Limits of top-down search. in diag() local 134 if (fmin > dmin) in diag() 135 fd[fdiagoff + --fmin - 1] = -1; in diag() 137 ++fmin; in diag() 142 for (d = fmax; d >= fmin; d -= 2) in diag() 190 if (!odd && fmin <= d && d <= fmax && bd[bdiagoff + d] <= fd[fdiagoff + d]) in diag() 210 for (d = fmax; d >= fmin; d -= 2) in diag()
|
/external/capstone/suite/MC/AArch64/ |
D | neon-max-min.s.cs | 29 0xea,0xf5,0xb6,0x0e = fmin v10.2s, v15.2s, v22.2s 30 0xa3,0xf4,0xa6,0x4e = fmin v3.4s, v5.4s, v6.4s 31 0xb1,0xf5,0xe2,0x4e = fmin v17.2d, v13.2d, v2.2d
|
/external/llvm/test/CodeGen/AArch64/ |
D | arm64-fmax.ll | 20 ; CHECK: fmin 32 ; CHECK: fmin 61 ; FIXME: It'd be nice for this to create an fmin instruction!
|
D | arm64-fmax-safe.ll | 20 ; CHECK: fmin s 24 ; must become fminnm, not fmin.
|
/external/tensorflow/tensorflow/core/kernels/image/ |
D | generate_box_proposals_op.cu.cc | 96 dw = fmin(dw, bbox_xform_clip); in GeneratePreNMSUprightBoxesKernel() 97 dh = fmin(dh, bbox_xform_clip); in GeneratePreNMSUprightBoxesKernel() 119 x1 = fmax(fmin(x1, img_width), 0.0f); in GeneratePreNMSUprightBoxesKernel() 120 y1 = fmax(fmin(y1, img_height), 0.0f); in GeneratePreNMSUprightBoxesKernel() 121 x2 = fmax(fmin(x2, img_width), 0.0f); in GeneratePreNMSUprightBoxesKernel() 122 y2 = fmax(fmin(y2, img_height), 0.0f); in GeneratePreNMSUprightBoxesKernel() 129 bool keep_box = fmin(width, height) >= min_size_scaled; in GeneratePreNMSUprightBoxesKernel()
|
/external/llvm/test/CodeGen/Mips/msa/ |
D | 3rf.ll | 166 %2 = tail call <4 x float> @llvm.mips.fmin.w(<4 x float> %0, <4 x float> %1) 171 declare <4 x float> @llvm.mips.fmin.w(<4 x float>, <4 x float>) nounwind 176 ; CHECK: fmin.w 188 %2 = tail call <2 x double> @llvm.mips.fmin.d(<2 x double> %0, <2 x double> %1) 193 declare <2 x double> @llvm.mips.fmin.d(<2 x double>, <2 x double>) nounwind 198 ; CHECK: fmin.d 210 %2 = tail call <4 x float> @llvm.mips.fmin.a.w(<4 x float> %0, <4 x float> %1) 215 declare <4 x float> @llvm.mips.fmin.a.w(<4 x float>, <4 x float>) nounwind 232 %2 = tail call <2 x double> @llvm.mips.fmin.a.d(<2 x double> %0, <2 x double> %1) 237 declare <2 x double> @llvm.mips.fmin.a.d(<2 x double>, <2 x double>) nounwind
|
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/ |
D | quantize_and_dequantize_op.cc | 74 const xla::XlaComputation* fmin = ctx->GetOrCreateMin(data_type); in Compile() local 76 min_range = ReduceAll(input, xla::MaxValue(b, xla_type), *fmin); in Compile() 94 min_range = Reduce(input, xla::MaxValue(b, xla_type), *fmin, in Compile()
|
/external/clang/lib/Headers/ |
D | __clang_cuda_math_forward_declares.h | 89 __DEVICE__ double fmin(double, double); 90 __DEVICE__ float fmin(float, float); 210 using ::fmin;
|
/external/llvm/test/Transforms/InstCombine/ |
D | float-shrink-compare.ll | 176 %3 = call double @fmin(double %1, double %2) nounwind 190 %4 = call double @fmin(double %2, double %3) nounwind 241 %3 = call double @fmin(double 1.000000e+00, double %2) nounwind 253 %3 = call double @fmin(double 1.300000e+00, double %2) nounwind 259 ; CHECK: %3 = call double @fmin(double 1.300000e+00, double %2) 270 declare double @fmin(double, double) nounwind readnone
|
/external/cronet/buildtools/third_party/libc++/trunk/test/libcxx/numerics/c.math/ |
D | constexpr-cxx2b-clang.pass.cpp | 191 ASSERT_NOT_CONSTEXPR_CXX23(std::fmin(1.0f, 0.0f) == 0.0f); in main() 192 ASSERT_NOT_CONSTEXPR_CXX23(std::fmin(1.0, 0.0) == 0.0); in main() 193 ASSERT_NOT_CONSTEXPR_CXX23(std::fmin(1.0L, 0.0L) == 0.0L); in main()
|
D | constexpr-cxx2b-gcc.pass.cpp | 188 ASSERT_NOT_CONSTEXPR_CXX23(std::fmin(1.0f, 0.0f) == 0.0f); in main() 189 ASSERT_CONSTEXPR_CXX23(std::fmin(1.0, 0.0) == 0.0); in main() 190 ASSERT_NOT_CONSTEXPR_CXX23(std::fmin(1.0L, 0.0L) == 0.0L); in main()
|
/external/musl/src/math/aarch64/ |
D | fmin.c | 3 double fmin(double x, double y) in fmin() function
|
/external/musl/src/math/powerpc64/ |
D | fmin.c | 5 double fmin(double x, double y) in fmin() function
|