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

1 2 3 4 5 6 7 8

  /external/tensorflow/tensorflow/core/kernels/
cwise_op_gpu_acos.cu.cc 22 DEFINE_UNARY2(acos, float, double);
cwise_op_acos.cc 19 REGISTER2(UnaryOp, CPU, "Acos", functor::acos, float, double);
22 REGISTER2(UnaryOp, GPU, "Acos", functor::acos, float, double);
26 REGISTER2(UnaryOp, SYCL, "Acos", functor::acos, float, double);
  /external/eigen/doc/snippets/
Cwise_acos.cpp 2 cout << v.acos() << endl;
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestAcos.rs 24 return acos(inV);
28 return acos(inV);
32 return acos(inV);
36 return acos(inV);
40 return acos(inV);
44 return acos(inV);
48 return acos(inV);
52 return acos(inV);
  /external/ltp/testcases/misc/math/float/
float_trigo.c 29 {FUNC_NORMAL, 50, acos, "acos", "dacos", "racos",
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
w_acos.c 27 acos(double x) /* wrapper acos */ function
36 return __kernel_standard(x,x,1); /* acos(|x|>1) */
  /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);
MatrixPower.cpp 8 const double pi = std::acos(-1.0);
MatrixSquareRoot.cpp 8 const double pi = std::acos(-1.0);
  /external/libcxx/test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/
acos_valarray.pass.cpp 16 // acos(const valarray<T>& x);
47 std::valarray<T> v3 = acos(v1);
  /external/v8/src/base/
ieee754.h 15 V8_BASE_EXPORT double acos(double x);
  /external/crcalc/tests/src/com/hp/creals/
CRTest.java 44 // Added basic asin and acos tests, improved messages,
112 UnaryCRFunction acos = UnaryCRFunction.acosFunction; local
127 check_eq(acos.execute(one.cos()), one, "acos(cos(1) failed");
151 check_appr_eq(Math.acos(0.1*n),
152 CR.valueOf(0.1*n).acos().doubleValue(),
153 "acos failed at " + 0.1*n);
SlowCRTest.java 81 checkApprEq(x.acos().doubleValue(), Math.acos(xAsDouble),
82 "acos float compare:" + xAsDouble);
108 CR tmp = xcos.acos();
113 "acos(cos):" + xAsDouble);
122 "acos(cos):" + xAsDouble);
165 checkEq(ZERO.acos(), CR.PI.divide(TWO), "acos(0)");
166 checkEq(ONE.acos(), ZERO, "acos(1)")
    [all...]
  /external/eigen/demos/opengl/
trackball.cpp 28 float angle = 2. * acos(cos_angle);
gpuhelper.cpp 67 float angle = 180.f/M_PI * acos(tmp.z());
88 float angle = 180.f/M_PI * acos(tmp.z());
  /external/ltp/testcases/misc/math/float/trigo/
genacos.c 54 tabRacos[i] = acos((Inc * i) - 1);
110 ("problem during acos data file creation\n");
118 ("problem during acos result file creation\n");
127 printf("problem during acos data file creation\n");
129 printf("problem during acos result file creation\n");
  /external/clang/lib/Headers/
__clang_cuda_math_forward_declares.h 45 __DEVICE__ double acos(double);
46 __DEVICE__ float acos(float);
188 using ::acos;
  /bionic/libm/x86/
e_acos.S 35 // To compute acos(s), separate schemes are used when s is in different
40 // acos(s)=pi/2-asin(t)-asin(r), where r=s*sqrt(1-t^2)-t*sqrt(1-s^2)
51 // acos(|s|)=asin(t)-asin(r), r=s*t-sqrt(1-s^2)*sqrt(1-t^2)
52 // acos(-|s|)=pi-acos(|s|)
59 // |s|<2^{-4}: acos(s)=pi/2-asin(s)
62 // |s| in [255/256,1): acos(|s|)=2*asin(q), where q=sqrt((1-|s|)/2)
66 // acos(-|s|)=pi-acos(|s|)
71 // acos(NaN) = quiet NaN, and raise invalid exceptio
95 ENTRY(acos) function
    [all...]
  /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);
  /external/tensorflow/tensorflow/tools/compatibility/testdata/
test_file_v1_12.py 32 self.assertAllClose(1.04719755, tf.acos(0.5))
  /art/test/123-inline-execute2/src/
Main.java 34 System.out.println("Math.acos(" + d + ") = "
35 + String.format(Locale.US, "%.12f", Math.acos(d)));
86 System.out.println("StrictMath.acos(" + d + ") = " + StrictMath.acos(d));
  /external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
Rotation.java 571 return 2 * FastMath.acos(-q0);
573 return 2 * FastMath.acos(q0);
736 FastMath.acos(v2.getX()),
754 FastMath.acos(v2.getX()),
772 FastMath.acos(v2.getY()),
    [all...]
  /external/libcxx/test/std/numerics/complex.number/complex.transcendentals/
acos.pass.cpp 14 // acos(const complex<T>& x);
25 assert(acos(c) == x);
41 std::complex<double> r = acos(testcases[i]);
  /external/tensorflow/tensorflow/contrib/labeled_tensor/
__init__.py 67 acos = _core.acos variable

Completed in 782 milliseconds

1 2 3 4 5 6 7 8