/third_party/musl/src/math/i386/ |
H A D | acosf.s | 1 .global acosf 2 .type acosf,@function 3 acosf: label
|
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
H A D | math_acos_test.cpp | 41 * @tc.desc: Obtain test data in sequence and check if it is within the expected error range of the acosf interface. 48 bool testResult = FloatUlpCmp(g_acosfData[i].expected, acosf(g_acosfData[i].input), 1); in HWTEST_F() 55 * @tc.desc: When the parameter of acosf is valid, test the return value of the function. 60 EXPECT_FLOAT_EQ(0.0f, acosf(1.0f)); in HWTEST_F()
|
/third_party/musl/src/math/ |
H A D | acosf.c | 34 float acosf(float x) in acosf() function
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | acosf.c | 34 float acosf(float x) in acosf() function
|
/third_party/musl/libc-test/src/math/ |
H A D | acosf.c | 6 #include "ucb/acosf.h" 7 #include "sanity/acosf.h" 8 #include "special/acosf.h" 27 y = acosf(p->x); in main() 31 printf("%s:%d: bad fp exception: %s acosf(%a)=%a, want %s", in main() 38 printf("%s:%d: %s acosf(%a) want %a got %a ulperr %.3f = %a + %a\n", in main()
|
/third_party/skia/src/gpu/tessellate/ |
H A D | StrokeTessellator.h | 72 return .5f / acosf(std::max(1 - 2 / (parametricPrecision * strokeWidth), -1.f)); in CalcNumRadialSegmentsPerRadian()
|
/third_party/skia/include/private/ |
H A D | SkFloatingPoint.h | 56 # define sk_float_acos(x) acosf(x)
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | math.h | 136 float acosf(float);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | math.h | 136 float acosf(float);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | math.h | 136 float acosf(float);
|
/third_party/musl/include/ |
H A D | math.h | 136 float acosf(float);
|
/third_party/musl/libc-test/src/api/ |
H A D | math.c | 55 {float(*p)(float) = acosf;} in f()
|
/third_party/skia/tests/ |
H A D | SkVxTest.cpp | 261 float acosf_x = acosf(x); 327 x[j], SkRadiansToDegrees(skvx::approx_acos_x[j] - acosf(x[j])),
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | EmulatedIntrinsics.cpp | 186 return call4(acosf, x);
|
H A D | LLVMJIT.cpp | 475 functions.try_emplace("acosf", reinterpret_cast<void *>(acosf));
|
/third_party/FreeBSD/lib/msun/src/ |
H A D | math_private.h | 864 #define __ieee754_acosf acosf
|
/third_party/musl/libc-test/src/math/gen/ |
H A D | mplibm.c | 82 int mpacosf(struct t *t) { return mpf1(t, acosf); } in mpacosf()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_v360.c | 1905 const float theta = acosf(vec[2]); in xyz_to_stereographic() 2009 const float theta = acosf(vec[2]); in xyz_to_equisolid() 2120 const float theta = acosf(vec[2]); in xyz_to_orthographic() 2278 const float theta = acosf(vec[2]); in xyz_to_flat() 3460 const float theta = acosf(fabsf(vec[2])) / M_PI; in xyz_to_dfisheye()
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui_internal.h | 220 static inline float ImAcos(float x) { return acosf(x); } in ImAcos()
|
/third_party/skia/src/core/ |
H A D | SkGeometry.cpp | 182 return acosf(cosTheta); in SkMeasureAngleBetweenVectors()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
H A D | Intermediate.cpp | 1862 case EbtFloat: tempConstArray[i].setFConst(acosf(unionArray[i].getFConst())); break; in fold()
|
/third_party/optimized-routines/math/test/ |
H A D | mathtest.c | 214 TFUNC(at_s,rt_s, acosf, 4*ULPUNIT),
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | IntermNode.cpp | 3086 foldFloatTypeUnary(operandArray[i], &acosf, &resultArray[i]);
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_internal.h | 392 #define ImAcos(X) acosf(X)
|
/third_party/skia/third_party/externals/swiftshader/tests/ReactorUnitTests/ |
H A D | ReactorUnitTests.cpp | 2848 IntrinsicTestParams_Float4{ [](RValue<Float4> v) { return rr::Acos(v, Precision::Full); }, acosf, {0.f, 1.f, -1.f} },
|