/external/llvm/test/MC/AArch64/ |
D | neon-max-min.s | 81 fmin v10.2s, v15.2s, v22.2s 82 fmin v3.4s, v5.4s, v6.4s 83 fmin v17.2d, v13.2d, v2.2d
|
D | arm64-fp-encoding.s | 42 fmin s1, s2, s3 43 fmin d1, d2, d3 define 47 ; CHECK: fmin s1, s2, s3 ; encoding: [0x41,0x58,0x23,0x1e] 48 ; CHECK: fmin d1, d2, d3 ; encoding: [0x41,0x58,0x63,0x1e]
|
/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/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
|
D | compare_float.ll | 6 declare <4 x float> @llvm.mips.fmin.w(<4 x float>, <4 x float>) nounwind 7 declare <2 x double> @llvm.mips.fmin.d(<2 x double>, <2 x double>) nounwind 638 %3 = tail call <4 x float> @llvm.mips.fmin.w(<4 x float> %1, <4 x float> %2) 639 ; CHECK-DAG: fmin.w [[R3:\$w[0-9]+]], [[R1]], [[R2]] 654 %3 = tail call <2 x double> @llvm.mips.fmin.d(<2 x double> %1, <2 x double> %2) 655 ; CHECK-DAG: fmin.d [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
/external/llvm/test/MC/Mips/msa/ |
D | test_3rf.s | 39 # 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/llvm/test/CodeGen/AArch64/ |
D | arm64-fmax.ll | 20 ; CHECK: fmin
|
D | arm64-neon-add-sub.ll | 198 ; CHECK: fmin d{{[0-9]+}}, d{{[0-9]+}}, d{{[0-9]+}} 199 %1 = tail call <1 x double> @llvm.aarch64.neon.fmin.v1f64(<1 x double> %a, <1 x double> %b) 234 declare <1 x double> @llvm.aarch64.neon.fmin.v1f64(<1 x double>, <1 x double>)
|
D | arm64-vmax.ll | 559 ;CHECK: fmin.2s 562 %tmp3 = call <2 x float> @llvm.aarch64.neon.fmin.v2f32(<2 x float> %tmp1, <2 x float> %tmp2) 568 ;CHECK: fmin.4s 571 %tmp3 = call <4 x float> @llvm.aarch64.neon.fmin.v4f32(<4 x float> %tmp1, <4 x float> %tmp2) 577 ;CHECK: fmin.2d 580 %tmp3 = call <2 x double> @llvm.aarch64.neon.fmin.v2f64(<2 x double> %tmp1, <2 x double> %tmp2) 584 declare <2 x float> @llvm.aarch64.neon.fmin.v2f32(<2 x float>, <2 x float>) nounwind readnone 585 declare <4 x float> @llvm.aarch64.neon.fmin.v4f32(<4 x float>, <4 x float>) nounwind readnone 586 declare <2 x double> @llvm.aarch64.neon.fmin.v2f64(<2 x double>, <2 x double>) nounwind readnone
|
/external/llvm/include/llvm/Target/ |
D | TargetLibraryInfo.h | 272 fmin, enumerator 736 case LibFunc::fmin: case LibFunc::fminf: case LibFunc::fminl: in hasOptimizedCodeGen()
|
/external/libcxx/test/numerics/c.math/ |
D | cmath.disabled.cpp | 871 static_assert((std::is_same<decltype(std::fmin((float)0, (float)0)), float>::value), ""); in test_fmin() 872 static_assert((std::is_same<decltype(std::fmin((bool)0, (float)0)), double>::value), ""); in test_fmin() 873 …static_assert((std::is_same<decltype(std::fmin((unsigned short)0, (double)0)), double>::value), ""… in test_fmin() 874 …static_assert((std::is_same<decltype(std::fmin((int)0, (long double)0)), long double>::value), ""); in test_fmin() 875 … static_assert((std::is_same<decltype(std::fmin((float)0, (unsigned int)0)), double>::value), ""); in test_fmin() 876 static_assert((std::is_same<decltype(std::fmin((double)0, (long)0)), double>::value), ""); in test_fmin() 877 …static_assert((std::is_same<decltype(std::fmin((long double)0, (unsigned long)0)), long double>::v… in test_fmin() 878 static_assert((std::is_same<decltype(std::fmin((int)0, (long long)0)), double>::value), ""); in test_fmin() 879 …static_assert((std::is_same<decltype(std::fmin((int)0, (unsigned long long)0)), double>::value), "… in test_fmin() 880 static_assert((std::is_same<decltype(std::fmin((double)0, (double)0)), double>::value), ""); in test_fmin() [all …]
|
/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 232 declare double @fmin(double, double) nounwind readnone
|
/external/llvm/test/MC/Disassembler/AArch64/ |
D | arm64-scalar-fp.txt | 46 # CHECK: fmin s1, s2, s3 47 # CHECK: fmin d1, d2, d3
|
/external/clang/test/CodeGen/ |
D | libcall-declarations.c | 97 double fmin(double, double); 281 F(fmaxf), F(fmaxl), F(fmin), F(fminf), F(fminl),
|
/external/llvm/test/MC/Disassembler/Mips/msa/ |
D | test_3rf.txt | 39 0x7b 0x1e 0x0e 0x1b # CHECK: fmin.w $w24, $w1, $w30 40 0x7b 0x2a 0xde 0xdb # CHECK: fmin.d $w27, $w27, $w10
|
/external/bzip2/ |
D | blocksort.c | 78 #define fmin(a,b) ((a) < (b)) ? (a) : (b) macro 166 n = fmin(ltLo-lo, unLo-ltLo); fvswap(lo, unLo-n, n); in fallbackQSort3() 167 m = fmin(hi-gtHi, gtHi-unHi); fvswap(unLo, hi-m+1, m); in fallbackQSort3() 182 #undef fmin
|
/external/clang/lib/Headers/ |
D | tgmath.h | 780 __tg_fmin(double __x, double __y) {return fmin(__x, __y);} in __tg_fmin() 786 #undef fmin 787 #define fmin(__x, __y) __tg_fmin(__tg_promote2((__x), (__y))(__x), \ macro
|
/external/libcxx/include/ |
D | cmath | 204 floating_point fmin (arithmetic x, arithmetic y); 1259 // fmin 1261 using ::fmin; 1264 inline _LIBCPP_INLINE_VISIBILITY float fmin(float __x, float __y) _NOEXCEPT {retu… 1265 inline _LIBCPP_INLINE_VISIBILITY long double fmin(long double __x, long double __y) _NOEXCEPT {retu… 1275 fmin(_A1 __x, _A2 __y) _NOEXCEPT 1280 return fmin((__result_type)__x, (__result_type)__y);
|
/external/ltrace/etc/ |
D | libm.so.conf | 352 double fmin(double, double);
|
/external/libcxx/test/depr/depr.c.headers/ |
D | math_h.disabled.cpp | 427 static_assert((std::is_same<decltype(fmin((double)0, (double)0)), double>::value), ""); in test_fmin() 430 assert(fmin(1,0) == 0); in test_fmin()
|
/external/fio/ |
D | gettime.c | 299 if ((fmax(this, mean) - fmin(this, mean)) > S) in calibrate_cpu_clock()
|
/external/vixl/doc/ |
D | supported-instructions.md | 1152 ### fmin ### subsection 1156 void fmin(const FPRegister& fd, const FPRegister& fn, const FPRegister& fm)
|
/external/valgrind/main/VEX/switchback/ |
D | test_bzip2.c | 2100 #define fmin(a,b) ((a) < (b)) ? (a) : (b) macro 2188 n = fmin(ltLo-lo, unLo-ltLo); fvswap(lo, unLo-n, n); in fallbackQSort3() 2189 m = fmin(hi-gtHi, gtHi-unHi); fvswap(unLo, hi-m+1, m); in fallbackQSort3() 2204 #undef fmin
|
/external/vixl/test/ |
D | test-simulator-a64.cc | 966 DEFINE_TEST_FP(fmin, 2Op, Basic)
|
/external/valgrind/main/memcheck/tests/ |
D | origin5-bz2.c | 2115 #define fmin(a,b) ((a) < (b)) ? (a) : (b) macro 2203 n = fmin(ltLo-lo, unLo-ltLo); fvswap(lo, unLo-n, n); in fallbackQSort3() 2204 m = fmin(hi-gtHi, gtHi-unHi); fvswap(unLo, hi-m+1, m); in fallbackQSort3() 2219 #undef fmin
|