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

1 2 3 4 5 6 7 8 91011>>

  /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);
  /prebuilts/go/darwin-x86/src/math/
asin_amd64.s 10 TEXT ·Acos(SB),NOSPLIT,$0
11 JMP ·acos(SB)
asin_arm.s 10 TEXT ·Acos(SB),NOSPLIT,$0
11 B ·acos(SB)
asin.go 47 // Acos returns the arccosine, in radians, of x.
50 // Acos(x) = NaN if x < -1 or x > 1
51 func Acos(x float64) float64
53 func acos(x float64) float64 { func
asin_386.s 19 // func Acos(x float64) float64
20 TEXT ·Acos(SB),NOSPLIT,$0
stubs_arm64.s 12 TEXT ·Acos(SB),NOSPLIT,$0
13 B ·acos(SB)
  /prebuilts/go/linux-x86/src/math/
asin_amd64.s 10 TEXT ·Acos(SB),NOSPLIT,$0
11 JMP ·acos(SB)
asin_arm.s 10 TEXT ·Acos(SB),NOSPLIT,$0
11 B ·acos(SB)
asin.go 47 // Acos returns the arccosine, in radians, of x.
50 // Acos(x) = NaN if x < -1 or x > 1
51 func Acos(x float64) float64
53 func acos(x float64) float64 { func
asin_386.s 19 // func Acos(x float64) float64
20 TEXT ·Acos(SB),NOSPLIT,$0
stubs_arm64.s 12 TEXT ·Acos(SB),NOSPLIT,$0
13 B ·acos(SB)
  /external/clang/test/SemaOpenCL/
builtin.cl 5 float __attribute__((overloadable)) acos(float);
  /external/vulkan-validation-layers/libs/glm/gtx/
vector_angle.inl 21 genType const Angle(acos(clamp(dot(x, y), genType(-1), genType(1))));
40 T const Angle(acos(clamp(dot(x, y), T(-1), T(1))));
63 T const Angle(acos(Dot));
66 T const Angle(degrees(acos(Dot)));
88 T const Angle(acos(Dot));
91 T const Angle(degrees(acos(Dot)));
  /external/eigen/unsupported/doc/examples/
MatrixExponential.cpp 8 const double pi = std::acos(-1.0);
MatrixPower.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);
  /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) */
e_acos.c 2 Compute acos(x) using ieee FP math.
35 * acos(x) = pi/2 - asin(x)
36 * acos(-x) = pi/2 + asin(x)
38 * acos(x) = pi/2 - (x + x*x^2*R(x^2)) (see asin.c)
40 * acos(x) = pi/2 - (pi/2 - 2asin(sqrt((1-x)/2)))
47 * acos(x) = pi - 2asin(sqrt((1-|x|)/2))
88 if(hx>0) return 0.0; /* acos(1) = 0 */
89 else return pi+2.0*pio2_lo; /* acos(-1)= pi */
91 return (x-x)/(x-x); /* acos(|x|>1) is NaN */
  /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/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 */
  /external/ltp/testcases/misc/math/float/
float_trigo.c 29 {FUNC_NORMAL, 50, acos, "acos", "dacos", "racos",
  /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");

Completed in 6638 milliseconds

1 2 3 4 5 6 7 8 91011>>