Home
last modified time | relevance | path

Searched refs:fmod (Results 1 – 4 of 4) sorted by relevance

/openbmc/telemetry/redfish-tests/
H A Dredfish_requests.py118 time = math.fmod(time, (24 * 60 * 60))
120 time = math.fmod(time, (60 * 60))
122 time = round(math.fmod(time, 60), 3)
/openbmc/qemu/target/m68k/
H A Dhelper.h68 DEF_HELPER_4(fmod, void, env, fp, fp, fp)
H A Dfpu_helper.c595 void HELPER(fmod)(CPUM68KState *env, FPReg *res, FPReg *val0, FPReg *val1) in HELPER() argument
/openbmc/qemu/tests/tcg/i386/
H A Dtest-i386.c776 printf("a=%f b=%f fmod(a, b)=%f\n", a, b, fmod(a, b)); in test_fops()