Home
last modified time | relevance | path

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

/device/google/contexthub/firmware/lib/libm/
Dwf_fmod.c64 double fmod(double x, double y) in fmod() function
66 double fmod(x,y) in fmod()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_math.py418 self.assertRaises(TypeError, math.fmod)
419 self.ftest('fmod(10,1)', math.fmod(10,1), 0)
420 self.ftest('fmod(10,0.5)', math.fmod(10,0.5), 0)
421 self.ftest('fmod(10,1.5)', math.fmod(10,1.5), 1)
422 self.ftest('fmod(-10,1)', math.fmod(-10,1), 0)
423 self.ftest('fmod(-10,0.5)', math.fmod(-10,0.5), 0)
424 self.ftest('fmod(-10,1.5)', math.fmod(-10,1.5), -1)
425 self.assertTrue(math.isnan(math.fmod(NAN, 1.)))
426 self.assertTrue(math.isnan(math.fmod(1., NAN)))
427 self.assertTrue(math.isnan(math.fmod(NAN, NAN)))
[all …]
/device/linaro/bootloader/edk2/StdLib/LibC/Math/
Dw_fmod.c27 fmod(double x, double y) /* wrapper fmod */ in fmod() function
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dpymath.h32 extern double fmod (double, double);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dpymath.h32 extern double fmod (double, double);
/device/linaro/bootloader/edk2/StdLib/Include/
Dmath.h315 double fmod(double A1, double A2);
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlmathlib.c93 lua_pushnumber(L, l_mathop(fmod)(luaL_checknumber(L, 1), in math_fmod()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dmathmodule.c80 y = fmod(fabs(x), 2.0); in sinpi()
1370 r = fmod(x, y); in math_fmod()
1459 odd_y = Py_IS_FINITE(y) && fmod(fabs(y), 2.0) == 1.0; in math_pow()
Dsignalmodule.c113 tv->tv_usec = fmod(d, 1.0) * 1000000.0; in timeval_from_double()
Dtimemodule.c943 frac = fmod(secs, 1.0);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dmathmodule.c80 y = fmod(fabs(x), 2.0); in sinpi()
1360 r = fmod(x, y); in math_fmod()
1449 odd_y = Py_IS_FINITE(y) && fmod(fabs(y), 2.0) == 1.0; in math_pow()
Dsignalmodule.c113 tv->tv_usec = fmod(d, 1.0) * 1000000.0; in timeval_from_double()
Dtimemodule.c938 frac = fmod(secs, 1.0);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dfloatobject.c718 mod = fmod(vx, wx); in float_rem()
750 mod = fmod(vx, wx); in float_divmod()
806 #define DOUBLE_IS_ODD_INTEGER(x) (fmod(fabs(x), 2.0) == 1.0)
1136 halfway_case = fmod(x, five_pow) == 0.0; in _Py_double_round()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dfloatobject.c719 mod = fmod(vx, wx); in float_rem()
751 mod = fmod(vx, wx); in float_divmod()
807 #define DOUBLE_IS_ODD_INTEGER(x) (fmod(fabs(x), 2.0) == 1.0)
1147 halfway_case = fmod(x, five_pow) == 0.0; in _Py_double_round()
/device/google/contexthub/firmware/external/freebsd/lib/msun/src/
Dmath_private.h685 #define __ieee754_fmod fmod