HomeSort by relevance Sort by last modified time
    Searched refs:modf (Results 1 - 25 of 38) sorted by null

1 2

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestModf.rs 26 float out = modf(inX, &outIret);
33 float2 out = modf(inX, &outIret);
40 float3 out = modf(inX, &outIret);
47 float4 out = modf(inX, &outIret);
  /bionic/libstdc++/include/
cmath 62 using ::modf;
  /bionic/libm/
fake_long_double.c 37 long double modfl(long double a1, long double* a2) { double i; double f = modf(a1, &i); *a2 = i; return f; }
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_modf.c 18 * modf(double x, double *iptr)
33 modf(double x, double *iptr) function
  /external/chromium_org/third_party/skia/debugger/QT/
SkCanvasWidget.cpp 106 modf(fUserMatrix.getTranslateX(), &x);
107 modf(fUserMatrix.getTranslateY(), &y);
  /external/chromium_org/third_party/webrtc/base/
timing.cc 82 double sec_int, sec_frac = modf(period, &sec_int);
  /external/deqp/framework/delibs/debase/
deMath.c 131 double fract = modf(a, &integer);
deMath.h 90 DE_INLINE float deFloatModf (float x, float* i) { double j = 0; double ret = modf(x, &j); *i = (float)j; return (float)ret; }
104 DE_INLINE double deModf (double x, double* i) { return modf(x, i); }
  /external/chromium_org/third_party/skia/tools/
generate_fir_coeff.py 42 sample_offsets = [math.modf((float(subpxl_index)/subpxls_per_pixel + 1.0/(2.0*subpxls_per_pixel))*samples_per_pixel) for subpxl_index in range(subpxls_per_pixel)]
  /external/bison/darwin-lib/
math.h 1898 # undef modf macro
    [all...]
  /external/bison/lib/
math.in.h 1576 # undef modf macro
1577 # define modf macro
1584 _GL_CXXALIASWARN (modf); variable
1586 # undef modf macro
    [all...]
  /external/bison/linux-lib/
math.h 1898 # undef modf macro
    [all...]
  /external/clang/test/CodeGen/
libcall-declarations.c 31 double modf(double, double *);
268 F(ldexpl), F(modf), F(modff), F(modfl), F(nan),
  /external/chromium_org/third_party/skia/third_party/lua/src/
lmathlib.c 100 lua_Number fp = l_mathop(modf)(luaL_checknumber(L, 1), &ip);
254 {"modf", math_modf},
  /bionic/libm/include/
math.h 209 double modf(double, double *); /* fundamentally !__pure2 */
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 432 /// double modf(double x, double *iptr);
433 modf, enumerator in enum:llvm::LibFunc::Func
  /external/chromium_org/third_party/libxml/src/
trionan.c 423 (fraction = modf(number, &integral),
  /external/libxml2/
trionan.c 423 (fraction = modf(number, &integral),
  /external/libcxx/test/depr/depr.c.headers/
math_h.disabled.cpp 142 static_assert((std::is_same<decltype(modf((double)0, (double*)0)), double>::value), "");
146 assert(modf(1., &i) == 0);
  /external/ltrace/etc/
libm.so.conf 328 double modf(double, +double *);
  /development/ndk/platforms/android-13/include/
math.h 220 double modf(double, double *) __NDK_FPABI_MATH__; /* fundamentally !__pure2 */
  /development/ndk/platforms/android-18/include/
math.h 220 double modf(double, double *) __NDK_FPABI_MATH__; /* fundamentally !__pure2 */
  /development/ndk/platforms/android-3/include/
math.h 220 double modf(double, double *) __NDK_FPABI_MATH__; /* fundamentally !__pure2 */
  /development/ndk/platforms/android-9/include/
math.h 220 double modf(double, double *) __NDK_FPABI_MATH__; /* fundamentally !__pure2 */
  /development/ndk/platforms/android-L/include/
math.h 209 double modf(double, double *) __NDK_FPABI_MATH__; /* fundamentally !__pure2 */

Completed in 572 milliseconds

1 2