/third_party/musl/src/math/i386/ |
H A D | atan2f.s | 1 .global atan2f 2 .type atan2f,@function 3 atan2f: label
|
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
H A D | math_atan2_test.cpp | 41 * @tc.desc: Obtain test data in sequence and check if it is within the expected error range of the atan2f interface. 48 bool testResult = FloatUlpCmp(g_atan2fData[i].expected, atan2f(g_atan2fData[i].input1, g_atan2fData[i].input2), 2); in HWTEST_F() 55 * @tc.desc: When the parameter of atan2f is valid, test the return value of the function. 60 EXPECT_FLOAT_EQ(0.0f, atan2f(0.0f, 0.0f)); in HWTEST_F()
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_surround.c | 331 a = atan2f(*x, *y); in stereo_transform() 1009 c_phase = atan2f(c_im, c_re); in upmix_7_1_5_0_side() 1113 float c_phase = atan2f(l_im + r_im, l_re + r_re); in filter_stereo() 1116 float l_phase = atan2f(l_im, l_re); in filter_stereo() 1117 float r_phase = atan2f(r_im, r_re); in filter_stereo() 1149 float c_phase = atan2f(c_im, c_re); in filter_surround() 1152 float l_phase = atan2f(l_im, l_re); in filter_surround() 1153 float r_phase = atan2f(r_im, r_re); in filter_surround() 1184 float c_phase = atan2f(l_im + r_im, l_re + r_re); in filter_2_1() 1187 float l_phase = atan2f(l_i in filter_2_1() [all...] |
H A D | vf_v360.c | 1136 const float phi = atan2f(vec[0], vec[2]); in xyz_to_cube() 2180 const float phi = atan2f(vec[0], vec[2]) / s->iflat_range[0]; in xyz_to_equirect() 2221 const float phi = atan2f(vec[0], vec[2]) / M_PI_2; in xyz_to_hequirect() 2325 const float phi = atan2f(vec[0], vec[2]) / M_PI; in xyz_to_mercator() 2503 const float theta = atan2f(vec[0], vec[2]); in xyz_to_hammer() 2574 const float phi = atan2f(vec[0], vec[2]) * cosf(theta); in xyz_to_sinusoidal() 2887 const float phi = atan2f(vf, uf); in fisheye_to_xyz() 2937 const float phi = atan2f(h, vec[2]) / M_PI; in xyz_to_fisheye() 2986 const float lon = atan2f(uf, S * clon); in pannini_to_xyz() 2987 const float lat = atan2f(v in pannini_to_xyz() [all...] |
H A D | avf_showspatial.c | 237 float lp = atan2f(IM(idx, 0), RE(idx, 0)); in draw_spatial() 238 float rp = atan2f(IM(idx, 1), RE(idx, 1)); in draw_spatial()
|
H A D | vsrc_gradients.c | 235 op_x_od = atan2f(op_x, op_y) + M_PI; in project() 238 op_x_od = fmodf(atan2f(op_x, op_y) + M_PI + point_x / fmaxf(origin_x, dest_x), 2.f * M_PI); in project()
|
H A D | vf_hsvkey.c | 65 const float hue = hue_key < 0.f ? -hue_key : atan2f(uf, vf) + M_PI; in do_hsvkey_pixel()
|
H A D | vf_signalstats.c | 484 ((int16_t*)p_hue)[i] = fmodf(floorf((180.f / M_PI) * atan2f(yuvu-128, yuvv-128) + 180.f), 360.f); in compute_sat_hue_metrics8() 523 ((int16_t*)p_hue)[i] = fmodf(floorf((180.f / M_PI) * atan2f(yuvu-mid, yuvv-mid) + 180.f), 360.f); in compute_sat_hue_metrics16()
|
H A D | asrc_sinc.c | 245 float angle = atan2f(work[i + 1], work[i]); in fir_to_phase()
|
/third_party/musl/src/complex/ |
H A D | cargf.c | 5 return atan2f(cimagf(z), crealf(z)); in cargf()
|
H A D | catanf.c | 95 t = 0.5f * atan2f(2.0f * x, a); in catanf()
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | atan2f.c | 22 float atan2f(float y, float x) in atan2f() function
|
/third_party/musl/src/math/ |
H A D | atan2f.c | 22 float atan2f(float y, float x) in atan2f() function
|
/third_party/musl/libc-test/src/math/ |
H A D | atan2f.c | 6 #include "ucb/atan2f.h" 7 #include "sanity/atan2f.h" 8 #include "special/atan2f.h" 27 y = atan2f(p->x, p->x2); in main() 31 printf("%s:%d: bad fp exception: %s atan2f(%a,%a)=%a, want %s", in main() 38 printf("%s:%d: %s atan2f(%a,%a) want %a got %a ulperr %.3f = %a + %a\n", in main()
|
/third_party/ffmpeg/libavutil/ |
H A D | libm.h | 44 #undef atan2f macro 45 #define atan2f(y, x) ((float)atan2(y, x)) macro
|
/third_party/ffmpeg/libavcodec/ |
H A D | aacps_tablegen.h | 162 alpha = 0.5f * atan2f(2.0f * c * rho, c*c - 1.0f); in ps_tableinit()
|
/third_party/skia/include/private/ |
H A D | SkFloatingPoint.h | 59 #define sk_float_atan2(y,x) atan2f(y,x)
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | math.h | 156 float atan2f(float, float);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | math.h | 156 float atan2f(float, float);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | math.h | 156 float atan2f(float, float);
|
/third_party/musl/include/ |
H A D | math.h | 156 float atan2f(float, float);
|
/third_party/musl/libc-test/src/api/ |
H A D | math.c | 68 {float(*p)(float,float) = atan2f;} in f()
|
/third_party/musl/Benchmark/musl/ |
H A D | libc_math.cpp | 292 benchmark::DoNotOptimize(atan2f(x, y)); in Bm_function_Atan2f()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | EmulatedIntrinsics.cpp | 228 return call4(atan2f, x, y);
|
/third_party/FreeBSD/lib/msun/src/ |
H A D | math_private.h | 869 #define __ieee754_atan2f atan2f
|