HomeSort by relevance Sort by last modified time
    Searched refs:fmod (Results 51 - 75 of 225) sorted by null

1 23 4 5 6 7 8 9

  /external/chromium_org/native_client_sdk/src/examples/api/graphics_3d/
graphics_3d.cc 401 x_angle_ = fmod(360.0f + x_angle_ + kXAngleDelta, 360.0f);
402 y_angle_ = fmod(360.0f + y_angle_ + kYAngleDelta, 360.0f);
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/src/cube/
cube.cc 401 x_angle_ = fmod(360.0f + x_angle_ + kXAngleDelta, 360.0f);
402 y_angle_ = fmod(360.0f + y_angle_ + kYAngleDelta, 360.0f);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/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.8/lib/gcc/arm-eabi/4.8/include/
tgmath.h 137 #define fmod(x,y) __TGMATH_REAL_2(x, y, fmod) macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/
tgmath.h 137 #define fmod(x,y) __TGMATH_REAL_2(x, y, 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/chromium_org/chromeos/network/
network_event_log.cc 52 int usecs = static_cast<int>(fmod(time.ToDoubleT() * 1000000, 1000000));
63 int msecs = static_cast<int>(fmod(time.ToDoubleT() * 1000, 1000));
  /external/clang/test/CodeGen/
libcall-declarations.c 22 double fmod(double, double);
266 F(fabsf), F(fabsl), F(fmod), F(fmodf), F(fmodl),
327 // CHECK-NOERRNO: declare double @fmod(double, double) [[NUW]]
  /external/deqp/framework/delibs/debase/
deMath.h 89 DE_INLINE float deFloatMod (float a, float b) { return (float)fmod(a, b); }
103 DE_INLINE double deMod (double a, double b) { return fmod(a, b); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
mathcalls.h 188 __MATHCALL (fmod,, (_Mdouble_ __x, _Mdouble_ __y));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
tgmath.h 352 #define fmod(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, fmod) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
mathcalls.h 188 __MATHCALL (fmod,, (_Mdouble_ __x, _Mdouble_ __y));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
tgmath.h 352 #define fmod(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, fmod) macro
  /external/chromium_org/cc/scheduler/
delay_based_time_source.cc 161 // fmod just happens to return something near zero. Assuming the timebase
167 fmod(target_delta, interval.InSecondsF()) / interval.InSecondsF();
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathPredicate.cpp 103 return fmod(leftVal, rightVal);
  /external/chromium_org/third_party/skia/third_party/lua/src/
lmathlib.c 93 lua_pushnumber(L, l_mathop(fmod)(luaL_checknumber(L, 1),
245 {"fmod", math_fmod},
  /external/libcxx/test/numerics/c.math/
cmath.disabled.cpp 218 static_assert((std::is_same<decltype(std::fmod((float)0, (float)0)), float>::value), "");
219 static_assert((std::is_same<decltype(std::fmod((bool)0, (float)0)), double>::value), "");
220 static_assert((std::is_same<decltype(std::fmod((unsigned short)0, (double)0)), double>::value), "");
221 static_assert((std::is_same<decltype(std::fmod((int)0, (long double)0)), long double>::value), "");
222 static_assert((std::is_same<decltype(std::fmod((float)0, (unsigned int)0)), double>::value), "");
223 static_assert((std::is_same<decltype(std::fmod((double)0, (long)0)), double>::value), "");
224 static_assert((std::is_same<decltype(std::fmod((long double)0, (unsigned long)0)), long double>::value), "");
225 static_assert((std::is_same<decltype(std::fmod((int)0, (long long)0)), double>::value), "");
226 static_assert((std::is_same<decltype(std::fmod((int)0, (unsigned long long)0)), double>::value), "");
227 static_assert((std::is_same<decltype(std::fmod((double)0, (double)0)), double>::value), "")
    [all...]
  /external/valgrind/main/memcheck/tests/x86/
more_x86_fp.c 39 printf("a=%f b=%f fmod(a, b)=%f\n", a, b, fmod(a, b));
more_x86_fp.stdout.exp 5 a=2.000000 b=3.000000 fmod(a, b)=2.000000
20 a=1.400000 b=-5.000000 fmod(a, b)=1.400000
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
cmath.pass.cpp 218 static_assert((std::is_same<decltype(std::fmod((float)0, (float)0)), float>::value), "");
219 static_assert((std::is_same<decltype(std::fmod((bool)0, (float)0)), double>::value), "");
220 static_assert((std::is_same<decltype(std::fmod((unsigned short)0, (double)0)), double>::value), "");
221 static_assert((std::is_same<decltype(std::fmod((int)0, (long double)0)), long double>::value), "");
222 static_assert((std::is_same<decltype(std::fmod((float)0, (unsigned int)0)), double>::value), "");
223 static_assert((std::is_same<decltype(std::fmod((double)0, (long)0)), double>::value), "");
224 static_assert((std::is_same<decltype(std::fmod((long double)0, (unsigned long)0)), long double>::value), "");
225 static_assert((std::is_same<decltype(std::fmod((int)0, (long long)0)), double>::value), "");
226 static_assert((std::is_same<decltype(std::fmod((int)0, (unsigned long long)0)), double>::value), "");
227 static_assert((std::is_same<decltype(std::fmod((double)0, (double)0)), double>::value), "")
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/
config.hpp 220 using std::fmod;\

Completed in 1027 milliseconds

1 23 4 5 6 7 8 9