Lines Matching refs:cpack
65 return (cpack(cosh(x), x * y)); in ccosh()
67 return (cpack(cosh(x) * cos(y), sinh(x) * sin(y))); in ccosh()
73 return (cpack(h * cos(y), copysign(h, x) * sin(y))); in ccosh()
76 z = __ldexp_cexp(cpack(fabs(x), y), -1); in ccosh()
77 return (cpack(creal(z), cimag(z) * copysign(1, x))); in ccosh()
81 return (cpack(h * h * cos(y), h * sin(y))); in ccosh()
95 return (cpack(y - y, copysign(0, x * (y - y)))); in ccosh()
105 return (cpack(x * x, copysign(0, x) * y)); in ccosh()
106 return (cpack(x * x, copysign(0, (x + x) * y))); in ccosh()
118 return (cpack(y - y, x * (y - y))); in ccosh()
131 return (cpack(x * x, x * (y - y))); in ccosh()
132 return (cpack((x * x) * cos(y), x * sin(y))); in ccosh()
146 return (cpack((x * x) * (y - y), (x + x) * (y - y))); in ccosh()
154 return (ccosh(cpack(-cimag(z), creal(z)))); in ccos()