Symbol: atan2f
lib/msun/src/catrigf.c
187
ry = atan2f(new_y, sqrt_A2my2);
lib/msun/src/catrigf.c
249
rx = atan2f(sqrt_A2mx2, new_x);
lib/msun/src/catrigf.c
251
rx = atan2f(sqrt_A2mx2, -new_x);
lib/msun/src/catrigf.c
294
atan2f(y, x)));
lib/msun/src/catrigf.c
297
return (CMPLXF(logf(hypotf(x, y)), atan2f(y, x)));
lib/msun/src/catrigf.c
299
return (CMPLXF(logf(ax * ax + ay * ay) / 2, atan2f(y, x)));
lib/msun/src/catrigf.c
377
ry = atan2f(2, -ay) / 2;
lib/msun/src/catrigf.c
379
ry = atan2f(2 * ay, (1 - ax) * (1 + ax)) / 2;
lib/msun/src/catrigf.c
381
ry = atan2f(2 * ay, (1 - ax) * (1 + ax) - ay * ay) / 2;
lib/msun/src/math.h
350
float atan2f(float, float);
lib/msun/src/s_cargf.c
36
return (atan2f(cimagf(z), crealf(z)));
lib/msun/src/s_clogf.c
52
v = atan2f(y, x);
lib/msun/tests/invtrig_test.c
173
test2(atan2f, 0.0, ldexpf(z, e), 0.0, 0);
lib/msun/tests/invtrig_test.c
174
test2(atan2f, -0.0, ldexpf(z, e), -0.0, 0);
lib/msun/tests/invtrig_test.c
175
test2(atan2f, 0.0, ldexpf(-z, e), (float)pi, FE_INEXACT);
lib/msun/tests/invtrig_test.c
176
test2(atan2f, -0.0, ldexpf(-z, e), (float)-pi, FE_INEXACT);
lib/msun/tests/invtrig_test.c
177
test2(atan2f, ldexpf(z, e), 0.0, (float)pi / 2, FE_INEXACT);
lib/msun/tests/invtrig_test.c
178
test2(atan2f, ldexpf(z, e), -0.0, (float)pi / 2, FE_INEXACT);
lib/msun/tests/invtrig_test.c
179
test2(atan2f, ldexpf(-z, e), 0.0, (float)-pi / 2, FE_INEXACT);
lib/msun/tests/invtrig_test.c
180
test2(atan2f, ldexpf(-z, e), -0.0, (float)-pi / 2, FE_INEXACT);
lib/msun/tests/invtrig_test.c
205
test2(atan2f, ldexpf(z, e), INFINITY, 0.0, 0);
lib/msun/tests/invtrig_test.c
206
test2(atan2f, ldexpf(-z,e), INFINITY, -0.0, 0);
lib/msun/tests/invtrig_test.c
207
test2(atan2f, ldexpf(z, e), -INFINITY, (float)pi, FE_INEXACT);
lib/msun/tests/invtrig_test.c
208
test2(atan2f, ldexpf(-z,e), -INFINITY, (float)-pi, FE_INEXACT);
lib/msun/tests/invtrig_test.c
209
test2(atan2f, INFINITY, ldexpf(z,e), (float)pi/2, FE_INEXACT);
lib/msun/tests/invtrig_test.c
210
test2(atan2f, INFINITY, ldexpf(-z,e), (float)pi/2, FE_INEXACT);
lib/msun/tests/invtrig_test.c
211
test2(atan2f, -INFINITY, ldexpf(z,e), (float)-pi/2,FE_INEXACT);
lib/msun/tests/invtrig_test.c
212
test2(atan2f, -INFINITY, ldexpf(-z,e),(float)-pi/2,FE_INEXACT);
lib/msun/tests/invtrig_test.c
322
test2(atan2f, 0x1.0p-100, 0x1.0p100, 0.0, FE_INEXACT | FE_UNDERFLOW);
lib/msun/tests/invtrig_test.c
326
test2(atan2f, -0x1.0p-100, 0x1.0p100, -0.0, FE_INEXACT | FE_UNDERFLOW);
lib/msun/tests/invtrig_test.c
330
test2(atan2f, 0x1.0p-100, -0x1.0p100, (float)pi, FE_INEXACT);
lib/msun/tests/invtrig_test.c
334
test2(atan2f, -0x1.0p-100, -0x1.0p100, (float)-pi, FE_INEXACT);
lib/msun/tests/invtrig_test.c
352
test2(atan2f, 0x1.0p100, 0x1.0p-100, (float)pi / 2, FE_INEXACT);
lib/msun/tests/invtrig_test.c
356
test2(atan2f, -0x1.0p100, 0x1.0p-100, (float)-pi / 2, FE_INEXACT);
lib/msun/tests/invtrig_test.c
361
test2(atan2f, 0x1.0p100, -0x1.0p-100, (float)pi / 2, FE_INEXACT);
lib/msun/tests/invtrig_test.c
365
test2(atan2f, -0x1.0p100, -0x1.0p-100, (float)-pi / 2, FE_INEXACT);