Home
last modified time | relevance | path

Searched refs:modf (Results 1 – 25 of 295) sorted by relevance

12345678910>>...12

/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/c/
H A Dcmath56 #undef modf
93 modf(float __x, float* __iptr) { return modff(__x, __iptr); }
96 modf(float __x, float* __iptr)
99 double __res = modf(static_cast<double>(__x), &__tmp);
107 modf(long double __x, long double* __iptr) { return modfl(__x, __iptr); }
110 modf(long double __x, long double* __iptr)
113 double __res = modf(static_cast<double>(__x), &__tmp);
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c/
H A Dcmath56 #undef modf
93 modf(float __x, float* __iptr) { return modff(__x, __iptr); }
96 modf(float __x, float* __iptr)
99 double __res = modf(static_cast<double>(__x), &__tmp);
107 modf(long double __x, long double* __iptr) { return modfl(__x, __iptr); }
110 modf(long double __x, long double* __iptr)
113 double __res = modf(static_cast<double>(__x), &__tmp);
/netbsd-src/tests/lib/libm/
H A Dt_modf.c170 ATF_TC(modf);
171 ATF_TC_HEAD(modf, tc) in ATF_TC_HEAD() argument
175 ATF_TC_BODY(modf, tc) in ATF_TC_BODY() argument
183 f = modf(x, &i); in ATF_TC_BODY()
197 f = modf(-x, &i); in ATF_TC_BODY()
216 f = modf(x, &i); in ATF_TC_BODY()
230 f = modf(-x, &i); in ATF_TC_BODY()
249 f = modf(x, &i); in ATF_TC_BODY()
258 f = modf(x, &i); in ATF_TC_BODY()
272 f = modf(x, &i); in ATF_TC_BODY()
[all …]
/netbsd-src/lib/libm/src/
H A Ds_modf.c34 __strong_alias(_modfl, modf) in __strong_alias() argument
35 __weak_alias(modfl, modf) in __strong_alias()
39 modf(double x, double *iptr) in __strong_alias()
/netbsd-src/lib/libc/arch/m68k/hardfloat/
H A Dmodf.S50 ENTRY(modf)
70 END(modf)
H A DMakefile.inc3 SRCS+= modf.S
/netbsd-src/lib/libc/arch/vax/gen/
H A Dmodf.S45 ENTRY(modf, 0)
53 END(modf)
H A DMakefile.inc9 makecontext.c modf.S \
/netbsd-src/external/gpl3/binutils.old/dist/libiberty/config/
H A Dmh-aix5 # in libc.a for use by some libc public functions including modf. The public
7 # uses modf), we add copysign here. Supposedly, this problem is fixed in AIX
/netbsd-src/external/gpl3/gdb/dist/libiberty/config/
H A Dmh-aix5 # in libc.a for use by some libc public functions including modf. The public
7 # uses modf), we add copysign here. Supposedly, this problem is fixed in AIX
/netbsd-src/external/gpl3/gdb.old/dist/libiberty/config/
H A Dmh-aix5 # in libc.a for use by some libc public functions including modf. The public
7 # uses modf), we add copysign here. Supposedly, this problem is fixed in AIX
/netbsd-src/external/gpl3/gcc.old/dist/libiberty/config/
H A Dmh-aix5 # in libc.a for use by some libc public functions including modf. The public
7 # uses modf), we add copysign here. Supposedly, this problem is fixed in AIX
/netbsd-src/external/gpl3/gcc/dist/libiberty/config/
H A Dmh-aix5 # in libc.a for use by some libc public functions including modf. The public
7 # uses modf), we add copysign here. Supposedly, this problem is fixed in AIX
/netbsd-src/external/gpl3/binutils/dist/libiberty/config/
H A Dmh-aix5 # in libc.a for use by some libc public functions including modf. The public
7 # uses modf), we add copysign here. Supposedly, this problem is fixed in AIX
/netbsd-src/lib/libc/arch/mips/gen/
H A Dmodf.S50 LEAF(modf)
75 END(modf)
H A DMakefile.inc4 SRCS+= fabs.S ldexp.S modf.S
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/math/
H A Dremainder.d73 real modf(real x, ref real i) @trusted nothrow @nogc in modf() function
95 frac = modf(3.14159, intpart);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h139 __DEVICE__ double modf(double, double *);
140 __DEVICE__ float modf(float, float *);
252 using ::modf;
H A D__clang_hip_cmath.h99 __DEVICE__ float modf(float __x, float *__iptr) { return ::modff(__x, __iptr); } in modf() function
531 modf(__T __x, double *__exp) {
532 return ::modf((double)__x, __exp);
638 using ::modf;
/netbsd-src/lib/libc/gen/
H A DLint_modf.c12 modf(double value, double *iptr) in modf() function
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dfp-test.cc58 extern double modf (double, double *);
242 d1 = modf (d2, &d3); in main()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dfp-test.c58 extern double modf (double, double *);
242 d1 = modf (d2, &d3); in main()
/netbsd-src/lib/libc/compat/gen/
H A Dcompat_modf_ieee754.c43 modf(double val, double *iptr) in modf() function
/netbsd-src/lib/libc/arch/sparc64/gen/
H A DMakefile.inc3 SRCS+= fabs.S modf.S
/netbsd-src/lib/libc/arch/sparc/gen/
H A DMakefile.inc3 SRCS+= fabs.S modf.S

12345678910>>...12