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

/freebsd-current/lib/msun/src/
H A Ds_fmax.c36 fmax(double x, double y) function
42 fmax(double x, double y) function
64 __weak_reference(fmax, fmaxl);
H A Dmath.h318 double fmax(double, double) __pure2;
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/
H A Ddfminmax.S30 .global fmax
31 .type fmax,@function
58 fmax: label
/freebsd-current/contrib/llvm-project/libcxx/include/__math/
H A Dmin_max.h26 // fmax
28 _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI float fmax(float __x, float __y) _NOEXCEPT {
33 _LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI double fmax(double __x, double __y) _NOEXCEPT {
37 _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI long double fmax(long double __x, long double __y) _NOEXCEPT {
42 _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type fmax(_A1 __x, _A2 __y) _NOEXCEPT {
45 return __math::fmax((__result_type)__x, (__result_type)__y);
/freebsd-current/lib/msun/tests/
H A Dfmaxmin_test.c28 * Tests for fmax{,f,l}() and fmin{,f,l}.
64 TEST(fmax, double, big, small, expected_max, rmode);
65 TEST(fmax, double, small, big, expected_max, rmode);
77 * Test all the functions: fmaxf, fmax, fmaxl, fminf, fmin, and fminl,
/freebsd-current/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);
222 using ::fmax;
H A D__clang_cuda_cmath.h261 __CUDA_CLANG_FN_INTEGER_OVERLOAD_2(double, fmax);
389 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_cmath.h225 __DEF_FUN2(float, fmax)
501 __HIP_OVERLOAD2(double, fmax)
672 using ::fmax;
H A D__clang_cuda_math.h131 __DEVICE__ double fmax(double __a, double __b) { return __nv_fmax(__a, __b); } function
H A Dopencl-c.h7149 * argument is a NaN, fmax() returns the other
7150 * argument. If both arguments are NaNs, fmax()
7153 float __ovld __cnfn fmax(float, float);
7154 float2 __ovld __cnfn fmax(float2, float2);
7155 float3 __ovld __cnfn fmax(float3, float3);
7156 float4 __ovld __cnfn fmax(float4, float4);
7157 float8 __ovld __cnfn fmax(float8, float8);
7158 float16 __ovld __cnfn fmax(float16, float16);
7159 float2 __ovld __cnfn fmax(float2, float);
7160 float3 __ovld __cnfn fmax(float
[all...]
H A D__clang_hip_math.h818 double fmax(double __x, double __y) { return __builtin_fmax(__x, __y); } function
/freebsd-current/lib/msun/
H A DMakefile179 fma.3 fmax.3 fmod.3 hypot.3 ieee.3 ieee_test.3 ilogb.3 j0.3 \
230 MLINKS+=fmax.3 fmaxf.3 fmax.3 fmaxl.3 \
231 fmax.3 fmin.3 fmax.3 fminf.3 fmax.3 fminl.3
/freebsd-current/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-current/sbin/ping/
H A Dmain.c238 double stddev = sqrt(fmax(0, tsumsq / num - avg * avg));
/freebsd-current/include/
H A Dtgmath.h174 #define fmax(x, y) __tg_simple2(x, y, fmax) macro
/freebsd-current/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcmath.inc235 using ::fmax;
/freebsd-current/contrib/llvm-project/libcxx/include/
H A Dmath.h196 floating_point fmax (arithmetic x, arithmetic y);
465 using std::__math::fmax;
/freebsd-current/tools/regression/include/tgmath/
H A Dtgmath.c116 TGMACRO_REAL_REAL(fmax)
509 PRINT("fmax",
510 PASS_REAL_REAL_ARG_REAL_RET(fmax));
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dcmath.inc236 using std::fmax;
/freebsd-current/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp697 KEYWORD(umin); KEYWORD(fmax); KEYWORD(fmin);
/freebsd-current/contrib/arm-optimized-routines/math/test/
H A Dmathtest.c288 TFUNC(at_d2,rt_d, fmax, 0),
/freebsd-current/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVInstructionSelector.cpp381 return selectExtInst(ResVReg, ResType, I, CL::fmax, GL::FMax);
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp2457 MUTATE_LDBL(fmax)

Completed in 271 milliseconds