HomeSort by relevance Sort by last modified time
    Searched defs:atan (Results 1 - 25 of 38) sorted by null

1 2

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_atan.c 16 /* atan(x)
18 * 1. Reduce x to positive by atan(x) = -atan(-x).
23 * [0,7/16] atan(x) = t-t^3*(a1+t^2*(a2+...(a10+t^2*a11)...)
24 * [7/16,11/16] atan(x) = atan(1/2) + atan( (t-0.5)/(1+t/2) )
25 * [11/16.19/16] atan(x) = atan( 1 ) + atan( (t-1)/(1+t)
74 atan(double x) function
    [all...]
  /hardware/invensense/libsensors_iio/software/core/driver/include/
mlmath.h 53 #define atan(x) ml_atan(x) macro
  /hardware/invensense/mlsdk/platform/include/
mlmath.h 65 #define atan(x) ml_atan(x) macro
  /frameworks/base/core/java/android/util/
MathUtils.java 135 public static float atan(float value) { method in class:MathUtils
136 return (float) Math.atan(value);
  /external/jmonkeyengine/engine/src/android/jme3tools/android/
Fixed.java 76 * Reverse atan lookup table.
99 // Calculate a shift used to scale atan lookups
272 public static int atan(int n) { method in class:Fixed
290 public static int atan(int x, int y) { method in class:Fixed
291 int n = atan(div(x, abs(y) + 1)); // kludge to prevent ArithmeticException
  /libcore/luni/src/main/java/java/lang/
Math.java 129 * <li>{@code atan(+0.0) = +0.0}</li>
130 * <li>{@code atan(-0.0) = -0.0}</li>
131 * <li>{@code atan(+infinity) = +pi/2}</li>
132 * <li>{@code atan(-infinity) = -pi/2}</li>
133 * <li>{@code atan(NaN) = NaN}</li>
140 public static native double atan(double d); method in class:Math
175 * the numerator of the value whose atan has to be computed.
177 * the denominator of the value whose atan has to be computed.
    [all...]
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...]
  /external/valgrind/main/memcheck/tests/
vcpu_fbench.c 351 #define atan I_atan macro
367 /* Coefficients for ATAN evaluation */
490 /* atan(x) Return arctangent in radians,
493 static double atan(x) function
546 temp = atan(y / x);
  /external/valgrind/main/perf/
fbench.c 347 #define atan I_atan macro
363 /* Coefficients for ATAN evaluation */
486 /* atan(x) Return arctangent in radians,
489 static double atan(x) function
542 temp = atan(y / x);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
tgmath.h 107 #define atan(z) __TGMATH_CPLX(z, atan, catan) macro
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/
tgmath.h 107 #define atan(z) __TGMATH_CPLX(z, atan, catan) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
tgmath.h 118 #define atan(z) __TGMATH_CPLX(z, atan, catan) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
tgmath.h 118 #define atan(z) __TGMATH_CPLX(z, atan, catan) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
tgmath.h 107 #define atan(z) __TGMATH_CPLX(z, atan, catan) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/
tgmath.h 107 #define atan(z) __TGMATH_CPLX(z, atan, catan) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
tgmath.h 252 #define atan(Val) __TGMATH_UNARY_REAL_IMAG (Val, atan, catan) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/
tgmath.h 261 #define atan(Val) __TGMATH_UNARY_REAL_IMAG (Val, atan, catan) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
tgmath.h 252 #define atan(Val) __TGMATH_UNARY_REAL_IMAG (Val, atan, catan) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/
tgmath.h 261 #define atan(Val) __TGMATH_UNARY_REAL_IMAG (Val, atan, catan) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
tgmath.h 252 #define atan(Val) __TGMATH_UNARY_REAL_IMAG (Val, atan, catan) macro
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java 457 * @return fValue's atan
458 * @see java.lang.Math#atan(double)
460 public static float atan(float fValue) { method in class:FastMath
461 return (float) Math.atan(fValue);
828 store.y = FastMath.atan(cartCoords.z / x);
864 store.z = FastMath.atan(cartCoords.z / x);
    [all...]
  /external/clang/lib/Headers/
tgmath.h 121 // atan
129 __tg_atan(double __x) {return atan(__x);}
147 #undef atan macro
148 #define atan(__x) __tg_atan(__tg_promote1((__x))(__x)) macro
  /prebuilts/sdk/renderscript/clang-include/
tgmath.h 121 // atan
129 __tg_atan(double __x) {return atan(__x);}
147 #undef atan macro
148 #define atan(__x) __tg_atan(__tg_promote1((__x))(__x)) macro
  /external/eigen/unsupported/test/mpreal/
mpreal.h 349 friend const mpreal atan (const mpreal& v, mp_rnd_t rnd_mode = mpreal::default_rnd);
1829 inline const mpreal atan (const mpreal& v, mp_rnd_t rnd_mode) function in namespace:mpfr
    [all...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 94 /// double atan(double x);
95 atan, enumerator in enum:llvm::LibFunc::Func

Completed in 1196 milliseconds

1 2