Lines Matching refs:x
68 __cbrtl (_Float128 x) in __cbrtl() argument
73 if (!isfinite (x)) in __cbrtl()
74 return x + x; in __cbrtl()
76 if (x == 0) in __cbrtl()
77 return (x); in __cbrtl()
79 if (x > 0) in __cbrtl()
84 x = -x; in __cbrtl()
87 z = x; in __cbrtl()
89 x = __frexpl (x, &e); in __cbrtl()
93 x = ((((L(1.3584464340920900529734e-1) * x in __cbrtl()
94 - L(6.3986917220457538402318e-1)) * x in __cbrtl()
95 + L(1.2875551670318751538055e0)) * x in __cbrtl()
96 - L(1.4897083391357284957891e0)) * x in __cbrtl()
97 + L(1.3304961236013647092521e0)) * x + L(3.7568280825958912391243e-1); in __cbrtl()
106 x *= CBRT2; in __cbrtl()
108 x *= CBRT4; in __cbrtl()
117 x *= CBRT2I; in __cbrtl()
119 x *= CBRT4I; in __cbrtl()
124 x = __ldexpl (x, e); in __cbrtl()
127 x -= (x - (z / (x * x))) * L(0.3333333333333333333333333333333333333333); in __cbrtl()
128 x -= (x - (z / (x * x))) * L(0.3333333333333333333333333333333333333333); in __cbrtl()
129 x -= (x - (z / (x * x))) * L(0.3333333333333333333333333333333333333333); in __cbrtl()
132 x = -x; in __cbrtl()
133 return (x); in __cbrtl()