OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:atan2f
(Results
1 - 25
of
450
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/device/google/contexthub/lib/libm/
wf_atan2.c
18
* wrapper
atan2f
(y,x)
25
float
atan2f
(float y, float x) /* wrapper
atan2f
*/
function
27
float
atan2f
(y,x) /* wrapper atan2 */
43
return (double)
atan2f
((float) y, (float) x);
/device/google/contexthub/firmware/inc/cpu/cortexm4f/
nanohub_math.h
41
float
atan2f
(float, float);
45
return
atan2f
(x, sqrtf(1.0f - x * x));
/development/ndk/platforms/android-13/arch-arm/symbols/
libm.so.functions.txt
14
atan2f
/development/ndk/platforms/android-13/arch-mips/symbols/
libm.so.functions.txt
14
atan2f
/development/ndk/platforms/android-3/arch-arm/symbols/
libm.so.functions.txt
14
atan2f
/development/ndk/platforms/android-9/arch-arm/symbols/
libm.so.functions.txt
14
atan2f
/development/ndk/platforms/android-9/arch-mips/symbols/
libm.so.functions.txt
14
atan2f
/bionic/libm/upstream-freebsd/lib/msun/src/
catrigf.c
188
ry =
atan2f
(new_y, sqrt_A2my2);
250
rx =
atan2f
(sqrt_A2mx2, new_x);
252
rx =
atan2f
(sqrt_A2mx2, -new_x);
295
atan2f
(y, x)));
298
return (CMPLXF(logf(hypotf(x, y)),
atan2f
(y, x)));
300
return (CMPLXF(logf(ax * ax + ay * ay) / 2,
atan2f
(y, x)));
378
ry =
atan2f
(2, -ay) / 2;
380
ry =
atan2f
(2 * ay, (1 - ax) * (1 + ax)) / 2;
382
ry =
atan2f
(2 * ay, (1 - ax) * (1 + ax) - ay * ay) / 2;
/prebuilts/ndk/current/platforms/android-12/arch-arm/usr/lib/
libm.so
/prebuilts/ndk/current/platforms/android-12/arch-mips/usr/lib/
libm.so
/prebuilts/ndk/current/platforms/android-12/arch-mips/usr/libr2/
libm.so
/prebuilts/ndk/current/platforms/android-12/arch-mips/usr/libr6/
libm.so
/prebuilts/ndk/current/platforms/android-12/arch-x86/usr/lib/
libm.so
/prebuilts/ndk/current/platforms/android-13/arch-arm/usr/lib/
libm.so
/prebuilts/ndk/current/platforms/android-13/arch-mips/usr/lib/
libm.so
/prebuilts/ndk/current/platforms/android-13/arch-mips/usr/libr2/
libm.so
/prebuilts/ndk/current/platforms/android-13/arch-mips/usr/libr6/
libm.so
/prebuilts/ndk/current/platforms/android-13/arch-x86/usr/lib/
libm.so
/prebuilts/ndk/current/platforms/android-14/arch-arm/usr/lib/
libm.so
/prebuilts/ndk/current/platforms/android-14/arch-mips/usr/lib/
libm.so
/prebuilts/ndk/current/platforms/android-14/arch-mips/usr/libr2/
libm.so
/prebuilts/ndk/current/platforms/android-14/arch-mips/usr/libr6/
libm.so
/prebuilts/ndk/current/platforms/android-14/arch-x86/usr/lib/
libm.so
/prebuilts/ndk/current/platforms/android-15/arch-arm/usr/lib/
libm.so
/prebuilts/ndk/current/platforms/android-15/arch-mips/usr/lib/
libm.so
Completed in 778 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>