| /freebsd/contrib/llvm-project/libcxx/include/__math/ |
| H A D | min_max.h | 28 [[__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 D | hypot.h | 65 …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 D | min_max.h | 28 _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 D | s_fmax.c | 36 fmax(double x, double y) in fmax() function 42 fmax(double x, double y) in fmax() function 64 __weak_reference(fmax, fmaxl);
|
| H A D | math.h | 314 double fmax(double, double) __pure2;
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/ |
| H A D | dfminmax.S | 30 .global fmax 31 .type fmax,@function 58 fmax: label
|
| /freebsd/contrib/llvm-project/clang/lib/Headers/ |
| H A D | __clang_cuda_math_forward_declares.h | 73 __DEVICE__ double fmax(double, double); 74 __DEVICE__ float fmax(float, float); 222 using ::fmax;
|
| H A D | __clang_cuda_cmath.h | 261 __CUDA_CLANG_FN_INTEGER_OVERLOAD_2(double, fmax); 389 using ::fmax;
|
| H A D | __clang_hip_cmath.h | 225 __DEF_FUN2(float, fmax) 507 __HIP_OVERLOAD2(double, fmax) 678 using ::fmax;
|
| H A D | tgmath.h | 755 __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 D | Makefile | 192 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 D | Symbol.map | 104 fmax;
|
| /freebsd/lib/msun/tests/ |
| H A D | fmaxmin_test.c | 64 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 D | tgmath.h | 174 #define fmax(x, y) __tg_simple2(x, y, fmax) macro
|
| /freebsd/sbin/ping/ |
| H A D | main.c | 238 double stddev = sqrt(fmax(0, tsumsq / num - avg * avg)); in pr_summary()
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | math.h | 459 using std::__math::fmax;
|
| H A D | cmath | 199 floating_point fmax (arithmetic x, arithmetic y); 448 using ::fmax _LIBCPP_USING_IF_EXISTS;
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | math.h | 465 using std::__math::fmax;
|
| H A D | cmath | 199 floating_point fmax (arithmetic x, arithmetic y); 444 using ::fmax _LIBCPP_USING_IF_EXISTS;
|
| /freebsd/tools/regression/include/tgmath/ |
| H A D | tgmath.c | 116 TGMACRO_REAL_REAL(fmax) 510 PASS_REAL_REAL_ARG_REAL_RET(fmax)); in main()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPU.td | 874 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 D | cmath.inc | 235 using ::fmax _LIBCPP_USING_IF_EXISTS;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVInstrInfoQ.td | 68 defm FMAX_Q : FPALU_rr_m<0b0010111, 0b001, "fmax.q", Ext, Commutable = 1>;
|
| /freebsd/contrib/llvm-project/libc/src/__support/FPUtil/ |
| H A D | BasicOperations.h | 129 LIBC_INLINE T fmax(T x, T y) { in fmax() function
|
| /freebsd/contrib/llvm-project/libcxx/modules/std/ |
| H A D | cmath.cppm | |