Home
last modified time | relevance | path

Searched refs:fmin (Results 1 – 25 of 57) sorted by relevance

123

/freebsd/contrib/llvm-project/libcxx/include/__math/
H A Dmin_max.h50 [[__nodiscard__]] inline _LIBCPP_HIDE_FROM_ABI float fmin(float __x, float __y) _NOEXCEPT { in fmin() function
55 [[__nodiscard__]] _LIBCPP_HIDE_FROM_ABI double fmin(double __x, double __y) _NOEXCEPT { in fmin() function
59 [[__nodiscard__]] inline _LIBCPP_HIDE_FROM_ABI long double fmin(long double __x, long double __y) _… in fmin() function
64 [[__nodiscard__]] inline _LIBCPP_HIDE_FROM_ABI __promote_t<_A1, _A2> fmin(_A1 __x, _A2 __y) _NOEXCE… in fmin() function
67 return __math::fmin((__result_type)__x, (__result_type)__y); in fmin()
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/__math/
H A Dmin_max.h50 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI float fmin(float __x, float __y) _NOEXCEPT { in fmin() function
55 _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI double fmin(double __x, double __y) _NOEXCEPT { in fmin() function
59 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI long double fmin(long double __x, long double __y) _… in fmin() function
64 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type fmin(_A1 __x, _A2… in fmin() function
67 return __math::fmin((__result_type)__x, (__result_type)__y); in fmin()
/freebsd/lib/msun/src/
H A Ds_fmin.c36 fmin(double x, double y) in fmin() function
42 fmin(double x, double y) in fmin() function
64 __weak_reference(fmin, fminl);
H A Dmath.h315 double fmin(double, double) __pure2;
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/
H A Ddfminmax.S28 .global fmin
29 .type fmin,@function
38 fmin: label
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h75 __DEVICE__ double fmin(double, double);
76 __DEVICE__ float fmin(float, float);
223 using ::fmin;
H A D__clang_cuda_cmath.h262 __CUDA_CLANG_FN_INTEGER_OVERLOAD_2(double, fmin);
390 using ::fmin;
H A D__clang_hip_cmath.h226 __DEF_FUN2(float, fmin)
508 __HIP_OVERLOAD2(double, fmin)
679 using ::fmin;
H A Dtgmath.h773 __tg_fmin(double __x, double __y) {return fmin(__x, __y);} in __tg_fmin()
779 #undef fmin
780 #define fmin(__x, __y) __tg_fmin(__tg_promote2((__x), (__y))(__x), \ macro
H A D__clang_cuda_math.h137 __DEVICE__ double fmin(double __a, double __b) { return __nv_fmin(__a, __b); } in fmin() function
/freebsd/lib/msun/tests/
H A Dfmaxmin_test.c70 TEST(fmin, double, big, small, expected_min, rmode); in testall_r()
71 TEST(fmin, double, small, big, expected_min, rmode); in testall_r()
/freebsd/include/
H A Dtgmath.h175 #define fmin(x, y) __tg_simple2(x, y, fmin) macro
/freebsd/contrib/bzip2/
H A Dblocksort.c78 #define fmin(a,b) ((a) < (b)) ? (a) : (b) macro
166 n = fmin(ltLo-lo, unLo-ltLo); fvswap(lo, unLo-n, n); in fallbackQSort3()
167 m = fmin(hi-gtHi, gtHi-unHi); fvswap(unLo, hi-m+1, m); in fallbackQSort3()
182 #undef fmin
/freebsd/lib/msun/
H A DSymbol.map107 fmin;
/freebsd/contrib/llvm-project/libcxx/include/
H A Dmath.h460 using std::__math::fmin;
H A Dcmath203 floating_point fmin (arithmetic x, arithmetic y);
450 using ::fmin _LIBCPP_USING_IF_EXISTS;
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dmath.h466 using std::__math::fmin;
H A Dcmath203 floating_point fmin (arithmetic x, arithmetic y);
446 using ::fmin _LIBCPP_USING_IF_EXISTS;
/freebsd/tools/regression/include/tgmath/
H A Dtgmath.c117 TGMACRO_REAL_REAL(fmin) in TGMACRO_REAL_REAL() argument
513 PASS_REAL_REAL_ARG_REAL_RET(fmin)); 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.inc239 using ::fmin _LIBCPP_USING_IF_EXISTS;
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfoQ.td67 defm FMIN_Q : FPALU_rr_m<0b0010111, 0b000, "fmin.q", Ext, Commutable = 1>;
/freebsd/contrib/llvm-project/libc/src/__support/FPUtil/
H A DBasicOperations.h118 LIBC_INLINE T fmin(T x, T y) { in fmin() function
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dcmath.cppm
H A Dcmath.inc240 using std::fmin _LIBCPP_USING_IF_EXISTS;

123