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

12

/freebsd-9.3-release/contrib/libstdc++/libmath/
H A Dcopysignf.c38 return copysign (x, y);
/freebsd-9.3-release/lib/msun/i387/
H A Ds_copysign.S39 ENTRY(copysign) function
48 END(copysign)
/freebsd-9.3-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 (cpack(INFINITY, copysign(0.0, cimag(z))));
H A Ds_csqrt.c76 return (cpack(fabs(b - b), copysign(a, b)));
78 return (cpack(a, copysign(b - b, b)));
100 result = cpack(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_scalbnl.c64 return huge*copysign(huge,x); /*overflow*/
65 else return tiny*copysign(tiny,x); /*underflow*/
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.h268 double copysign(double, double) __pure2;
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dcopysign.c135 copysign (double x, double y) function
147 copysign (double x, double y) function
H A DMakefile.in189 ./calloc.o ./clock.o ./copysign.o \
597 ./copysign.o: $(srcdir)/copysign.c $(INCDIR)/ansidecl.h
599 $(COMPILE.c) $(PICFLAG) $(srcdir)/copysign.c -o pic/$@; \
601 $(COMPILE.c) $(srcdir)/copysign.c $(OUTPUT_OPTION)
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dcopysign.c135 copysign (double x, double y) function
147 copysign (double x, double y) function
/freebsd-9.3-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-9.3-release/tools/regression/lib/msun/
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)
H A Dtest-fenv.c531 if (copysign(1.0, d) < 0.0)
/freebsd-9.3-release/contrib/libstdc++/include/tr1/
H A Dmath.h50 using std::tr1::copysign;
/freebsd-9.3-release/lib/msun/
H A DSymbol.map76 copysign;
H A DMakefile130 cimag.3 copysign.3 cos.3 cosh.3 csqrt.3 erf.3 exp.3 fabs.3 fdim.3 \
153 MLINKS+=copysign.3 copysignf.3 copysign.3 copysignl.3
/freebsd-9.3-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-9.3-release/include/
H A Dtgmath.h165 #define copysign(x, y) __tg_simple2(x, y, copysign) macro
/freebsd-9.3-release/gnu/lib/libstdc++/
H A Dconfig.h42 /* Define to 1 if you have the `copysign' function. */
836 # define copysign _copysign macro
/freebsd-9.3-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp263 case Intrinsic::copysign:
298 case LibFunc::copysign:
/freebsd-9.3-release/tools/regression/include/tgmath/
H A Dtgmath.c107 TGMACRO_REAL_REAL(copysign)
487 PRINT("copysign",
488 PASS_REAL_REAL_ARG_REAL_RET(copysign));
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Headers/
H A Dtgmath.h610 // copysign
618 __tg_copysign(double __x, double __y) {return copysign(__x, __y);}
624 #undef copysign macro
625 #define copysign(__x, __y) __tg_copysign(__tg_promote2((__x), (__y))(__x), \ macro
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DBasicTargetTransformInfo.cpp457 case Intrinsic::copysign: ISD = ISD::FCOPYSIGN; break;

Completed in 893 milliseconds

12