Searched refs:copysign (Results 1 - 25 of 36) sorted by relevance

12

/freebsd-10.2-release/contrib/libstdc++/libmath/
H A Dcopysignf.c38 return copysign (x, y);
/freebsd-10.2-release/lib/msun/i387/
H A Ds_copysign.S39 ENTRY(copysign)
48 END(copysign)
/freebsd-10.2-release/lib/msun/src/
H A Ds_copysign.c17 * copysign(double x, double y)
18 * copysign(x,y) returns a value with the magnitude of x and
26 copysign(double x, double y) function
H A Ds_cproj.c42 return (CMPLX(INFINITY, copysign(0.0, cimag(z))));
H A Ds_ccosh.c75 return (CMPLX(h * cos(y), copysign(h, x) * sin(y)));
79 return (CMPLX(creal(z), cimag(z) * copysign(1, x)));
98 return (CMPLX(y - y, x * copysign(0, y)));
108 return (CMPLX(x * x, copysign(0, x) * y));
H A Ds_csqrt.c76 return (CMPLX(fabs(b - b), copysign(a, b)));
78 return (CMPLX(a, copysign(b - b, b)));
100 result = CMPLX(fabs(b) / (2 * t), copysign(t, b));
H A Ds_scalbn.c51 if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */
56 return huge*copysign(huge,x); /*overflow*/
57 else return tiny*copysign(tiny,x); /*underflow*/
H A Ds_ctanh.c107 SET_HIGH_WORD(x, hx - 0x40000000); /* x = copysign(1, x) */
108 return (CMPLX(x, copysign(0, isinf(y) ? y : sin(y) * cos(y))));
125 return (CMPLX(copysign(1, x),
H A Ds_scalbnl.c64 return huge*copysign(huge,x); /*overflow*/
65 else return tiny*copysign(tiny,x); /*underflow*/
H A Dcatrig.c310 return (CMPLX(copysign(creal(w), x), copysign(cimag(w), y)));
328 return (CMPLX(copysign(rx, x), copysign(ry, y)));
448 return (CMPLX(fabs(ry), copysign(rx, cimag(z))));
587 return (CMPLX(copysign(0, x), y + y));
590 return (CMPLX(copysign(0, x),
591 copysign(pio2_hi + pio2_lo, y)));
602 copysign(pio2_hi + pio2_lo, y)));
626 return (CMPLX(copysign(r
[all...]
H A Ds_csinh.c75 return (CMPLX(copysign(h, x) * cos(y), h * sin(y)));
79 return (CMPLX(creal(z) * copysign(1, x), cimag(z)));
H A Ds_fma.c84 /* hibits += (int)copysign(1.0, sum.hi * sum.lo) */
121 /* hibits += (int)copysign(1.0, sum.hi * sum.lo) */
238 zs = copysign(DBL_MIN, zs);
H A Dmath.h311 double copysign(double, double) __pure2;
/freebsd-10.2-release/contrib/gcclibs/libiberty/
H A Dcopysign.c135 copysign (double x, double y) function
147 copysign (double x, double y) function
/freebsd-10.2-release/contrib/binutils/libiberty/
H A Dcopysign.c135 copysign (double x, double y) function
147 copysign (double x, double y) function
/freebsd-10.2-release/lib/msun/bsdsrc/
H A Db_exp.c47 * copysign(x,y)
103 k=invln2*x+copysign(0.5,x); /* k=NINT(x/ln2) */
148 k = z + copysign(.5, x);
/freebsd-10.2-release/tools/regression/lib/msun/
H A Dtest-ctrig.c308 copysign(0, cos(nums[i]))), DBL_ULP());
310 -copysign(0, sin(nums[i]))), DBL_ULP());
321 copysign(0, cosf(nums[i]))), FLT_ULP());
323 -copysign(0, sinf(nums[i]))), 2 * FLT_ULP());
328 test_odd_tol(csinh, z, CMPLXL(copysign(0, cos(nums[i])),
331 copysign(0, sin(nums[i]))), DBL_ULP());
337 test_odd_tol(csinhf, z, CMPLXL(copysign(0, cosf(nums[i])),
340 copysign(0, sinf(nums[i]))), FLT_ULP());
H A Dtest-next.c100 test##prec(copysign##prec(1.0, nextafter##prec(0.0, -0.0)), -1.0, 0); \
101 test##prec(copysign##prec(1.0, nextafter##prec(-0.0, 0.0)), 1.0, 0); \
102 test##prec(copysign##prec(1.0, nexttoward##prec(0.0, -0.0)), -1.0, 0);\
103 test##prec(copysign##prec(1.0, nexttoward##prec(-0.0, 0.0)), 1.0, 0)
/freebsd-10.2-release/contrib/libstdc++/include/tr1/
H A Dmath.h50 using std::tr1::copysign;
/freebsd-10.2-release/contrib/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h170 /// double copysign(double x, double y);
171 copysign, enumerator in enum:llvm::LibFunc::Func
699 case LibFunc::copysign: case LibFunc::copysignf: case LibFunc::copysignl:
/freebsd-10.2-release/lib/msun/
H A DMakefile135 cimag.3 copysign.3 cos.3 cosh.3 csqrt.3 erf.3 exp.3 fabs.3 fdim.3 \
164 MLINKS+=copysign.3 copysignf.3 copysign.3 copysignl.3
/freebsd-10.2-release/include/
H A Dtgmath.h166 #define copysign(x, y) __tg_simple2(x, y, copysign) macro
/freebsd-10.2-release/gnu/lib/libstdc++/
H A Dconfig.h42 /* Define to 1 if you have the `copysign' function. */
836 # define copysign _copysign macro
/freebsd-10.2-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp263 case Intrinsic::copysign:
298 case LibFunc::copysign:
/freebsd-10.2-release/tools/regression/include/tgmath/
H A Dtgmath.c107 TGMACRO_REAL_REAL(copysign)
487 PRINT("copysign",
488 PASS_REAL_REAL_ARG_REAL_RET(copysign));

Completed in 133 milliseconds

12