HomeSort by relevance Sort by last modified time
    Searched refs:acos (Results 126 - 150 of 366) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/
math.h 36 using std::tr1::acos;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/
math.h 36 using std::tr1::acos;
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
math.h 36 using std::tr1::acos;
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_math.py 147 self.assertRaises(TypeError, math.acos)
148 self.ftest('acos(-1)', math.acos(-1), math.pi)
149 self.ftest('acos(0)', math.acos(0), math.pi/2)
150 self.ftest('acos(1)', math.acos(1), 0)
151 self.assertRaises(ValueError, math.acos, INF)
152 self.assertRaises(ValueError, math.acos, NINF)
153 self.assertTrue(math.isnan(math.acos(NAN))
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_math.py 147 self.assertRaises(TypeError, math.acos)
148 self.ftest('acos(-1)', math.acos(-1), math.pi)
149 self.ftest('acos(0)', math.acos(0), math.pi/2)
150 self.ftest('acos(1)', math.acos(1), 0)
151 self.assertRaises(ValueError, math.acos, INF)
152 self.assertRaises(ValueError, math.acos, NINF)
153 self.assertTrue(math.isnan(math.acos(NAN))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_math.py 147 self.assertRaises(TypeError, math.acos)
148 self.ftest('acos(-1)', math.acos(-1), math.pi)
149 self.ftest('acos(0)', math.acos(0), math.pi/2)
150 self.ftest('acos(1)', math.acos(1), 0)
151 self.assertRaises(ValueError, math.acos, INF)
152 self.assertRaises(ValueError, math.acos, NINF)
153 self.assertTrue(math.isnan(math.acos(NAN))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_math.py 147 self.assertRaises(TypeError, math.acos)
148 self.ftest('acos(-1)', math.acos(-1), math.pi)
149 self.ftest('acos(0)', math.acos(0), math.pi/2)
150 self.ftest('acos(1)', math.acos(1), 0)
151 self.assertRaises(ValueError, math.acos, INF)
152 self.assertRaises(ValueError, math.acos, NINF)
153 self.assertTrue(math.isnan(math.acos(NAN))
    [all...]
  /external/libcxx/test/std/numerics/c.math/
cmath.pass.cpp 36 Ambiguous acos(Ambiguous){ return Ambiguous(); } function
114 static_assert((std::is_same<decltype(std::acos((float)0)), float>::value), "");
115 static_assert((std::is_same<decltype(std::acos((bool)0)), double>::value), "");
116 static_assert((std::is_same<decltype(std::acos((unsigned short)0)), double>::value), "");
117 static_assert((std::is_same<decltype(std::acos((int)0)), double>::value), "");
118 static_assert((std::is_same<decltype(std::acos((unsigned int)0)), double>::value), "");
119 static_assert((std::is_same<decltype(std::acos((long)0)), double>::value), "");
120 static_assert((std::is_same<decltype(std::acos((unsigned long)0)), double>::value), "");
121 static_assert((std::is_same<decltype(std::acos((long long)0)), double>::value), "");
122 static_assert((std::is_same<decltype(std::acos((unsigned long long)0)), double>::value), "")
    [all...]
  /external/eigen/test/
array.cpp 175 VERIFY_IS_APPROX(m1.acos(), acos(m1));
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CalendarAstronomer.java 734 // double H = Math.acos(-tanL * Math.tan(pos1.declination));
737 // H = Math.acos(-tanL * Math.tan(pos2.declination));
777 // double psi = Math.acos(Math.sin(fLatitude) / Math.cos(dec));
    [all...]
  /external/icu/icu4c/source/i18n/
astro.cpp 793 // double H = ::acos(-tanL * ::tan(pos1.declination));
796 // H = ::acos(-tanL * ::tan(pos2.declination));
836 // double psi = ::acos(sin(fLatitude) / cos(dec));
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CalendarAstronomer.java 732 // double H = Math.acos(-tanL * Math.tan(pos1.declination));
735 // H = Math.acos(-tanL * Math.tan(pos2.declination));
775 // double psi = Math.acos(Math.sin(fLatitude) / Math.cos(dec));
    [all...]
  /external/opencv/cv/src/
cvlinefit.cpp 422 if( fabs(acos(t)) < adelta )
572 if( fabs(acos(t)) < adelta )
  /external/opencv3/modules/features2d/test/
test_rotation_and_scale_invariance.cpp 133 float A0 = 2 * acos(cos_halfA0);
134 float A1 = 2 * acos(cos_halfA1);
  /external/opencv3/modules/imgproc/src/
linefit.cpp 395 if( fabs(acos(t)) < adelta )
530 if( fabs(acos(t)) < adelta )
  /external/opencv3/modules/video/src/
ecc.cpp 302 new_theta += acos(mapPtr[0]);
305 new_theta -= acos(mapPtr[0]);
  /external/opencv3/samples/cpp/
detect_mser.cpp 190 float pi = (float)acos(-1.0);
285 float pi = (float)acos(-1);
  /external/v8/test/mjsunit/
function-names.js 82 "random", "abs", "acos", "asin", "atan", "ceil", "cos", "exp", "floor",
  /external/aac/libSYS/src/
genericStds.cpp 365 double FDKacos(double x) { return acos(x); }
  /external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
Complex.java 457 * <code> acos(z) = -i (log(z + i (sqrt(1 - z<sup>2</sup>))))</code></pre></p>
465 public Complex acos() { method in class:Complex
    [all...]
  /external/eigen/unsupported/test/
FFTW.cpp 33 long double pi = acos((long double)-1 );
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfEnvmap.cpp 59 acos (r / dir.length()) * sign (dir.y):
  /external/pdfium/core/include/fxcrt/
fx_system.h 250 #define FXSYS_acos(a) (FX_FLOAT) acos(a)
  /external/skia/include/core/
SkScalar.h 100 #define SkScalarACos(val) acos(val)
  /frameworks/rs/driver/runtime/
rs_quaternion.c 152 float theta = acos(angle);

Completed in 1728 milliseconds

1 2 3 4 56 7 8 91011>>