HomeSort by relevance Sort by last modified time
    Searched defs:fmod (Results 1 - 19 of 19) sorted by null

  /external/webkit/Source/JavaScriptCore/wtf/
MathExtras.h 180 // Work around a bug in the Microsoft CRT, where fmod(x, +-infinity) yields NaN instead of x.
181 inline double wtf_fmod(double x, double y) { return (!isinf(x) && isinf(y)) ? x : fmod(x, y); }
187 #define fmod(x, y) wtf_fmod(x, y) macro
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
tgmath.h 137 #define fmod(x,y) __TGMATH_REAL_2(x, y, fmod) macro
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/
tgmath.h 137 #define fmod(x,y) __TGMATH_REAL_2(x, y, fmod) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
tgmath.h 148 #define fmod(x,y) __TGMATH_REAL_2(x, y, fmod) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
tgmath.h 148 #define fmod(x,y) __TGMATH_REAL_2(x, y, fmod) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
tgmath.h 137 #define fmod(x,y) __TGMATH_REAL_2(x, y, fmod) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/
tgmath.h 137 #define fmod(x,y) __TGMATH_REAL_2(x, y, fmod) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
tgmath.h 345 #define fmod(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, fmod) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/
tgmath.h 354 #define fmod(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, fmod) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
tgmath.h 345 #define fmod(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, fmod) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/
tgmath.h 354 #define fmod(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, fmod) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
tgmath.h 345 #define fmod(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, fmod) macro
  /external/bison/darwin-lib/
math.h 1212 # undef fmod macro
    [all...]
  /external/bison/lib/
math.in.h 890 # undef fmod macro
891 # define fmod rpl_fmod macro
893 _GL_FUNCDECL_RPL (fmod, double, (double x, double y));
894 _GL_CXXALIAS_RPL (fmod, double, (double x, double y));
896 _GL_CXXALIAS_SYS (fmod, double, (double x, double y));
898 _GL_CXXALIASWARN (fmod); variable
900 # undef fmod macro
902 _GL_WARN_ON_USE (fmod, "fmod has portability problems - "
903 "use gnulib module fmod for portability")
    [all...]
  /external/bison/linux-lib/
math.h 1212 # undef fmod macro
    [all...]
  /external/clang/lib/Headers/
tgmath.h 790 // fmod
798 __tg_fmod(double __x, double __y) {return fmod(__x, __y);}
804 #undef fmod macro
805 #define fmod(__x, __y) __tg_fmod(__tg_promote2((__x), (__y))(__x), \ macro
  /prebuilts/sdk/renderscript/clang-include/
tgmath.h 790 // fmod
798 __tg_fmod(double __x, double __y) {return fmod(__x, __y);}
804 #undef fmod macro
805 #define fmod(__x, __y) __tg_fmod(__tg_promote2((__x), (__y))(__x), \ macro
  /external/eigen/unsupported/test/mpreal/
mpreal.h 395 friend const mpreal fmod (const mpreal& x, const mpreal& y, mp_rnd_t rnd_mode = mpreal::default_rnd);
2112 inline const mpreal fmod (const mpreal& x, const mpreal& y, mp_rnd_t rnd_mode) function in namespace:mpfr
    [all...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 232 /// double fmod(double x, double y);
233 fmod, enumerator in enum:llvm::LibFunc::Func

Completed in 435 milliseconds