/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
D | math_hypot_test.cpp | 72 …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/ |
D | hypotf.s | 1 .global hypotf symbol 2 .type hypotf,@function 3 hypotf: label
|
/third_party/ffmpeg/libavfilter/ |
D | af_surround.c | 330 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 …]
|
D | af_dialoguenhance.c | 174 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()
|
D | vf_v360.c | 1861 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 …]
|
D | avf_showspatial.c | 234 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()
|
D | af_apsyclip.c | 299 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()
|
D | vf_xfade.c | 553 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; \
|
D | vf_signalstats.c | 483 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()
|
D | af_aspectralstats.c | 425 magnitude[n] = hypotf(fft_out[n].re, fft_out[n].im); in filter_channel()
|
/third_party/musl/src/complex/ |
D | cabsf.c | 5 return hypotf(crealf(z), cimagf(z)); in cabsf()
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
D | hypotf.c | 4 float hypotf(float x, float y) in hypotf() function
|
/third_party/musl/src/math/ |
D | hypotf.c | 4 float hypotf(float x, float y) in hypotf() function
|
/third_party/musl/libc-test/src/math/ |
D | hypotf.c | 27 y = hypotf(p->x, p->x2); in main()
|
D | test_src_math.gni | 85 "hypotf",
|
/third_party/musl/libc-test/src/api/ |
D | math.c | 130 {float(*p)(float,float) = hypotf;} in f()
|
/third_party/musl/include/ |
D | math.h | 236 float hypotf(float, float);
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | math.h | 236 float hypotf(float, float);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | math.h | 236 float hypotf(float, float);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
D | math.h | 236 float hypotf(float, float);
|
/third_party/musl/libc-test/src/math/gen/ |
D | functions.h | 83 T(hypotf, ff_f)
|
D | mplibm.c | 151 int mphypotf(struct t *t) { return mpf2(t, hypotf); } in mphypotf()
|
/third_party/FreeBSD/lib/msun/src/ |
D | math_private.h | 881 #define __ieee754_hypotf hypotf
|
/third_party/musl/ |
D | libc.map.txt | 938 hypotf;
|
/third_party/musl/porting/liteos_a/kernel/ |
D | musl.gni | 168 "$MUSLPORTINGDIR/src/math/hypotf.c",
|