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

12

/openbsd-current/lib/libm/src/
H A Ds_fmin.c32 fmin(double x, double y) function
50 DEF_STD(fmin); variable
51 LDBL_MAYBE_UNUSED_CLONE(fmin); variable
/openbsd-current/gnu/llvm/compiler-rt/lib/builtins/hexagon/
H A Ddfminmax.S28 .global fmin
29 .type fmin,@function
38 fmin: label
/openbsd-current/regress/lib/libm/msun/
H A Dfmaxmin_test.c31 * Tests for fmax{,f,l}() and fmin{,f,l}.
72 TEST(fmin, double, big, small, expected_min, rmode);
73 TEST(fmin, double, small, big, expected_min, rmode);
79 * Test all the functions: fmaxf, fmax, fmaxl, fminf, fmin, and fminl,
/openbsd-current/gnu/llvm/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 D__clang_hip_math.h809 double fmin(double __x, double __y) { return __ocml_fmin_f64(__x, __y); } function
1302 double min(double __x, double __y) { return fmin(__x, __y); }
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...]
/openbsd-current/gnu/usr.bin/perl/t/re/
H A Dopt.t132 my($futf, $fmin, $fmax, $fcheck, $fstr) = ($floating =~ m{
157 if (length $fmin) {
162 $skip || is($o->{'floating min offset'}, $fmin,
/openbsd-current/gnu/gcc/libstdc++-v3/include/tr1/
H A Dmath.h63 using std::tr1::fmin;
/openbsd-current/gnu/usr.bin/cvs/diff/
H A Danalyze.c110 int fmin = fmid, fmax = fmid; /* Limits of top-down search. */ local
125 fmin > dmin ? fd[--fmin - 1] = -1 : ++fmin;
127 for (d = fmax; d >= fmin; d -= 2)
169 if (!odd && fmin <= d && d <= fmax && x <= fd[d])
194 for (d = fmax; d >= fmin; d -= 2)
275 for (d = fmax; d >= fmin; d -= 2)
/openbsd-current/include/
H A Dtgmath.h134 #define fmin(x, y) __tg_simple2(x, y, fmin) macro
H A Dmath.h243 double fmin(double, double);
/openbsd-current/lib/libm/hidden/
H A Dmath.h93 PROTO_NORMAL(fmin); variable
/openbsd-current/gnu/usr.bin/perl/cpan/Compress-Raw-Bzip2/bzip2-src/
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
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/t/
H A Dmath.t104 is(fmin(12, 34), 12, "fmin 12 34");
H A Dexport.t163 fma fmax fmin fpclassify hypot ilogb isfinite isgreater
/openbsd-current/gnu/llvm/libcxx/include/
H A Dmath.h200 floating_point fmin (arithmetic x, arithmetic y);
1220 // fmin
1222 _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI float fmin(float __x, float __y) _NOEXCEPT {return __builtin_fminf(__x, __y);}
1225 _LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI double fmin(double __x, double __y) _NOEXCEPT {
1229 _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI long double fmin(long double __x, long double __y) _NOEXCEPT {return __builtin_fminl(__x, __y);}
1239 fmin(_A1 __x, _A2 __y) _NOEXCEPT
1244 return ::fmin((__result_type)__x, (__result_type)__y);
/openbsd-current/sys/dev/pci/drm/i915/gt/
H A Dintel_rps.c281 u8 fmax, fmin, fstart; local
304 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
307 drm_dbg(&i915->drm, "fmax: %d, fmin: %d, fstart: %d\n",
308 fmax, fmin, fstart);
312 rps->max_freq = fmin;
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/lib/
H A DPOSIX.pm429 fmax fmin fpclassify hypot ilogb isfinite isgreater isgreaterequal
/openbsd-current/gnu/llvm/llvm/lib/AsmParser/
H A DLLLexer.cpp674 KEYWORD(umin); KEYWORD(fmax); KEYWORD(fmin);
/openbsd-current/gnu/usr.bin/perl/vms/
H A Dvmsish.h749 double fmin(double __x, double __y);
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/
H A DPOSIX.xs204 fmin fpclassify hypot ilogb isfinite isgreater isgreaterequal isinf
342 # define c99_fmin fmin
2523 fmin = 3
2569 not_here("fmin");

Completed in 253 milliseconds

12