Searched refs:copysignf (Results 1 - 8 of 8) sorted by relevance

/fuchsia/zircon/third_party/ulib/musl/src/complex/
H A Dcprojf.c5 return CMPLXF(INFINITY, copysignf(0.0, crealf(z)));
/fuchsia/zircon/third_party/ulib/musl/third_party/complex/
H A Dcsqrtf.c60 return CMPLXF(fabsf(b - b), copysignf(a, b));
62 return CMPLXF(a, copysignf(b - b, b));
79 return CMPLXF(fabsf(b) / (2.0 * t), copysignf(t, b));
H A Dccoshf.c58 return CMPLXF(h * cosf(y), copysignf(h, x) * sinf(y));
62 return CMPLXF(crealf(z), cimagf(z) * copysignf(1, x));
71 return CMPLXF(y - y, copysignf(0, x * (y - y)));
75 return CMPLXF(x * x, copysignf(0, x) * y);
76 return CMPLXF(x * x, copysignf(0, (x + x) * y));
H A Dcsinhf.c58 return CMPLXF(copysignf(h, x) * cosf(y), h * sinf(y));
62 return CMPLXF(crealf(z) * copysignf(1, x), cimagf(z));
71 return CMPLXF(copysignf(0, x * (y - y)), y - y);
76 return CMPLXF(x, copysignf(0, y));
H A Dctanhf.c48 return CMPLXF(x, copysignf(0, isinf(y) ? y : sinf(y) * cosf(y)));
56 return CMPLXF(copysignf(1, x), 4 * sinf(y) * cosf(y) * exp_zx * exp_zx);
/fuchsia/zircon/third_party/ulib/musl/src/math/
H A Dcopysignf.c4 float copysignf(float x, float y) { function
/fuchsia/zircon/third_party/ulib/musl/include/
H A Dmath.h164 float copysignf(float, float);
/fuchsia/zircon/third_party/ulib/musl/
H A Dmusl-rules.mk326 $(LOCAL_DIR)/src/math/copysignf.c \

Completed in 99 milliseconds