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

12

/external/llvm/test/MC/AArch64/
H A Dneon-max-min.s81 fmin v10.2s, v15.2s, v22.2s
82 fmin v3.4s, v5.4s, v6.4s
83 fmin v17.2d, v13.2d, v2.2d
85 // CHECK: fmin v10.2s, v15.2s, v22.2s // encoding: [0xea,0xf5,0xb6,0x0e]
86 // CHECK: fmin v3.4s, v5.4s, v6.4s // encoding: [0xa3,0xf4,0xa6,0x4e]
87 // CHECK: fmin v17.2d, v13.2d, v2.2d // encoding: [0xb1,0xf5,0xe2,0x4e]
H A Darm64-fp-encoding.s42 fmin s1, s2, s3
43 fmin d1, d2, d3
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/
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/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h271 /// double fmin(double x, double y);
272 fmin, enumerator in enum:llvm::LibFunc::Func
736 case LibFunc::fmin: case LibFunc::fminf: case LibFunc::fminl:
/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/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/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/libcxx/test/numerics/c.math/
H A Dcmath.disabled.cpp871 static_assert((std::is_same<decltype(std::fmin((float)0, (float)0)), float>::value), "");
872 static_assert((std::is_same<decltype(std::fmin((bool)0, (float)0)), double>::value), "");
873 static_assert((std::is_same<decltype(std::fmin((unsigned short)0, (double)0)), double>::value), "");
874 static_assert((std::is_same<decltype(std::fmin((int)0, (long double)0)), long double>::value), "");
875 static_assert((std::is_same<decltype(std::fmin((float)0, (unsigned int)0)), double>::value), "");
876 static_assert((std::is_same<decltype(std::fmin((double)0, (long)0)), double>::value), "");
877 static_assert((std::is_same<decltype(std::fmin((long double)0, (unsigned long)0)), long double>::value), "");
878 static_assert((std::is_same<decltype(std::fmin((int)0, (long long)0)), double>::value), "");
879 static_assert((std::is_same<decltype(std::fmin((int)0, (unsigned long long)0)), double>::value), "");
880 static_assert((std::is_same<decltype(std::fmin((doubl
[all...]
/external/clang/lib/Headers/
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/fio/
H A Dgettime.c299 if ((fmax(this, mean) - fmin(this, mean)) > S)
/external/libcxx/test/depr/depr.c.headers/
H A Dmath_h.disabled.cpp427 static_assert((std::is_same<decltype(fmin((double)0, (double)0)), double>::value), "");
430 assert(fmin(1,0) == 0);
/external/ltrace/etc/
H A Dlibm.so.conf352 double fmin(double, double);
/external/vixl/test/
H A Dtest-simulator-a64.cc966 DEFINE_TEST_FP(fmin, 2Op, Basic)
/external/guava/guava/lib/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/valgrind/main/VEX/switchback/
H A Dtest_bzip2.c2100 #define fmin(a,b) ((a) < (b)) ? (a) : (b) macro
2188 n = fmin(ltLo-lo, unLo-ltLo); fvswap(lo, unLo-n, n);
2189 m = fmin(hi-gtHi, gtHi-unHi); fvswap(unLo, hi-m+1, m);
2204 #undef fmin macro
/external/valgrind/main/exp-sgcheck/tests/
H A Dhackedbz2.c2124 #define fmin(a,b) ((a) < (b)) ? (a) : (b) macro
2212 n = fmin(ltLo-lo, unLo-ltLo); fvswap(lo, unLo-n, n);
2213 m = fmin(hi-gtHi, gtHi-unHi); fvswap(unLo, hi-m+1, m);
2228 #undef fmin macro
/external/valgrind/main/memcheck/tests/
H A Dorigin5-bz2.c2115 #define fmin(a,b) ((a) < (b)) ? (a) : (b) macro
2203 n = fmin(ltLo-lo, unLo-ltLo); fvswap(lo, unLo-n, n);
2204 m = fmin(hi-gtHi, gtHi-unHi); fvswap(unLo, hi-m+1, m);
2219 #undef fmin macro
H A Dvarinfo6.c2153 #define fmin(a,b) ((a) < (b)) ? (a) : (b) macro
2241 n = fmin(ltLo-lo, unLo-ltLo); fvswap(lo, unLo-n, n);
2242 m = fmin(hi-gtHi, gtHi-unHi); fvswap(unLo, hi-m+1, m);
2257 #undef fmin macro
/external/valgrind/main/perf/
H A Dbz2.c2115 #define fmin(a,b) ((a) < (b)) ? (a) : (b) macro
2203 n = fmin(ltLo-lo, unLo-ltLo); fvswap(lo, unLo-n, n);
2204 m = fmin(hi-gtHi, gtHi-unHi); fvswap(unLo, hi-m+1, m);
2219 #undef fmin macro
/external/chromium_org/v8/src/arm64/
H A Dassembler-arm64.h1635 void fmin(const FPRegister& fd, const FPRegister& fn, const FPRegister& fm);
H A Dmacro-assembler-arm64-inl.h692 fmin(fd, fn, fm);
/external/vixl/src/a64/
H A Dassembler-a64.h1288 void fmin(const FPRegister& fd, const FPRegister& fn, const FPRegister& fm);
H A Dmacro-assembler-a64.h619 fmin(fd, fn, fm);
/external/chromium_org/v8/test/cctest/
H A Dtest-disasm-arm64.cc1435 COMPARE(fmin(s25, s26, s27), "fmin s25, s26, s27");
1436 COMPARE(fmin(d28, d29, d30), "fmin d28, d29, d30");
/external/eigen/unsupported/test/mpreal/
H A Dmpreal.h528 friend const mpreal fmin(const mpreal& x, const mpreal& y, mp_rnd_t rnd_mode = mpreal::get_default_rnd());
2425 inline const mpreal fmin(const mpreal& x, const mpreal& y, mp_rnd_t rnd_mode) function in namespace:mpfr

Completed in 341 milliseconds

12