Home
last modified time | relevance | path

Searched refs:hypotf (Results 1 – 25 of 36) sorted by relevance

12

/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/
Dmath_hypot_test.cpp72 …bool testResult = FloatUlpCmp(g_hypotfData[i].expected, hypotf(g_hypotfData[i].input1, g_hypotfDat…
84 EXPECT_DOUBLE_EQ(10.0f, hypotf(6.0f, 8.0f));
95 EXPECT_EQ(HUGE_VAL, hypotf(4.0f, HUGE_VAL));
96 EXPECT_EQ(HUGE_VAL, hypotf(4.0f, -HUGE_VAL));
97 EXPECT_EQ(HUGE_VAL, hypotf(HUGE_VAL, 5.0f));
98 EXPECT_EQ(HUGE_VAL, hypotf(-HUGE_VAL, 5.0f));
108 EXPECT_TRUE(isnan(hypotf(6.0f, nan(""))));
109 EXPECT_TRUE(isnan(hypotf(nan(""), 8.0f)));
/third_party/musl/src/math/i386/
Dhypotf.s1 .global hypotf symbol
2 .type hypotf,@function
3 hypotf: label
/third_party/ffmpeg/libavfilter/
Daf_surround.c330 r = hypotf(*x, *y); in stereo_transform()
1114 float l_mag = hypotf(l_re, l_im); in filter_stereo()
1115 float r_mag = hypotf(r_re, r_im); in filter_stereo()
1121 float mag_total = hypotf(l_mag, r_mag); in filter_stereo()
1148 float c_mag = hypotf(c_re, c_im); in filter_surround()
1150 float l_mag = hypotf(l_re, l_im); in filter_surround()
1151 float r_mag = hypotf(r_re, r_im); in filter_surround()
1157 float mag_total = hypotf(l_mag, r_mag); in filter_surround()
1185 float l_mag = hypotf(l_re, l_im); in filter_2_1()
1186 float r_mag = hypotf(r_re, r_im); in filter_2_1()
[all …]
Daf_dialoguenhance.c174 sum += sqrf(hypotf(c_re, c_im) - hypotf(p_re, p_im)); in flux()
196 sum += sqrf(hypotf(c_re, c_im) - hypotf(p_re, p_im)); in fluxlr()
Dvf_v360.c1861 const float r = hypotf(x, y); in stereographic_to_xyz()
1907 const float c = r / hypotf(vec[0], vec[1]); in xyz_to_stereographic()
1965 const float r = hypotf(x, y); in equisolid_to_xyz()
2011 const float c = r / hypotf(vec[0], vec[1]); in xyz_to_equisolid()
2069 const float r = hypotf(x, y); in orthographic_to_xyz()
2122 const float c = r / hypotf(vec[0], vec[1]); in xyz_to_orthographic()
2280 const float rr = fabsf(r) < 1e+6f ? r : hypotf(width, height); in xyz_to_flat()
2282 const float h = hypotf(vec[0], vec[1]); in xyz_to_flat()
2393 const float l = hypotf(vec[0], vec[1]); in xyz_to_ball()
2432 const float l = hypotf(x, y); in ball_to_xyz()
[all …]
Davf_showspatial.c234 float l = hypotf(RE(idx, 0), IM(idx, 0)); in draw_spatial()
235 float r = hypotf(RE(idx, 1), IM(idx, 1)); in draw_spatial()
Daf_apsyclip.c299 magnitude = hypotf(spectrum[2 * i], spectrum[2 * i + 1]) * 2; in calculate_mask_curve()
321 magnitude = hypotf(spectrum[2 * i], spectrum[2 * i + 1]) * 2; in calculate_mask_curve()
363 relative_distortion_level = hypotf(real, imag) * 2 / mask_curve[i]; in limit_clip_spectrum()
Dvf_xfade.c553 float z = powf(2.f * fabsf(progress - 0.5f), 3.f) * hypotf(width/2, height/2); \
564 float dist = hypotf(x - width / 2, y - height / 2); \
860 const float z = hypotf(width / 2, height / 2); \
865 const float smooth = hypotf(x - width / 2, y - height / 2) / z + p; \
889 const float z = hypotf(width / 2, height / 2); \
894 const float smooth = hypotf(x - width / 2, y - height / 2) / z + p; \
Dvf_signalstats.c483 p_sat[i] = hypotf(yuvu - 128, yuvv - 128); // int or round? in compute_sat_hue_metrics8()
522 p_sat[i] = hypotf(yuvu - mid, yuvv - mid); // int or round? in compute_sat_hue_metrics16()
Daf_aspectralstats.c425 magnitude[n] = hypotf(fft_out[n].re, fft_out[n].im); in filter_channel()
/third_party/musl/src/complex/
Dcabsf.c5 return hypotf(crealf(z), cimagf(z)); in cabsf()
/third_party/musl/porting/liteos_a/kernel/src/math/
Dhypotf.c4 float hypotf(float x, float y) in hypotf() function
/third_party/musl/src/math/
Dhypotf.c4 float hypotf(float x, float y) in hypotf() function
/third_party/musl/libc-test/src/math/
Dhypotf.c27 y = hypotf(p->x, p->x2); in main()
Dtest_src_math.gni85 "hypotf",
/third_party/musl/libc-test/src/api/
Dmath.c130 {float(*p)(float,float) = hypotf;} in f()
/third_party/musl/include/
Dmath.h236 float hypotf(float, float);
/third_party/musl/porting/uniproton/kernel/include/
Dmath.h236 float hypotf(float, float);
/third_party/musl/porting/liteos_m/kernel/include/
Dmath.h236 float hypotf(float, float);
/third_party/musl/porting/liteos_a/kernel/include/
Dmath.h236 float hypotf(float, float);
/third_party/musl/libc-test/src/math/gen/
Dfunctions.h83 T(hypotf, ff_f)
Dmplibm.c151 int mphypotf(struct t *t) { return mpf2(t, hypotf); } in mphypotf()
/third_party/FreeBSD/lib/msun/src/
Dmath_private.h881 #define __ieee754_hypotf hypotf
/third_party/musl/
Dlibc.map.txt938 hypotf;
/third_party/musl/porting/liteos_a/kernel/
Dmusl.gni168 "$MUSLPORTINGDIR/src/math/hypotf.c",

12