HomeSort by: relevance | last modified time | path
    Searched refs:fdim (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/lib/libm/src/
s_fdim.c 47 DECL(double, fdim)
  /src/tests/lib/lua/libm/
h_lualibm.c 49 TEST(fdim(M_PI, M_PI_2));
50 TEST(fdim(M_PI, -M_PI_2));
lualibm.lua 55 test("fdim(M_PI, M_PI_2)", lm.fdim(lm.M_PI, lm.M_PI_2))
56 test("fdim(M_PI, -M_PI_2)", lm.fdim(lm.M_PI, -lm.M_PI_2))
  /src/external/apache2/llvm/dist/clang/lib/Headers/
__clang_cuda_math_forward_declares.h 67 __DEVICE__ double fdim(double, double);
68 __DEVICE__ float fdim(float, float);
219 using ::fdim;
__clang_cuda_cmath.h 259 __CUDA_CLANG_FN_INTEGER_OVERLOAD_2(double, fdim);
386 using ::fdim;
__clang_hip_cmath.h 168 __DEF_FUN2(float, fdim)
443 __HIP_OVERLOAD2(double, fdim)
609 using ::fdim;
tgmath.h 689 // fdim
697 __tg_fdim(double __x, double __y) {return fdim(__x, __y);}
703 #undef fdim macro
704 #define fdim(__x, __y) __tg_fdim(__tg_promote2((__x), (__y))(__x), \ macro
__clang_cuda_math.h 113 __DEVICE__ double fdim(double __a, double __b) { return __nv_fdim(__a, __b); } function
  /src/external/apache2/llvm/dist/clang/lib/Headers/openmp_wrappers/
cmath 51 __DEVICE__ float fdim(float __x, float __y) { return ::fdimf(__x, __y); }
  /src/external/gpl3/gcc/dist/gcc/ginclude/
tgmath.h 88 #define fdim(x,y) __TGMATH_REAL_2(x, y, fdim) macro
  /src/external/gpl3/gcc.old/dist/gcc/ginclude/
tgmath.h 88 #define fdim(x,y) __TGMATH_REAL_2(x, y, fdim) macro
  /src/sys/dev/i2c/
tps65217pmic.c 331 int isel, fdim, brightness; local
348 prop_dictionary_get_int32(dict, "fdim", &fdim);
391 tps65217pmic_wled_init(sc, isel, fdim, brightness);
494 tps65217pmic_wled_init(struct tps65217pmic_softc *sc, int isel, int fdim,
509 switch (fdim) {
525 " fdim %d\n", fdim);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/
tgmath.d 481 alias core.stdc.math.fdim fdim;
483 alias core.stdc.math.fdimf fdim;
485 alias core.stdc.math.fdiml fdim;
971 alias core.stdc.math.fdim fdim;
973 alias core.stdc.math.fdimf fdim;
975 alias core.stdc.math.fdiml fdim;
1488 alias core.stdc.math.fdim fdim;
    [all...]
math.d 2040 double fdim(double x, double y);
2044 extern(D) real fdiml()(real x, real y) { return fdim(cast(double) x, cast(double) y); }
2441 double fdim(double x, double y);
2894 double fdim(double x, double y);
3022 double fdim(double x, double y);
3385 double fdim(double x, double y);
3935 double fdim(double x, double y);
4338 double fdim(double x, double y);
4342 extern(D) real fdiml(real x, real y) { return fdim(cast(double) x, cast(double) y); }
4745 double fdim(double x, double y)
    [all...]
  /src/include/
tgmath.h 157 #define fdim(a,b) __TG_FN2(fdim, (a), (b)) macro
math.h 485 double fdim(double, double);
  /src/lib/lua/libm/
libm.c 125 DFUNC_DBL_DBL(fdim)
261 { "fdim", libm_fdim },
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/
math.h 87 using std::fdim;
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
math.h 56 using std::tr1::fdim;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/
math.h 87 using std::fdim;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
math.h 54 using std::tr1::fdim;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/math/
operations.d 744 * $(TR $(TH x, y) $(TH fdim(x, y)))
749 real fdim(real x, real y) @safe pure nothrow @nogc
759 assert(fdim(2.0, 0.0) == 2.0);
760 assert(fdim(-2.0, 0.0) == 0.0);
761 assert(fdim(real.infinity, 2.0) == real.infinity);
762 assert(isNaN(fdim(real.nan, 2.0)));
763 assert(isNaN(fdim(2.0, real.nan)));
764 assert(isNaN(fdim(real.nan, real.nan)));
  /src/lib/libm/
Makefile 454 tan.3 tanh.3 trunc.3 fmax.3 fdim.3
567 MLINKS+=fdim.3 fdiml.3
568 MLINKS+=fdim.3 fdimf.3
  /src/external/apache2/llvm/dist/libcxx/include/
math.h 188 floating_point fdim (arithmetic x, arithmetic y);
1200 // fdim
1202 inline _LIBCPP_INLINE_VISIBILITY float fdim(float __lcpp_x, float __lcpp_y) _NOEXCEPT {return ::fdimf(__lcpp_x, __lcpp_y);}
1203 inline _LIBCPP_INLINE_VISIBILITY long double fdim(long double __lcpp_x, long double __lcpp_y) _NOEXCEPT {return ::fdiml(__lcpp_x, __lcpp_y);}
1213 fdim(_A1 __lcpp_x, _A2 __lcpp_y) _NOEXCEPT
1218 return ::fdim((__result_type)__lcpp_x, (__result_type)__lcpp_y);
  /src/external/gpl3/gcc/dist/gcc/cp/
cfns.h 337 {"fdim", 99},

Completed in 49 milliseconds

1 2