Searched refs:fmin (Results 1 - 25 of 57) sorted by relevance

123

/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
H A DBisectionSolver.java107 double fmin;
112 fmin = f.value(min);
115 if (fm * fmin > 0.0) {
/external/autotest/client/site_tests/kernel_CpufreqMinMax/
H A Dkernel_CpufreqMinMax.py66 fmin = open(self.sys_cpufreq_path + 'cpuinfo_min_freq', 'r')
68 available_freqs = map(int, [fmin.read(), fmax.read()])
69 fmin.close()
/external/llvm/test/MC/AArch64/
H A Dneon-max-min.s85 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
91 // CHECK: fmin v10.4h, v15.4h, v22.4h // encoding: [0xea,0x35,0xd6,0x0e]
92 // CHECK: fmin v10.8h, v15.8h, v22.8h // encoding: [0xea,0x35,0xd6,0x4e]
93 // CHECK: fmin v10.2s, v15.2s, v22.2s // encoding: [0xea,0xf5,0xb6,0x0e]
94 // CHECK: fmin v3.4s, v5.4s, v6.4s // encoding: [0xa3,0xf4,0xa6,0x4e]
95 // CHECK: fmin v1
[all...]
H A Dfullfp16-neon-neg.s196 fmin v10.4h, v15.4h, v22.4h
198 fmin v10.8h, v15.8h, v22.8h
H A Darm64-fp-encoding.s68 fmin h1, h2, h3
69 fmin s1, s2, s3
70 fmin d1, d2, d3
75 ; FP16: fmin h1, h2, h3 ; encoding: [0x41,0x58,0xe3,0x1e]
77 ; NO-FP16-NEXT: fmin h1, h2, h3
78 ; CHECK: fmin s1, s2, s3 ; encoding: [0x41,0x58,0x23,0x1e]
79 ; CHECK: fmin d1, d2, d3 ; encoding: [0x41,0x58,0x63,0x1e]
H A Darm64-advsimd.s324 fmin.2s v0, v0, v0
394 ; CHECK: fmin.2s v0, v0, v0 ; encoding: [0x00,0xf4,0xa0,0x0e]
459 fmin.4h v0, v0, v0
484 ; CHECK: fmin.4h v0, v0, v0 ; encoding: [0x00,0x34,0xc0,0x0e]
509 fmin.8h v0, v0, v0
534 ; CHECK: fmin.8h v0, v0, v0 ; encoding: [0x00,0x34,0xc0,0x4e]
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
H A Dquantize_and_dequantize_op.cc59 const xla::Computation* fmin = ctx->GetOrCreateMin(data_type); variable
61 b->ReduceAll(input, XlaHelpers::MaxValue(b, data_type), *fmin);
/external/capstone/suite/MC/AArch64/
H A Dneon-max-min.s.cs29 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/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h89 __DEVICE__ double fmin(double, double);
90 __DEVICE__ float fmin(float, float);
210 using ::fmin;
H A Dtgmath.h772 // fmin
780 __tg_fmin(double __x, double __y) {return fmin(__x, __y);}
786 #undef fmin macro
787 #define fmin(__x, __y) __tg_fmin(__tg_promote2((__x), (__y))(__x), \ macro
/external/jdiff/src/jdiff/
H A DDiffMyers.java119 int fmin = fmid, fmax = fmid; // Limits of top-down search.
134 if (fmin > dmin)
135 fd[fdiagoff + --fmin - 1] = -1;
137 ++fmin;
142 for (d = fmax; d >= fmin; d -= 2)
190 if (!odd && fmin <= d && d <= fmax && bd[bdiagoff + d] <= fd[fdiagoff + d])
210 for (d = fmax; d >= fmin; d -= 2)
/external/tensorflow/tensorflow/core/util/
H A Dcuda_kernel_helper.h59 return fmin(x, y);
/external/llvm/test/MC/Mips/msa/
H A Dtest_3rf.s39 # CHECK: fmin.w $w24, $w1, $w30 # encoding: [0x7b,0x1e,0x0e,0x1b]
40 # CHECK: fmin.d $w27, $w27, $w10 # encoding: [0x7b,0x2a,0xde,0xdb]
122 fmin.w $w24, $w1, $w30
123 fmin.d $w27, $w27, $w10
/external/eigen/Eigen/src/Core/arch/CUDA/
H A DPacketMath.h145 return make_double2(fmin(a.x, b.x), fmin(a.y, b.y));
275 return fmin(a.x, a.y);
/external/capstone/suite/MC/Mips/
H A Dtest_3rf.s.cs38 0x7b,0x1e,0x0e,0x1b = fmin.w $w24, $w1, $w30
39 0x7b,0x2a,0xde,0xdb = fmin.d $w27, $w27, $w10
/external/clang/test/CodeGen/
H A Dlibcall-declarations.c97 double fmin(double, double);
281 F(fmaxf), F(fmaxl), F(fmin), F(fminf), F(fminl),
396 // CHECK-NOERRNO: declare double @fmin(double, double) [[NUW]]
554 // CHECK-ERRNO: declare double @fmin(double, double) [[NUW]]
/external/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp77 Ambiguous fmin(Ambiguous, Ambiguous){ return Ambiguous(); } function
1014 static_assert((std::is_same<decltype(fmin((float)0, (float)0)), float>::value), "");
1015 static_assert((std::is_same<decltype(fmin((bool)0, (float)0)), double>::value), "");
1016 static_assert((std::is_same<decltype(fmin((unsigned short)0, (double)0)), double>::value), "");
1017 static_assert((std::is_same<decltype(fmin((int)0, (long double)0)), long double>::value), "");
1018 static_assert((std::is_same<decltype(fmin((float)0, (unsigned int)0)), double>::value), "");
1019 static_assert((std::is_same<decltype(fmin((double)0, (long)0)), double>::value), "");
1020 static_assert((std::is_same<decltype(fmin((long double)0, (unsigned long)0)), long double>::value), "");
1021 static_assert((std::is_same<decltype(fmin((int)0, (long long)0)), double>::value), "");
1022 static_assert((std::is_same<decltype(fmin((in
[all...]
/external/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp79 Ambiguous fmin(Ambiguous, Ambiguous){ return Ambiguous(); } function
1049 static_assert((std::is_same<decltype(std::fmin((float)0, (float)0)), float>::value), "");
1050 static_assert((std::is_same<decltype(std::fmin((bool)0, (float)0)), double>::value), "");
1051 static_assert((std::is_same<decltype(std::fmin((unsigned short)0, (double)0)), double>::value), "");
1052 static_assert((std::is_same<decltype(std::fmin((int)0, (long double)0)), long double>::value), "");
1053 static_assert((std::is_same<decltype(std::fmin((float)0, (unsigned int)0)), double>::value), "");
1054 static_assert((std::is_same<decltype(std::fmin((double)0, (long)0)), double>::value), "");
1055 static_assert((std::is_same<decltype(std::fmin((long double)0, (unsigned long)0)), long double>::value), "");
1056 static_assert((std::is_same<decltype(std::fmin((int)0, (long long)0)), double>::value), "");
1057 static_assert((std::is_same<decltype(std::fmin((in
[all...]
/external/bzip2/
H A Dblocksort.c78 #define fmin(a,b) ((a) < (b)) ? (a) : (b) macro
166 n = fmin(ltLo-lo, unLo-ltLo); fvswap(lo, unLo-n, n);
167 m = fmin(hi-gtHi, gtHi-unHi); fvswap(unLo, hi-m+1, m);
182 #undef fmin macro
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
H A Dsimple_orc_jit.cc228 REGISTER_LIBM_SYMBOL(fmin, double (*)(double, double));
/external/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h254 case LibFunc::fmin: case LibFunc::fminf: case LibFunc::fminl:
/external/libcxx/include/
H A Dmath.h211 floating_point fmin (arithmetic x, arithmetic y);
1216 // fmin
1218 inline _LIBCPP_INLINE_VISIBILITY float fmin(float __lcpp_x, float __lcpp_y) _NOEXCEPT {return ::fminf(__lcpp_x, __lcpp_y);}
1219 inline _LIBCPP_INLINE_VISIBILITY long double fmin(long double __lcpp_x, long double __lcpp_y) _NOEXCEPT {return ::fminl(__lcpp_x, __lcpp_y);}
1229 fmin(_A1 __lcpp_x, _A2 __lcpp_y) _NOEXCEPT
1234 return ::fmin((__result_type)__lcpp_x, (__result_type)__lcpp_y);
/external/fio/
H A Dgettime.c295 if ((fmax(this, mean) - fmin(this, mean)) > S)
/external/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp369 case LibFunc::fmin:
/external/python/cpython2/Modules/
H A Dclmodule.c529 float fmin, fmax; local
539 fmin = CL_TypeIsFloat(min);
541 return Py_BuildValue("(ff)", fmin, fmax);

Completed in 842 milliseconds

123