| /freebsd/contrib/llvm-project/libcxx/include/__math/ |
| H A D | min_max.h | 26 // fmax 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/man/ |
| H A D | fmax.3 | 29 .Nm fmax , 41 .Fn fmax "double x" "double y" 54 .Fn fmax , 84 .Fn fmax ,
|
| H A D | fdim.3 | 71 .Xr fmax 3 ,
|
| H A D | math.3 | 118 fmax maximum function
|
| /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);
|
| /freebsd/tests/sys/kern/ |
| H A D | kern_copyin.c | 87 #define FMAX ULONG_MAX 138 ATF_CHECK(copyin_checker(FMAX - 10, 9) == EFAULT); in ATF_TC_BODY() 139 ATF_CHECK(copyin_checker(FMAX - 10, 10) == EFAULT); in ATF_TC_BODY() 140 ATF_CHECK(copyin_checker(FMAX - 10, 11) == EFAULT); in ATF_TC_BODY() 88 #define FMAX global() macro
|
| /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/lib/msun/tests/ |
| H A D | fmaxmin_test.c | 28 * Tests for fmax{,f,l}() and fmin{,f,l}. 64 TEST(fmax, double, big, small, expected_max, rmode); in testall_r() 65 TEST(fmax, double, small, big, expected_max, rmode); in testall_r() 77 * Test all the functions: fmaxf, fmax, fmaxl, fminf, fmin, and fminl,
|
| /freebsd/lib/msun/ |
| H A D | Makefile | 179 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 D | Symbol.map | 104 fmax;
|
| /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 | tgmath.h | 747 // fmax 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/contrib/diff/src/ |
| H A D | analyze.c | 103 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/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPU.td | 715 def FeatureAtomicFMinFMaxF32GlobalInsts : SubtargetFeature<"atomic-fmin-fmax-global-f32", 718 "Has global/buffer instructions for atomicrmw fmin/fmax for float" 721 def FeatureAtomicFMinFMaxF64GlobalInsts : SubtargetFeature<"atomic-fmin-fmax-global-f64", 724 "Has global/buffer instructions for atomicrmw fmin/fmax for float" 727 def FeatureAtomicFMinFMaxF32FlatInsts : SubtargetFeature<"atomic-fmin-fmax-flat-f32", 730 "Has flat memory instructions for atomicrmw fmin/fmax for float" 733 def FeatureAtomicFMinFMaxF64FlatInsts : SubtargetFeature<"atomic-fmin-fmax-flat-f64", 736 "Has flat memory instructions for atomicrmw fmin/fmax for double"
|
| H A D | AMDGPUAtomicOptimizer.cpp | 221 case AtomicRMWInst::FMax: in visitAtomicRMWInst() 393 case AtomicRMWInst::FMax: in buildNonAtomicBinOp() 648 case AtomicRMWInst::FMax: in getIdentityValueForAtomicOp() 649 // FIXME: atomicrmw fmax/fmin behave like llvm.maxnum/minnum so NaN is the in getIdentityValueForAtomicOp() 814 case AtomicRMWInst::FMax: in optimizeAtomic() 944 case AtomicRMWInst::FMax: in optimizeAtomic()
|
| /freebsd/include/ |
| H A D | tgmath.h | 174 #define fmax(x, y) __tg_simple2(x, y, fmax) macro
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86IntrinsicsInfo.h | 372 X86_INTRINSIC_DATA(avx_max_pd_256, INTR_TYPE_2OP, X86ISD::FMAX, 0), 373 X86_INTRINSIC_DATA(avx_max_ps_256, INTR_TYPE_2OP, X86ISD::FMAX, 0), 910 X86_INTRINSIC_DATA(avx512_max_pd_512, INTR_TYPE_2OP_SAE, X86ISD::FMAX, 912 X86_INTRINSIC_DATA(avx512_max_ps_512, INTR_TYPE_2OP_SAE, X86ISD::FMAX, 1429 X86_INTRINSIC_DATA(avx512fp16_max_ph_128, INTR_TYPE_2OP, X86ISD::FMAX, 0), 1430 X86_INTRINSIC_DATA(avx512fp16_max_ph_256, INTR_TYPE_2OP, X86ISD::FMAX, 0), 1431 X86_INTRINSIC_DATA(avx512fp16_max_ph_512, INTR_TYPE_2OP_SAE, X86ISD::FMAX, 1510 X86_INTRINSIC_DATA(sse_max_ps, INTR_TYPE_2OP, X86ISD::FMAX, 0), 1541 X86_INTRINSIC_DATA(sse2_max_pd, INTR_TYPE_2OP, X86ISD::FMAX, 0),
|
| /freebsd/sys/contrib/device-tree/Bindings/pinctrl/ |
| H A D | nxp,s32g2-siul2-pinctrl.yaml | 80 description: Supported slew rate based on Fmax values (MHz)
|
| /freebsd/contrib/llvm-project/clang/lib/Headers/cuda_wrappers/ |
| H A D | cmath | 40 // For __constexpr_fmin/fmax we only need device-side overloads before c++14
|
| /freebsd/share/man/man3/ |
| H A D | tgmath.3 | 110 .It Fn cbrt Ta Fn fmax Ta Fn log10 Ta Fn remquo
|
| /freebsd/tools/regression/include/tgmath/ |
| H A D | tgmath.c | 116 TGMACRO_REAL_REAL(fmax) 509 PRINT("fmax", in main() 510 PASS_REAL_REAL_ARG_REAL_RET(fmax)); in main()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/ |
| H A D | DXIL.td | 326 def FMax : DXILOpMapping<35, binary, int_maxnum, 327 "Float maximum. FMax(a,b) = a > b ? a : b">;
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | IVDescriptors.cpp | 389 // standardize on fmin/fmax via intrinsics, this can be removed. in AddReductionVar() 696 return InstDesc(Kind == RecurKind::FMax, I); in isMinMaxPattern() 700 return InstDesc(Kind == RecurKind::FMax, I); in isMinMaxPattern() 704 return InstDesc(Kind == RecurKind::FMax, I); in isMinMaxPattern() 912 if (AddReductionVar(Phi, RecurKind::FMax, TheLoop, FMF, RedDes, DB, AC, DT, in isReductionPHI() 1079 case RecurKind::FMax: in getRecurrenceIdentity() 1119 case RecurKind::FMax: in getOpcode()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | LowerAtomic.cpp | 76 case AtomicRMWInst::FMax: in buildAtomicRMWValue()
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | math.h | 196 floating_point fmax (arithmetic x, arithmetic y); 465 using std::__math::fmax;
|