Searched defs:fmin (Results 1 – 9 of 9) sorted by relevance
/freebsd-src/contrib/llvm-project/libcxx/include/__math/ |
H A D | min_max.h | 50 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI float fmin(float __x, float __y) _NOEXCEPT { in fmin() function 55 _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI double fmin(double __x, double __y) _NOEXCEPT { in fmin() function 59 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI long double fmin(long double __x, long double __y) _NOEXCEPT { in fmin() function 64 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type fmin(_A1 __x, _A2 __y) _NOEXCEPT { in fmin() function
|
/freebsd-src/lib/msun/src/ |
H A D | s_fmin.c | 36 fmin(double x, double y) in fmin() function 42 fmin(double x, double y) in fmin() function
|
/freebsd-src/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/ |
H A D | dfminmax.S | 28 .global fmin symbol 38 fmin: label
|
/freebsd-src/tools/regression/include/tgmath/ |
H A D | tgmath.c | 117 TGMACRO_REAL_REAL(fmin) in TGMACRO_REAL_REAL() argument
|
/freebsd-src/contrib/diff/src/ |
H A D | analyze.c | 103 lin fmin = fmid, fmax = fmid; /* Limits of top-down search. */ in diag() local
|
/freebsd-src/contrib/bzip2/ |
H A D | blocksort.c | 78 #define fmin(a,b) ((a) < (b)) ? (a) : (b) macro
|
/freebsd-src/include/ |
H A D | tgmath.h | 175 #define fmin(x, y) __tg_simple2(x, y, fmin) macro
|
/freebsd-src/contrib/llvm-project/clang/lib/Headers/ |
H A D | __clang_cuda_math.h | 133 __DEVICE__ double fmin(double __a, double __b) { return __nv_fmin(__a, __b); } in fmin() function
|
H A D | tgmath.h | 780 #define fmin(__x, __y) __tg_fmin(__tg_promote2((__x), (__y))(__x), \ macro
|