/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
H A D | math_fmod_test.cpp | 73 * @tc.desc: Obtain test data in sequence and check if it is within the expected error range of the fmodf interface. 80 bool testResult = FloatUlpCmp(g_fmodfData[i].expected, fmodf(g_fmodfData[i].input1, g_fmodfData[i].input2), 1); in HWTEST_F() 87 * @tc.desc: When the parameter of fmodf is valid, test the return value of the function. 92 EXPECT_FLOAT_EQ(5.0f, fmodf(15.0f, 10.0f)); in HWTEST_F() 102 EXPECT_TRUE(isnan(fmodf(HUGE_VAL, 15.0f))); in HWTEST_F() 103 EXPECT_TRUE(isnan(fmodf(-HUGE_VAL, 15.0f))); in HWTEST_F() 113 EXPECT_TRUE(isnan(fmodf(nanf(""), 14.0f))); in HWTEST_F() 114 EXPECT_TRUE(isnan(fmodf(14.0f, nan("")))); in HWTEST_F() 124 EXPECT_TRUE(isnan(fmodf(4.0f, 0.0f))); in HWTEST_F()
|
/third_party/musl/src/math/i386/ |
H A D | fmodf.c | 3 float fmodf(float x, float y) in fmodf() function
|
/third_party/musl/libc-test/src/math/ |
H A D | fmodf.c | 6 #include "ucb/fmodf.h" 7 #include "sanity/fmodf.h" 8 #include "special/fmodf.h" 27 y = fmodf(p->x, p->x2); in main() 31 printf("%s:%d: bad fp exception: %s fmodf(%a,%a)=%a, want %s", in main() 38 printf("%s:%d: %s fmodf(%a,%a) want %a got %a ulperr %.3f = %a + %a\n", in main()
|
/third_party/musl/src/math/ |
H A D | fmodf.c | 4 float fmodf(float x, float y) in fmodf() function
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | fmodf.c | 4 float fmodf(float x, float y) in fmodf() function
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_scroll.c | 109 s->h_pos = fmodf(s->h_pos, in->width); in scroll() 110 s->v_pos = fmodf(s->v_pos, in->height); in scroll()
|
H A D | vsrc_gradients.c | 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() 387 float angle = fmodf(s->pts * s->speed, 2.f * M_PI); in activate()
|
H A D | af_afreqshift.c | 152 FFILTER(flt, float, sinf, cosf, fmodf, cf)
|
H A D | vf_hsvkey.c | 219 s->hue = FFSIGN(s->hue_opt) *M_PI * fmodf(526.f - fabsf(s->hue_opt), 360.f) / 180.f; in filter_frame()
|
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 | vf_colorbalance.c | 113 float k = fmodf(n + h / 30.f, 12.f); in hfun()
|
H A D | vsrc_testsrc.c | 1821 rgb[0] = av_clipf(fabsf(fmodf(c[0] * 6.f + 0.f, 6.f) - 3.f) - 1.f, 0.f, 1.f); in hsb2rgb() 1822 rgb[1] = av_clipf(fabsf(fmodf(c[0] * 6.f + 4.f, 6.f) - 3.f) - 1.f, 0.f, 1.f); in hsb2rgb() 1823 rgb[2] = av_clipf(fabsf(fmodf(c[0] * 6.f + 2.f, 6.f) - 3.f) - 1.f, 0.f, 1.f); in hsb2rgb()
|
/third_party/skia/include/private/ |
H A D | SkFloatingPoint.h | 62 #define sk_float_mod(x,y) fmodf(x,y)
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | math.h | 228 float fmodf(float, float);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | math.h | 228 float fmodf(float, float);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | math.h | 228 float fmodf(float, float);
|
/third_party/musl/include/ |
H A D | math.h | 228 float fmodf(float, float);
|
/third_party/musl/libc-test/src/api/ |
H A D | math.c | 124 {float(*p)(float,float) = fmodf;} in f()
|
/third_party/musl/Benchmark/musl/ |
H A D | libc_math.cpp | 87 benchmark::DoNotOptimize(fmodf(x, y)); in Bm_function_Fmodf()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | EmulatedIntrinsics.cpp | 278 return call4(fmodf, lhs, rhs);
|
H A D | LLVMJIT.cpp | 470 functions.try_emplace("fmodf", reinterpret_cast<void *>(fmodf));
|
/third_party/FreeBSD/lib/msun/src/ |
H A D | math_private.h | 872 #define __ieee754_fmodf fmodf
|
/third_party/skia/modules/particles/src/ |
H A D | SkParticleEffect.cpp | 378 fState.fAge = fmodf(fState.fAge, 1.0f); in advanceTime()
|
/third_party/musl/libc-test/src/math/gen/ |
H A D | mplibm.c | 148 int mpfmodf(struct t *t) { return mpf2(t, fmodf); } in mpfmodf()
|
/third_party/skia/gm/ |
H A D | wacky_yuv_formats.cpp | 246 startDeg = fmodf(startDeg, 360.0f); in add_arc() 249 endDeg = fmodf(endDeg, 360.0f); in add_arc()
|