Searched refs:fmin (Results 1 - 24 of 24) sorted by relevance

/freebsd-current/lib/msun/src/
H A Ds_fmin.c36 fmin(double x, double y) function
42 fmin(double x, double y) function
64 __weak_reference(fmin, fminl);
H A Dmath.h319 double fmin(double, double) __pure2;
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/
H A Ddfminmax.S28 .global fmin
29 .type fmin,@function
38 fmin: label
/freebsd-current/contrib/llvm-project/libcxx/include/__math/
H A Dmin_max.h48 // fmin
50 _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI float fmin(float __x, float __y) _NOEXCEPT {
55 _LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI double fmin(double __x, double __y) _NOEXCEPT {
59 _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI long double fmin(long double __x, long double __y) _NOEXCEPT {
64 _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type fmin(_A1 __x, _A2 __y) _NOEXCEPT {
67 return __math::fmin((__result_type)__x, (__result_type)__y);
/freebsd-current/lib/msun/tests/
H A Dfmaxmin_test.c28 * Tests for fmax{,f,l}() and fmin{,f,l}.
70 TEST(fmin, double, big, small, expected_min, rmode);
71 TEST(fmin, double, small, big, expected_min, rmode);
77 * Test all the functions: fmaxf, fmax, fmaxl, fminf, fmin, and fminl,
/freebsd-current/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 Dtgmath.h765 // fmin
773 __tg_fmin(double __x, double __y) {return fmin(__x, __y);}
779 #undef fmin macro
780 #define fmin(__x, __y) __tg_fmin(__tg_promote2((__x), (__y))(__x), \ macro
H A D__clang_hip_cmath.h226 __DEF_FUN2(float, fmin)
502 __HIP_OVERLOAD2(double, fmin)
673 using ::fmin;
H A D__clang_cuda_math.h133 __DEVICE__ double fmin(double __a, double __b) { return __nv_fmin(__a, __b); } function
H A Dopencl-c.h7193 * argument is a NaN, fmin() returns the other
7194 * argument. If both arguments are NaNs, fmin()
7197 float __ovld __cnfn fmin(float, float);
7198 float2 __ovld __cnfn fmin(float2, float2);
7199 float3 __ovld __cnfn fmin(float3, float3);
7200 float4 __ovld __cnfn fmin(float4, float4);
7201 float8 __ovld __cnfn fmin(float8, float8);
7202 float16 __ovld __cnfn fmin(float16, float16);
7203 float2 __ovld __cnfn fmin(float2, float);
7204 float3 __ovld __cnfn fmin(float
[all...]
H A D__clang_hip_math.h821 double fmin(double __x, double __y) { return __builtin_fmin(__x, __y); } function
/freebsd-current/contrib/diff/src/
H A Danalyze.c103 lin fmin = fmid, fmax = fmid; /* Limits of top-down search. */ local
118 fmin > dmin ? fd[--fmin - 1] = -1 : ++fmin;
120 for (d = fmax; d >= fmin; d -= 2)
162 if (!odd && fmin <= d && d <= fmax && x <= fd[d])
186 for (d = fmax; d >= fmin; d -= 2)
267 for (d = fmax; d >= fmin; d -= 2)
/freebsd-current/include/
H A Dtgmath.h175 #define fmin(x, y) __tg_simple2(x, y, fmin) macro
/freebsd-current/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcmath.inc239 using ::fmin;
/freebsd-current/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);
167 m = fmin(hi-gtHi, gtHi-unHi); fvswap(unLo, hi-m+1, m);
182 #undef fmin macro
/freebsd-current/contrib/llvm-project/libcxx/include/
H A Dmath.h200 floating_point fmin (arithmetic x, arithmetic y);
466 using std::__math::fmin;
/freebsd-current/tools/regression/include/tgmath/
H A Dtgmath.c117 TGMACRO_REAL_REAL(fmin)
512 PRINT("fmin",
513 PASS_REAL_REAL_ARG_REAL_RET(fmin));
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dcmath.inc240 using std::fmin;
/freebsd-current/lib/msun/
H A DMakefile231 fmax.3 fmin.3 fmax.3 fminf.3 fmax.3 fminl.3
/freebsd-current/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp697 KEYWORD(umin); KEYWORD(fmax); KEYWORD(fmin);
/freebsd-current/contrib/arm-optimized-routines/math/test/
H A Dmathtest.c290 TFUNC(at_d2,rt_d, fmin, 0),
/freebsd-current/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVInstructionSelector.cpp378 return selectExtInst(ResVReg, ResType, I, CL::fmin, GL::FMin);
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp2456 MUTATE_LDBL(fmin)

Completed in 276 milliseconds