Home
last modified time | relevance | path

Searched refs:fmax (Results 1 – 25 of 61) sorted by relevance

123

/freebsd/contrib/llvm-project/libcxx/include/__math/
H A Dmin_max.h28 [[__nodiscard__]] inline _LIBCPP_HIDE_FROM_ABI float fmax(float __x, float __y) _NOEXCEPT { in fmax() function
33 [[__nodiscard__]] _LIBCPP_HIDE_FROM_ABI double fmax(double __x, double __y) _NOEXCEPT { in fmax() function
37 [[__nodiscard__]] inline _LIBCPP_HIDE_FROM_ABI long double fmax(long double __x, long double __y) _… in fmax() function
42 [[__nodiscard__]] inline _LIBCPP_HIDE_FROM_ABI __promote_t<_A1, _A2> fmax(_A1 __x, _A2 __y) _NOEXCE… in fmax() function
45 return __math::fmax((__result_type)__x, (__result_type)__y); in fmax()
H A Dhypot.h65 …const _Real __max_abs = __math::fmax(__math::fabs(__x), __math::fmax(__math::fabs(__y), __math::fa… in __hypot()
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/__math/
H A Dmin_max.h28 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI float fmax(float __x, float __y) _NOEXCEPT { in fmax() function
33 _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI double fmax(double __x, double __y) _NOEXCEPT { in fmax() function
37 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI long double fmax(long double __x, long double __y) _… in fmax() function
42 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type fmax(_A1 __x, _A2… in fmax() function
45 return __math::fmax((__result_type)__x, (__result_type)__y); in fmax()
/freebsd/lib/msun/src/
H A Ds_fmax.c36 fmax(double x, double y) in fmax() function
42 fmax(double x, double y) in fmax() function
64 __weak_reference(fmax, fmaxl);
H A Dmath.h314 double fmax(double, double) __pure2;
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/
H A Ddfminmax.S30 .global fmax
31 .type fmax,@function
58 fmax: label
/freebsd/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 D__clang_hip_cmath.h225 __DEF_FUN2(float, fmax)
507 __HIP_OVERLOAD2(double, fmax)
678 using ::fmax;
H A Dtgmath.h755 __tg_fmax(double __x, double __y) {return fmax(__x, __y);} in __tg_fmax()
761 #undef fmax
762 #define fmax(__x, __y) __tg_fmax(__tg_promote2((__x), (__y))(__x), \ macro
/freebsd/lib/msun/
H A DMakefile192 fmax.3 fmaximum.3 fmaximum_mag.3 \
249 MLINKS+=fmax.3 fmaxf.3 fmax.3 fmaxl.3 \
250 fmax.3 fmin.3 fmax.3 fminf.3 fmax.3 fminl.3
H A DSymbol.map104 fmax;
/freebsd/lib/msun/tests/
H A Dfmaxmin_test.c64 TEST(fmax, double, big, small, expected_max, rmode); in testall_r()
65 TEST(fmax, double, small, big, expected_max, rmode); in testall_r()
/freebsd/include/
H A Dtgmath.h174 #define fmax(x, y) __tg_simple2(x, y, fmax) macro
/freebsd/sbin/ping/
H A Dmain.c238 double stddev = sqrt(fmax(0, tsumsq / num - avg * avg)); in pr_summary()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dmath.h459 using std::__math::fmax;
H A Dcmath199 floating_point fmax (arithmetic x, arithmetic y);
448 using ::fmax _LIBCPP_USING_IF_EXISTS;
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dmath.h465 using std::__math::fmax;
H A Dcmath199 floating_point fmax (arithmetic x, arithmetic y);
444 using ::fmax _LIBCPP_USING_IF_EXISTS;
/freebsd/tools/regression/include/tgmath/
H A Dtgmath.c116 TGMACRO_REAL_REAL(fmax)
510 PASS_REAL_REAL_ARG_REAL_RET(fmax)); in main()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPU.td874 def FeatureAtomicFMinFMaxF32GlobalInsts : SubtargetFeature<"atomic-fmin-fmax-global-f32",
877 "Has global/buffer instructions for atomicrmw fmin/fmax for float"
880 def FeatureAtomicFMinFMaxF64GlobalInsts : SubtargetFeature<"atomic-fmin-fmax-global-f64",
883 "Has global/buffer instructions for atomicrmw fmin/fmax for float"
886 def FeatureAtomicFMinFMaxF32FlatInsts : SubtargetFeature<"atomic-fmin-fmax-flat-f32",
889 "Has flat memory instructions for atomicrmw fmin/fmax for float"
892 def FeatureAtomicFMinFMaxF64FlatInsts : SubtargetFeature<"atomic-fmin-fmax-flat-f64",
895 "Has flat memory instructions for atomicrmw fmin/fmax for double"
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcmath.inc235 using ::fmax _LIBCPP_USING_IF_EXISTS;
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfoQ.td68 defm FMAX_Q : FPALU_rr_m<0b0010111, 0b001, "fmax.q", Ext, Commutable = 1>;
/freebsd/contrib/llvm-project/libc/src/__support/FPUtil/
H A DBasicOperations.h129 LIBC_INLINE T fmax(T x, T y) { in fmax() function
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dcmath.cppm

123