/prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/ |
math.h | 205 double atan(double);
|
/prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/ |
math.h | 205 double atan(double);
|
/prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/ |
math.h | 205 double atan(double);
|
/prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/ |
math.h | 205 double atan(double);
|
/prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/ |
math.h | 205 double atan(double);
|
/prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/ |
math.h | 205 double atan(double);
|
/prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/ |
math.h | 205 double atan(double);
|
/prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/ |
math.h | 205 double atan(double);
|
/prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/ |
math.h | 205 double atan(double);
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/ |
math.h | 205 double atan(double);
|
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/ |
math.h | 205 double atan(double);
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/ |
math.h | 40 using std::tr1::atan;
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/ |
math.h | 40 using std::tr1::atan;
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/tr1/ |
math.h | 40 using std::tr1::atan;
|
/external/chromium_org/v8/test/mjsunit/ |
function-names.js | 81 "random", "abs", "acos", "asin", "atan", "ceil", "cos", "exp", "floor",
|
/external/v8/test/mjsunit/ |
function-names.js | 81 "random", "abs", "acos", "asin", "atan", "ceil", "cos", "exp", "floor",
|
/frameworks/base/location/java/android/location/ |
Location.java | 306 double U1 = Math.atan((1.0 - f) * Math.tan(lat1)); 307 double U2 = Math.atan((1.0 - f) * Math.tan(lat2));
|
/bionic/libm/include/ |
math.h | 190 double atan(double);
|
/external/aac/libSYS/src/ |
genericStds.cpp | 354 double FDKatan(double x) { return atan(x); }
|
/external/ceres-solver/internal/ceres/ |
jet_test.cc | 153 { // Check that tan(atan(x)) = x. 154 J z = tan(atan(x));
|
/external/llvm/include/llvm/Target/ |
TargetLibraryInfo.h | 104 /// double atan(double x); 105 atan, enumerator in enum:llvm::LibFunc::Func
|
/libcore/benchmarks/src/benchmarks/regression/ |
MathBenchmark.java | 71 Math.atan(d);
|
StrictMathBenchmark.java | 71 StrictMath.atan(d);
|
/libcore/luni/src/main/java/java/lang/ |
StrictMath.java | 145 * <li>{@code atan(+0.0) = +0.0}</li> 146 * <li>{@code atan(-0.0) = -0.0}</li> 147 * <li>{@code atan(+infinity) = +pi/2}</li> 148 * <li>{@code atan(-infinity) = -pi/2}</li> 149 * <li>{@code atan(NaN) = NaN}</li> 156 public static native double atan(double d); method in class:StrictMath 190 * the numerator of the value whose atan has to be computed. 192 * the denominator of the value whose atan has to be computed. [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/ |
cmath.pass.cpp | 64 static_assert((std::is_same<decltype(std::atan((float)0)), float>::value), ""); 65 static_assert((std::is_same<decltype(std::atan((bool)0)), double>::value), ""); 66 static_assert((std::is_same<decltype(std::atan((unsigned short)0)), double>::value), ""); 67 static_assert((std::is_same<decltype(std::atan((int)0)), double>::value), ""); 68 static_assert((std::is_same<decltype(std::atan((unsigned int)0)), double>::value), ""); 69 static_assert((std::is_same<decltype(std::atan((long)0)), double>::value), ""); 70 static_assert((std::is_same<decltype(std::atan((unsigned long)0)), double>::value), ""); 71 static_assert((std::is_same<decltype(std::atan((long long)0)), double>::value), ""); 72 static_assert((std::is_same<decltype(std::atan((unsigned long long)0)), double>::value), ""); 73 static_assert((std::is_same<decltype(std::atan((double)0)), double>::value), "") [all...] |