Home
last modified time | relevance | path

Searched refs:atan (Results 26 - 50 of 122) sorted by relevance

12345

/third_party/musl/src/math/
H A Datan.c12 /* atan(x)
14 * 1. Reduce x to positive by atan(x) = -atan(-x).
19 * [0,7/16] atan(x) = t-t^3*(a1+t^2*(a2+...(a10+t^2*a11)...)
20 * [7/16,11/16] atan(x) = atan(1/2) + atan( (t-0.5)/(1+t/2) )
21 * [11/16.19/16] atan(x) = atan( 1 ) + atan( (
63 double atan(double x) atan() function
[all...]
H A Datanl.c13 * See comments in atan.c.
22 return atan(x); in atanl()
138 if (e >= 0x3fff + LDBL_MANT_DIG + 1) { /* if |x| is large, atan(x)~=pi/2 */ in atanl()
/third_party/ltp/testcases/misc/math/float/trigo/
H A Dgenatan.c54 tabRatan[i] = atan((Inc * i) - 1); in create_Result_file()
110 ("problem during atan data file creation\n"); in main()
118 ("problem during atan result file creation\n"); in main()
127 printf("problem during atan data file creation\n"); in main()
129 printf("problem during atan result file creation\n"); in main()
/kernel/linux/linux-5.10/arch/m68k/fpsp040/
H A Dsacos.S27 | acos(X) = 2 * atan( sqrt(z) ).
H A Dsasin.S27 | asin(X) = atan( x / z ).
H A Dsatanh.S38 | atan(X) := sgn / (+0).
/kernel/linux/linux-6.6/arch/m68k/fpsp040/
H A Dsacos.S27 | acos(X) = 2 * atan( sqrt(z) ).
H A Dsasin.S27 | asin(X) = atan( x / z ).
H A Dsatanh.S38 | atan(X) := sgn / (+0).
/third_party/ffmpeg/libavfilter/tests/
H A Ddnn-layer-mathunary.c46 return atan(f); in get_expected()
/third_party/ffmpeg/tests/dnn/
H A Ddnn-layer-mathunary-test.c46 return atan(f); in get_expected()
/third_party/jerryscript/jerry-libm/
H A Datan.c30 /* atan(x)
33 * 1. Reduce x to positive by atan(x) = -atan(-x).
38 * [0,7/16] atan(x) = t-t^3*(a1+t^2*(a2+...(a10+t^2*a11)...)
39 * [7/16,11/16] atan(x) = atan(1/2) + atan( (t-0.5)/(1+t/2) )
40 * [11/16.19/16] atan(x) = atan( 1 ) + atan( (
83 atan (double x) atan() function
[all...]
/third_party/node/deps/v8/src/asmjs/
H A Dasm-names.h23 V(atan, Atan, kExprF64Atan, dq2d) \
/third_party/skia/src/sksl/
H A DSkSLIntrinsicList.h22 SKSL_INTRINSIC(atan) \
/third_party/skia/modules/skottie/src/
H A DCamera.cpp41 view_angle = std::atan(sk_ieee_float_divide(view_size * 0.5f, view_distance)); in ComputeCameraMatrix()
/third_party/ffmpeg/libavfilter/dnn/
H A Ddnn_backend_native_layer_mathunary.c110 dst[i] = atan(src[i]); in ff_dnn_execute_layer_math_unary()
/third_party/ffmpeg/libavfilter/
H A Daf_virtualbass.c91 double y = 2.5 * atan(0.9 * x) + 2.5 * sqrt(1. - SQR(0.9 * x)) - 2.5; in vb_fun()
/third_party/musl/porting/liteos_a/kernel/src/math/
H A Datanl.c13 * See comments in atan.c.
22 return atan(x); in atanl()
138 if (e >= 0x3fff + LDBL_MANT_DIG + 1) { /* if |x| is large, atan(x)~=pi/2 */ in atanl()
/third_party/astc-encoder/Source/
H A Dastcenc_vecmathlib.h223 * @brief Return fast, but approximate, vector atan(x).
227 ASTCENC_SIMD_INLINE vfloat atan(vfloat x) in atan() function
241 vfloat z = atan(abs(y / x)); in atan2()
/third_party/vk-gl-cts/framework/delibs/debase/
H A DdeMath.h222 DE_INLINE float deFloatAtanOver (float yOverX) { return (float)atan(yOverX); } in deFloatAtanOver()
236 DE_INLINE double deAtanOver (double yOverX) { return atan(yOverX); } in deAtanOver()
/third_party/ltp/testcases/misc/math/atof/
H A Datof01.c77 pi = 4.0 * atan(1.0); in main()
/third_party/pulseaudio/speex/libspeexdsp/
H A Dmath_approx.h46 #define spx_atan atan
/third_party/decimal.js/test/modules/
H A Dimmutability.js248 y = a.atan();
250 z = Decimal.atan(a);
/third_party/lame/libmp3lame/
H A Dutil.c287 return 13.0 * atan(.76 * freq) + 3.5 * atan(freq * freq / (7.5 * 7.5)); in freq2bark()
/third_party/ffmpeg/libavutil/
H A Dlibm.h40 #define atanf(x) ((float)atan(x))

Completed in 10 milliseconds

12345