HomeSort by relevance Sort by last modified time
    Searched refs:asin (Results 151 - 175 of 266) sorted by null

1 2 3 4 5 67 8 91011

  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/
math.h 204 double asin(double);
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/
math.h 204 double asin(double);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/
math.h 38 using std::tr1::asin;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/
math.h 38 using std::tr1::asin;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/tr1/
math.h 38 using std::tr1::asin;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_math.py 166 self.assertRaises(TypeError, math.asin)
167 self.ftest('asin(-1)', math.asin(-1), -math.pi/2)
168 self.ftest('asin(0)', math.asin(0), 0)
169 self.ftest('asin(1)', math.asin(1), math.pi/2)
170 self.assertRaises(ValueError, math.asin, INF)
171 self.assertRaises(ValueError, math.asin, NINF)
172 self.assertTrue(math.isnan(math.asin(NAN))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_math.py 166 self.assertRaises(TypeError, math.asin)
167 self.ftest('asin(-1)', math.asin(-1), -math.pi/2)
168 self.ftest('asin(0)', math.asin(0), 0)
169 self.ftest('asin(1)', math.asin(1), math.pi/2)
170 self.assertRaises(ValueError, math.asin, INF)
171 self.assertRaises(ValueError, math.asin, NINF)
172 self.assertTrue(math.isnan(math.asin(NAN))
    [all...]
  /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",
  /packages/apps/Browser/src/com/android/browser/view/
PieMenu.java 607 res.x = (float) Math.asin(x / res.y);
609 res.x = (float) (Math.PI - Math.asin(x / res.y ));
  /bionic/libm/include/
math.h 189 double asin(double);
  /external/eigen/Eigen/src/Core/
GenericPacketMath.h 238 Packet pasin(const Packet& a) { return asin(a); }
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 92 /// double asin(double x);
93 asin, enumerator in enum:llvm::LibFunc::Func
  /frameworks/base/policy/src/com/android/internal/policy/impl/
WindowOrientationListener.java 466 Math.asin(z / magnitude) * RADIANS_TO_DEGREES);
    [all...]
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialSelectorView.java 253 double radians = Math.asin(opposite / hypotenuse);
  /libcore/benchmarks/src/benchmarks/regression/
MathBenchmark.java 65 Math.asin(d);
StrictMathBenchmark.java 65 StrictMath.asin(d);
  /libcore/luni/src/main/java/java/lang/
StrictMath.java 128 * <li>{@code asin((anything > 1)) = NaN}</li>
129 * <li>{@code asin((anything < -1)) = NaN}</li>
130 * <li>{@code asin(NaN) = NaN}</li>
137 public static native double asin(double d); method in class:StrictMath
    [all...]
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffScalar.h 607 EIGEN_AUTODIFF_DECLARE_GLOBAL_UNARY(asin,
609 using std::asin;
610 return ReturnType(asin(x.value()),x.derivatives() * (Scalar(1)/sqrt(1-internal::abs2(x.value()))));)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
cmath.pass.cpp 46 static_assert((std::is_same<decltype(std::asin((float)0)), float>::value), "");
47 static_assert((std::is_same<decltype(std::asin((bool)0)), double>::value), "");
48 static_assert((std::is_same<decltype(std::asin((unsigned short)0)), double>::value), "");
49 static_assert((std::is_same<decltype(std::asin((int)0)), double>::value), "");
50 static_assert((std::is_same<decltype(std::asin((unsigned int)0)), double>::value), "");
51 static_assert((std::is_same<decltype(std::asin((long)0)), double>::value), "");
52 static_assert((std::is_same<decltype(std::asin((unsigned long)0)), double>::value), "");
53 static_assert((std::is_same<decltype(std::asin((long long)0)), double>::value), "");
54 static_assert((std::is_same<decltype(std::asin((unsigned long long)0)), double>::value), "");
55 static_assert((std::is_same<decltype(std::asin((double)0)), double>::value), "")
    [all...]
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Blend.cpp     [all...]
  /packages/apps/Camera2/jni/feature_mos/src/mosaic/
Blend.cpp     [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Blend.cpp     [all...]
  /external/clang/lib/Headers/
tgmath.h 92 // asin
100 __tg_asin(double __x) {return asin(__x);}
118 #undef asin macro
119 #define asin(__x) __tg_asin(__tg_promote1((__x))(__x)) macro
  /prebuilts/sdk/renderscript/clang-include/
tgmath.h 92 // asin
100 __tg_asin(double __x) {return asin(__x);}
118 #undef asin macro
119 #define asin(__x) __tg_asin(__tg_promote1((__x))(__x)) macro

Completed in 665 milliseconds

1 2 3 4 5 67 8 91011