Home
last modified time | relevance | path

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

12

/NextBSD/crypto/openssl/util/
HDmkerr.pl138 $fmax{$1} = 100;
279 if($code > $fmax{$lib}) {
280 $fmax{$lib} = $code;
289 if (defined($fmax{$lib})) {
290 print STDERR "Max function code fmax" . "{" . "$lib" . "} = $fmax{$lib}\n";
493 $findcode = $fmax{$lib};
/NextBSD/contrib/diff/src/
HDanalyze.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()
/NextBSD/lib/msun/
HDMakefile139 fma.3 fmax.3 fmod.3 hypot.3 ieee.3 ieee_test.3 ilogb.3 j0.3 \
183 MLINKS+=fmax.3 fmaxf.3 fmax.3 fmaxl.3 \
184 fmax.3 fmin.3 fmax.3 fminf.3 fmax.3 fminl.3
HDSymbol.map106 fmax;
/NextBSD/lib/msun/tests/
HDfmaxmin_test.c75 TEST(fmax, double, big, small, expected_max); in testall_r()
76 TEST(fmax, double, small, big, expected_max); in testall_r()
/NextBSD/lib/msun/src/
HDs_fmax.c35 fmax(double x, double y) in fmax() function
HDmath.h309 double fmax(double, double) __pure2;
/NextBSD/contrib/libstdc++/include/tr1/
Dcmath76 #undef fmax
207 using ::fmax;
545 fmax(float __x, float __y)
549 fmax(long double __x, long double __y)
554 fmax(_Tp __x, _Up __y)
557 return fmax(__type(__x), __type(__y));
Dmath.h62 using std::tr1::fmax;
/NextBSD/include/
HDtgmath.h174 #define fmax(x, y) __tg_simple2(x, y, fmax) macro
/NextBSD/tools/regression/include/tgmath/
HDtgmath.c118 TGMACRO_REAL_REAL(fmax)
512 PASS_REAL_REAL_ARG_REAL_RET(fmax)); in main()
/NextBSD/contrib/llvm/tools/clang/lib/Headers/
HDtgmath.h762 __tg_fmax(double __x, double __y) {return fmax(__x, __y);} in __tg_fmax()
768 #undef fmax
769 #define fmax(__x, __y) __tg_fmax(__tg_promote2((__x), (__y))(__x), \ macro
/NextBSD/contrib/llvm/include/llvm/Analysis/
HDTargetLibraryInfo.h226 case LibFunc::fmax: case LibFunc::fmaxf: case LibFunc::fmaxl: in hasOptimizedCodeGen()
HDTargetLibraryInfo.def409 /// double fmax(double x, double y);
410 TLI_DEFINE_ENUM_INTERNAL(fmax)
411 TLI_DEFINE_STRING_INTERNAL("fmax")
/NextBSD/contrib/libc++/include/
Dcmath200 floating_point fmax (arithmetic x, arithmetic y);
1247 // fmax
1249 using ::fmax;
1252 inline _LIBCPP_INLINE_VISIBILITY float fmax(float __lcpp_x, float __lcpp_y) _NOEXCEPT …
1253 inline _LIBCPP_INLINE_VISIBILITY long double fmax(long double __lcpp_x, long double __lcpp_y) _NOEX…
1263 fmax(_A1 __lcpp_x, _A2 __lcpp_y) _NOEXCEPT
1268 return fmax((__result_type)__lcpp_x, (__result_type)__lcpp_y);
Dcomplex673 _Tp __logbw = logb(fmax(fabs(__c), fabs(__d)));
/NextBSD/sys/dev/drm2/i915/
HDintel_pm.c2204 u8 fmax, fmin, fstart, vstart; in ironlake_enable_drps() local
2221 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT; in ironlake_enable_drps()
2229 dev_priv->fmax = fmax; /* IPS callback will increase this */ in ironlake_enable_drps()
2237 fmax, fmin, fstart); in ironlake_enable_drps()
3017 if (dev_priv->max_delay > dev_priv->fmax) in i915_gpu_raise()
HDi915_drv.h727 u8 fmax; member
/NextBSD/contrib/llvm/lib/Analysis/
HDVectorUtils.cpp180 case LibFunc::fmax: in getIntrinsicIDForCall()
/NextBSD/contrib/ntp/tests/libntp/
HDlfpfunc.c292 return fmax(ldexp(1.0, -31), ldexp(fabs(d), -53)); in eps()
/NextBSD/contrib/llvm/tools/clang/include/clang/Driver/
HDOptions.td918 def fmax_type_align_EQ : Joined<["-"], "fmax-type-align=">, Group<f_Group>, Flags<[CC1Option]>,
1948 def fmax_array_constructor_EQ : Joined<["-"], "fmax-array-constructor=">, Group<gfortran_Group>;
1949 def fmax_errors_EQ : Joined<["-"], "fmax-errors=">, Group<gfortran_Group>;
1950 def fmax_stack_var_size_EQ : Joined<["-"], "fmax-stack-var-size=">, Group<gfortran_Group>;
1951 def fmax_subrecord_length_EQ : Joined<["-"], "fmax-subrecord-length=">, Group<gfortran_Group>;
/NextBSD/contrib/binutils/opcodes/
HDia64-ic.tbl13 fp-arith; fadd, famax, famin, fcvt.fx, fcvt.fxu, fcvt.xuf, fma, fmax, fmin, fmpy, fms, fnma, fnmpy,…
/NextBSD/contrib/gcc/
HDbuiltins.def246 DEF_C99_BUILTIN (BUILT_IN_FMAX, "fmax", BT_FN_DOUBLE_DOUBLE_DOUBLE, ATTR_CONST_NOTHROW_LIST)
/NextBSD/contrib/llvm/lib/Target/AMDGPU/
HDR600Instructions.td683 // TODO: Do these actually match the regular fmin/fmax behavior?
/NextBSD/contrib/llvm/lib/Transforms/Utils/
HDSimplifyLibCalls.cpp2114 case LibFunc::fmax: in optimizeCall()

12