HomeSort by relevance Sort by last modified time
    Searched full:atan2 (Results 51 - 75 of 687) sorted by null

1 23 4 5 6 7 8 91011>>

  /development/ndk/platforms/android-3/arch-arm/symbols/
libm.so.functions.txt 85 atan2
  /development/ndk/platforms/android-9/arch-mips/symbols/
libm.so.functions.txt 37 atan2
  /development/ndk/platforms/android-9/arch-x86/symbols/
libm.so.functions.txt 38 atan2
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/
UNCOVERED 73 Math.atan2
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayMath.cpp 50 SK_FUNCTION(atan2),
75 (SkFunctionParamType) SkType_Float, // atan2
122 SK_MEMBER_FUNCTION(atan2, Float),
165 case SK_FUNCTION(atan2):
  /external/skia/src/animator/
SkDisplayMath.cpp 50 SK_FUNCTION(atan2),
75 (SkFunctionParamType) SkType_Float, // atan2
122 SK_MEMBER_FUNCTION(atan2, Float),
165 case SK_FUNCTION(atan2):
  /external/stlport/stlport/stl/config/
_como.h 86 # define atan2l atan2
119 # define atan2l atan2
120 # define atan2f atan2
160 # define atan2l atan2
  /hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/
AKFS_Math.h 36 #define AKFS_ATAN2(y, x) atan2((y), (x))
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 86 # define atan2l atan2
119 # define atan2l atan2
120 # define atan2f atan2
160 # define atan2l atan2
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 86 # define atan2l atan2
119 # define atan2l atan2
120 # define atan2f atan2
160 # define atan2l atan2
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 86 # define atan2l atan2
119 # define atan2l atan2
120 # define atan2f atan2
160 # define atan2l atan2
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 86 # define atan2l atan2
119 # define atan2l atan2
120 # define atan2f atan2
160 # define atan2l atan2
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 86 # define atan2l atan2
119 # define atan2l atan2
120 # define atan2f atan2
160 # define atan2l atan2
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/
_como.h 86 # define atan2l atan2
119 # define atan2l atan2
120 # define atan2f atan2
160 # define atan2l atan2
  /libcore/luni/src/main/native/
java_lang_Math.cpp 75 return atan2(a, b);
127 NATIVE_METHOD(Math, atan2, "!(DD)D"),
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cmath 49 using ::atan2;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cmath 49 using ::atan2;
  /external/stlport/src/
complex.cpp 56 { return ::atan2(__z._M_im, __z._M_re); }
60 { return ::atan2(__z._M_im, __z._M_re); }
65 { return ::atan2(__z._M_im, __z._M_re); }
224 r._M_im = ::atan2(z._M_im, z._M_re) * ln10_inv;
255 r._M_im = ::atan2(z._M_im, z._M_re);
294 _Tp logi = ::atan2(a._M_im, a._M_re);
304 _Tp logi = ::atan2(a._M_im, a._M_re);
  /ndk/sources/cxx-stl/stlport/src/
complex.cpp 56 { return ::atan2(__z._M_im, __z._M_re); }
60 { return ::atan2(__z._M_im, __z._M_re); }
65 { return ::atan2(__z._M_im, __z._M_re); }
224 r._M_im = ::atan2(z._M_im, z._M_re) * ln10_inv;
255 r._M_im = ::atan2(z._M_im, z._M_re);
294 _Tp logi = ::atan2(a._M_im, a._M_re);
304 _Tp logi = ::atan2(a._M_im, a._M_re);
  /libcore/luni/src/main/java/java/lang/
Math.java 158 * <li>{@code atan2((anything), NaN ) = NaN;}</li>
159 * <li>{@code atan2(NaN , (anything) ) = NaN;}</li>
160 * <li>{@code atan2(+0.0, +(anything but NaN)) = +0.0}</li>
161 * <li>{@code atan2(-0.0, +(anything but NaN)) = -0.0}</li>
162 * <li>{@code atan2(+0.0, -(anything but NaN)) = +pi}</li>
163 * <li>{@code atan2(-0.0, -(anything but NaN)) = -pi}</li>
164 * <li>{@code atan2(+(anything but 0 and NaN), 0) = +pi/2}</li>
165 * <li>{@code atan2(-(anything but 0 and NaN), 0) = -pi/2}</li>
166 * <li>{@code atan2(+(anything but infinity and NaN), +infinity)} {@code =}
168 * <li>{@code atan2(-(anything but infinity and NaN), +infinity)} {@code =
188 public static native double atan2(double y, double x); method in class:Math
    [all...]
StrictMath.java 165 * <li>{@code atan2((anything), NaN ) = NaN;}</li>
166 * <li>{@code atan2(NaN , (anything) ) = NaN;}</li>
167 * <li>{@code atan2(+0.0, +(anything but NaN)) = +0.0}</li>
168 * <li>{@code atan2(-0.0, +(anything but NaN)) = -0.0}</li>
169 * <li>{@code atan2(+0.0, -(anything but NaN)) = +pi}</li>
170 * <li>{@code atan2(-0.0, -(anything but NaN)) = -pi}</li>
171 * <li>{@code atan2(+(anything but 0 and NaN), 0) = +pi/2}</li>
172 * <li>{@code atan2(-(anything but 0 and NaN), 0) = -pi/2}</li>
173 * <li>{@code atan2(+(anything but infinity and NaN), +infinity)} {@code =}
175 * <li>{@code atan2(-(anything but infinity and NaN), +infinity)} {@code =
195 public static native double atan2(double y, double x); method in class:StrictMath
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
cmath 57 #undef atan2
153 using ::atan2;
156 atan2(float __y, float __x)
160 atan2(long double __y, long double __x)
169 atan2(_Tp __y, _Up __x)
172 return atan2(__type(__y), __type(__x));
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/
cmath 57 #undef atan2
153 using ::atan2;
156 atan2(float __y, float __x)
160 atan2(long double __y, long double __x)
169 atan2(_Tp __y, _Up __x)
172 return atan2(__type(__y), __type(__x));
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/
cmath 57 #undef atan2
153 using ::atan2;
156 atan2(float __y, float __x)
160 atan2(long double __y, long double __x)
169 atan2(_Tp __y, _Up __x)
172 return atan2(__type(__y), __type(__x));
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/
cmath 57 #undef atan2
153 using ::atan2;
156 atan2(float __y, float __x)
160 atan2(long double __y, long double __x)
169 atan2(_Tp __y, _Up __x)
172 return atan2(__type(__y), __type(__x));

Completed in 2115 milliseconds

1 23 4 5 6 7 8 91011>>