Home
last modified time | relevance | path

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

123

/freebsd/contrib/llvm-project/libcxx/include/__math/
H A Dmin_max.h28 _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI float fmax(float __x, float __y) _NOEXCEPT { in fmax() function
33 _LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI double fmax(double __x, double __y) _NOEXCEPT { in fmax() function
37 _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI long double fmax(long double __x, long double __… in fmax() function
42 _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type fmax(_A1 __x,… 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.h318 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/diff/src/
H A Danalyze.c103 lin fmin = fmid, fmax = fmid; /* Limits of top-down search. */ in diag() local
119 fmax < dmax ? fd[++fmax + 1] = -1 : --fmax; in diag()
120 for (d = fmax; d >= fmin; d -= 2) in diag()
162 if (!odd && fmin <= d && d <= fmax && x <= fd[d]) in diag()
186 for (d = fmax; d >= fmin; d -= 2) in diag()
267 for (d = fmax; d >= fmin; d -= 2) in diag()
/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)
501 __HIP_OVERLOAD2(double, fmax)
672 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
H A D__clang_cuda_math.h131 __DEVICE__ double fmax(double __a, double __b) { return __nv_fmax(__a, __b); } in fmax() function
/freebsd/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
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.h465 using std::__math::fmax;
H A Dcmath199 floating_point fmax (arithmetic x, arithmetic y);
436 using ::fmax _LIBCPP_USING_IF_EXISTS;
/freebsd/contrib/llvm-project/clang/lib/Headers/cuda_wrappers/
H A Dcmath40 // For __constexpr_fmin/fmax we only need device-side overloads before c++14
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcmath.inc235 using ::fmax;
/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/include/llvm/Analysis/
H A DVecFuncs.def517 TLI_DEFINE_VECFUNC("fmax", "_ZGVnN2vv_fmax", FIXED(2), "_ZGV_LLVM_N2vv")
735 TLI_DEFINE_VECFUNC("fmax", "_ZGVsMxvv_fmax", SCALABLE(2), MASKED, "_ZGVsMxvv")
936 TLI_DEFINE_VECFUNC("fmax", "armpl_vfmaxq_f64", FIXED(2), NOMASK, "_ZGV_LLVM_N2vv")
938 TLI_DEFINE_VECFUNC("fmax", "armpl_svfmax_f64_x", SCALABLE(2), MASKED, "_ZGVsMxvv")
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dcmath.inc236 using std::fmax;
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64SMEInstrInfo.td407 defm FMAX_VG2_2ZZ : sme2_fp_sve_destructive_vector_vg2_single<"fmax", 0b0010000>;
408 defm FMAX_VG4_4ZZ : sme2_fp_sve_destructive_vector_vg4_single<"fmax", 0b0010000>;
409 defm FMAX_VG2_2Z2Z : sme2_fp_sve_destructive_vector_vg2_multi<"fmax", 0b0010000>;
410 defm FMAX_VG4_4Z4Z : sme2_fp_sve_destructive_vector_vg4_multi<"fmax", 0b0010000>;
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticGroups.td1442 2. As a per-translation unit limit, using the ``-fmax-tokens=`` command-line
1447 clang -c a.cpp -fmax-tokens=1234
1450 which works like and overrides the ``-fmax-tokens=`` flag:
1461 in addition with the pragmas or -fmax-tokens flag to get any warnings.
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfoD.td113 defm FMAX_D : FPALU_rr_m<0b0010101, 0b001, "fmax.d", Ext, Commutable=1>;
386 // The ratified 20191213 ISA spec defines fmin and fmax in a way that matches

123