Home | History | Annotate | Download | only in runtime

Lines Matching refs:copysign

386 extern float __attribute__((overloadable)) copysign(float, float);
387 FN_FUNC_FN_FN(copysign)
518 * the selection of a correct sign incorrect. We correct this. Use copysign
521 float sign = (p & 0x1) ? copysign(1.f, v) : 1.f;
523 return copysign(f, sign);
557 return copysign(posinf(), v);
563 return copysign(0.f, v);