HomeSort by relevance Sort by last modified time
    Searched full:acos (Results 1 - 25 of 701) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/src/android/renderscript/cts/
acos_f32.rs 5 *out = acos(*in);
9 *out = acos(*in);
13 *out = acos(*in);
17 *out = acos(*in);
  /external/eigen/doc/snippets/
Cwise_acos.cpp 2 cout << v.acos() << endl;
  /external/eigen/unsupported/doc/examples/
MatrixExponential.cpp 8 const double pi = std::acos(-1.0);
MatrixFunction.cpp 13 const double pi = std::acos(-1.0);
MatrixSquareRoot.cpp 8 const double pi = std::acos(-1.0);
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_acos.c 19 * acos(x) = pi/2 - asin(x)
20 * acos(-x) = pi/2 + asin(x)
22 * acos(x) = pi/2 - (x + x*x^2*R(x^2)) (see asin.c)
24 * acos(x) = pi/2 - (pi/2 - 2asin(sqrt((1-x)/2)))
31 * acos(x) = pi - 2asin(sqrt((1-|x|)/2))
75 if(hx>0) return 0.0; /* acos(1) = 0 */
76 else return pi+2.0*pio2_lo; /* acos(-1)= pi */
78 return (x-x)/(x-x); /* acos(|x|>1) is NaN */
110 __weak_reference(acos, acosl);
e_acosf.c 43 if(hx>0) return 0.0; /* acos(1) = 0 */
44 else return pi+(float)2.0*pio2_lo; /* acos(-1)= pi */
46 return (x-x)/(x-x); /* acos(|x|>1) is NaN */
e_acosl.c 54 if (expsign>0) return 0.0; /* acos(1) = 0 */
55 else return pi+2.0*pio2_lo; /* acos(-1)= pi */
57 return (x-x)/(x-x); /* acos(|x|>1) is NaN */
  /external/chromium_org/third_party/mesa/src/src/glsl/builtins/ir/
acos.ir 1 ((function acos
  /external/mesa3d/src/glsl/builtins/ir/
acos.ir 1 ((function acos
  /external/fdlibm/
w_acos.c 22 double ieee_acos(double x) /* wrapper acos */
24 double ieee_acos(x) /* wrapper acos */
e_acos.c 16 * acos(x) = pi/2 - ieee_asin(x)
17 * acos(-x) = pi/2 + ieee_asin(x)
19 * acos(x) = pi/2 - (x + x*x^2*R(x^2)) (see asin.c)
21 * acos(x) = pi/2 - (pi/2 - 2asin(ieee_sqrt((1-x)/2)))
28 * acos(x) = pi - 2asin(ieee_sqrt((1-|x|)/2))
  /external/chromium_org/third_party/libjingle/source/talk/base/
latebindingsymboltable_unittest.cc 41 X(acos) \
59 EXPECT_EQ(table.acos()(0.5), acos(0.5));
  /external/stlport/test/unit/
valarray_test.cpp 39 tmp = acos(darray);
65 tmp = acos(farray);
92 tmp = acos(ldarray);
  /ndk/tests/device/test-gnustl-full/unit/
valarray_test.cpp 39 tmp = acos(darray);
65 tmp = acos(farray);
92 tmp = acos(ldarray);
  /ndk/tests/device/test-stlport/unit/
valarray_test.cpp 39 tmp = acos(darray);
65 tmp = acos(farray);
92 tmp = acos(ldarray);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
cmath_testcases.txt 58 -- acos: Inverse cosine --
62 acos0000 acos 0.0 0.0 -> 1.5707963267948966 -0.0
63 acos0001 acos 0.0 -0.0 -> 1.5707963267948966 0.0
64 acos0002 acos -0.0 0.0 -> 1.5707963267948966 -0.0
65 acos0003 acos -0.0 -0.0 -> 1.5707963267948966 0.0
68 acos0010 acos 1.0 0.0 -> 0.0 -0.0
69 acos0011 acos 1.0 -0.0 -> 0.0 0.0
70 acos0012 acos -1.0 0.0 -> 3.1415926535897931 -0.0
71 acos0013 acos -1.0 -0.0 -> 3.1415926535897931 0.0
74 acos0020 acos -9.8813129168249309e-324 0.0 -> 1.5707963267948966 -0.
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
cmath_testcases.txt 58 -- acos: Inverse cosine --
62 acos0000 acos 0.0 0.0 -> 1.5707963267948966 -0.0
63 acos0001 acos 0.0 -0.0 -> 1.5707963267948966 0.0
64 acos0002 acos -0.0 0.0 -> 1.5707963267948966 -0.0
65 acos0003 acos -0.0 -0.0 -> 1.5707963267948966 0.0
68 acos0010 acos 1.0 0.0 -> 0.0 -0.0
69 acos0011 acos 1.0 -0.0 -> 0.0 0.0
70 acos0012 acos -1.0 0.0 -> 3.1415926535897931 -0.0
71 acos0013 acos -1.0 -0.0 -> 3.1415926535897931 0.0
74 acos0020 acos -9.8813129168249309e-324 0.0 -> 1.5707963267948966 -0.
    [all...]
  /external/chromium_org/v8/test/mjsunit/
transcendentals.js 44 assertTrue(Math.acos(x) != Math.acos(y));
  /external/chromium_org/v8/test/webkit/
math-expected.txt 40 PASS Math.acos(NaN) is NaN
41 PASS Math.acos(-0) is Math.acos(0)
42 PASS Math.acos(1) is 0
43 PASS Math.acos(1.1) is NaN
44 PASS Math.acos(-1.1) is NaN
45 PASS Math.acos(Infinity) is NaN
46 PASS Math.acos(-Infinity) is NaN
  /external/v8/test/mjsunit/
transcendentals.js 44 assertTrue(Math.acos(x) != Math.acos(y));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.transcend/
acos_valarray.pass.cpp 16 // acos(const valarray<T>& x);
46 std::valarray<T> v3 = acos(v1);
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/lib/
libm.so 
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/lib/
libm.so 
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/lib/
libm.so 

Completed in 618 milliseconds

1 2 3 4 5 6 7 8 91011>>