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

1 2 3

  /src/lib/libm/src/
s_nearbyint.c 62 DECL(double, nearbyint, rint)
  /src/external/apache2/llvm/dist/clang/lib/Headers/
__clang_cuda_math_forward_declares.h 143 __DEVICE__ double nearbyint(double);
144 __DEVICE__ float nearbyint(float);
255 using ::nearbyint;
__clang_cuda_cmath.h 287 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, nearbyint);
415 using ::nearbyint;
__clang_hip_cmath.h 186 __DEF_FUN1(float, nearbyint)
473 __HIP_OVERLOAD1(double, nearbyint)
642 using ::nearbyint;
tgmath.h 1023 // nearbyint
1031 __tg_nearbyint(double __x) {return nearbyint(__x);}
1037 #undef nearbyint macro
1038 #define nearbyint(__x) __tg_nearbyint(__tg_promote1((__x))(__x)) macro
__clang_cuda_math.h 198 __DEVICE__ double nearbyint(double __a) { return __builtin_nearbyint(__a); } function
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/math/
rounding.d 439 * Unlike the rint functions, nearbyint does not raise the
443 real nearbyint(real x) @safe pure nothrow @nogc
453 assert(nearbyint(0.4) == 0);
454 assert(nearbyint(0.5) == 0);
455 assert(nearbyint(0.6) == 1);
456 assert(nearbyint(100.0) == 100);
458 assert(isNaN(nearbyint(real.nan)));
459 assert(nearbyint(real.infinity) == real.infinity);
460 assert(nearbyint(-real.infinity) == -real.infinity);
470 * $(LREF nearbyint) performs the same operation, but doe
    [all...]
  /src/external/gpl3/gcc/dist/gcc/ginclude/
tgmath.h 107 #define nearbyint(x) __TGMATH_REAL(x, nearbyint) macro
  /src/external/gpl3/gcc.old/dist/gcc/ginclude/
tgmath.h 107 #define nearbyint(x) __TGMATH_REAL(x, nearbyint) macro
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/
tgmath.d 379 alias core.stdc.math.nearbyint nearbyint;
381 alias core.stdc.math.nearbyintf nearbyint;
383 alias core.stdc.math.nearbyintl nearbyint;
880 alias core.stdc.math.nearbyint nearbyint;
882 alias core.stdc.math.nearbyintf nearbyint;
884 alias core.stdc.math.nearbyintl nearbyint;
1383 alias core.stdc.math.nearbyint nearbyint;
    [all...]
math.d 1935 pure double nearbyint(double x);
1939 extern(D) pure real nearbyintl()(real x) { return nearbyint(cast(double) x); }
2336 pure double nearbyint(double x);
2822 pure double nearbyint(double x);
2994 pure double nearbyint(double x);
3368 pure double nearbyint(double x);
3830 pure double nearbyint(double x);
4233 pure double nearbyint(double x);
4237 extern(D) pure real nearbyintl(real x) { return nearbyint(cast(double) x); }
4640 pure double nearbyint(double x)
    [all...]
  /src/include/
tgmath.h 176 #define nearbyint(a) __TG_FN1(nearbyint, (a)) macro
math.h 463 double nearbyint(double);
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/
math.h 101 using std::nearbyint;
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
math.h 76 using std::tr1::nearbyint;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/
math.h 101 using std::nearbyint;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
math.h 74 using std::tr1::nearbyint;
  /src/tests/lib/libm/
t_fe_round.c 172 "Checking IEEE 754 rounding modes using nearbyint/rint");
178 NEARBYINT,
187 [NEARBYINT] = "nearbyint",
236 case NEARBYINT:
237 received = nearbyint(values[i].input);
  /src/external/apache2/llvm/dist/libcxx/include/
math.h 248 floating_point nearbyint (arithmetic x);
1501 // nearbyint
1503 inline _LIBCPP_INLINE_VISIBILITY float nearbyint(float __lcpp_x) _NOEXCEPT {return ::nearbyintf(__lcpp_x);}
1504 inline _LIBCPP_INLINE_VISIBILITY long double nearbyint(long double __lcpp_x) _NOEXCEPT {return ::nearbyintl(__lcpp_x);}
1509 nearbyint(_A1 __lcpp_x) _NOEXCEPT {return ::nearbyint((double)__lcpp_x);}
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/
simd_math.h 331 const _V __y = nearbyint(__r._M_x * __2_over_pi);
342 _VD __y = nearbyint(__xd * __2_over_pi);
365 const _V __y = nearbyint(__r._M_x / (2 * __pi_over_4));
1281 _GLIBCXX_SIMD_MATH_CALL_(nearbyint)
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/bits/
simd_math.h 331 const _V __y = nearbyint(__r._M_x * __2_over_pi);
342 _VD __y = nearbyint(__xd * __2_over_pi);
365 const _V __y = nearbyint(__r._M_x / (2 * __pi_over_4));
1268 _GLIBCXX_SIMD_MATH_CALL_(nearbyint)
  /src/external/lgpl3/mpfr/dist/tests/
trint.c 378 test_fct (&nearbyint, (F2) &mpfr_rint, "rint", (mpfr_rnd_t) r);
  /src/external/gpl3/gcc.old/dist/gcc/
internal-fn.def 273 DEF_INTERNAL_FLT_FLOATN_FN (NEARBYINT, ECF_CONST, nearbyint, unary)
  /src/external/gpl3/gcc/dist/gcc/
internal-fn.def 392 DEF_INTERNAL_FLT_FLOATN_FN (NEARBYINT, ECF_CONST, nearbyint, unary)
  /src/lib/libm/
Makefile 543 rint.3 nearbyint.3 \

Completed in 41 milliseconds

1 2 3