Searched refs:fmax (Results 1 - 15 of 15) sorted by relevance

/freebsd-13-stable/lib/msun/src/
H A Ds_fmax.c38 fmax(double x, double y) function
59 __weak_reference(fmax, fmaxl);
H A Dmath.h314 double fmax(double, double) __pure2;
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/
H A Ddfminmax.S30 .global fmax
31 .type fmax,@function
58 fmax: label
/freebsd-13-stable/lib/msun/tests/
H A Dfmaxmin_test.c28 * Tests for fmax{,f,l}() and fmin{,f,l}.
66 TEST(fmax, double, big, small, expected_max, rmode);
67 TEST(fmax, double, small, big, expected_max, rmode);
79 * Test all the functions: fmaxf, fmax, fmaxl, fminf, fmin, and fminl,
/freebsd-13-stable/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h73 __DEVICE__ double fmax(double, double);
74 __DEVICE__ float fmax(float, float);
219 using ::fmax;
H A D__clang_cuda_cmath.h219 __CUDA_CLANG_FN_INTEGER_OVERLOAD_2(double, fmax);
347 using ::fmax;
H A Dtgmath.h747 // fmax
755 __tg_fmax(double __x, double __y) {return fmax(__x, __y);}
761 #undef fmax macro
762 #define fmax(__x, __y) __tg_fmax(__tg_promote2((__x), (__y))(__x), \ macro
H A D__clang_hip_math.h619 inline double fmax(double __x, double __y) { return __ocml_fmax_f64(__x, __y); } function
1091 __DEF_FUN2(double, fmax);
1157 inline double max(double __x, double __y) { return fmax(__x, __y); }
H A D__clang_cuda_math.h131 __DEVICE__ double fmax(double __a, double __b) { return __nv_fmax(__a, __b); } function
H A Dopencl-c.h7239 * argument is a NaN, fmax() returns the other
7240 * argument. If both arguments are NaNs, fmax()
7243 float __ovld __cnfn fmax(float x, float y);
7244 float2 __ovld __cnfn fmax(float2 x, float2 y);
7245 float3 __ovld __cnfn fmax(float3 x, float3 y);
7246 float4 __ovld __cnfn fmax(float4 x, float4 y);
7247 float8 __ovld __cnfn fmax(float8 x, float8 y);
7248 float16 __ovld __cnfn fmax(float16 x, float16 y);
7249 float2 __ovld __cnfn fmax(float2 x, float y);
7250 float3 __ovld __cnfn fmax(float
[all...]
/freebsd-13-stable/lib/msun/
H A DMakefile161 fma.3 fmax.3 fmod.3 hypot.3 ieee.3 ieee_test.3 ilogb.3 j0.3 \
211 MLINKS+=fmax.3 fmaxf.3 fmax.3 fmaxl.3 \
212 fmax.3 fmin.3 fmax.3 fminf.3 fmax.3 fminl.3
/freebsd-13-stable/contrib/diff/src/
H A Danalyze.c103 lin fmin = fmid, fmax = fmid; /* Limits of top-down search. */ local
119 fmax < dmax ? fd[++fmax + 1] = -1 : --fmax;
120 for (d = fmax; d >= fmin; d -= 2)
162 if (!odd && fmin <= d && d <= fmax && x <= fd[d])
186 for (d = fmax; d >= fmin; d -= 2)
267 for (d = fmax; d >= fmin; d -= 2)
/freebsd-13-stable/include/
H A Dtgmath.h176 #define fmax(x, y) __tg_simple2(x, y, fmax) macro
/freebsd-13-stable/tools/regression/include/tgmath/
H A Dtgmath.c118 TGMACRO_REAL_REAL(fmax)
511 PRINT("fmax",
512 PASS_REAL_REAL_ARG_REAL_RET(fmax));
/freebsd-13-stable/contrib/llvm-project/libcxx/include/
H A Dmath.h196 floating_point fmax (arithmetic x, arithmetic y);
1211 // fmax
1213 inline _LIBCPP_INLINE_VISIBILITY float fmax(float __lcpp_x, float __lcpp_y) _NOEXCEPT {return ::fmaxf(__lcpp_x, __lcpp_y);}
1214 inline _LIBCPP_INLINE_VISIBILITY long double fmax(long double __lcpp_x, long double __lcpp_y) _NOEXCEPT {return ::fmaxl(__lcpp_x, __lcpp_y);}
1224 fmax(_A1 __lcpp_x, _A2 __lcpp_y) _NOEXCEPT
1229 return ::fmax((__result_type)__lcpp_x, (__result_type)__lcpp_y);

Completed in 299 milliseconds