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

1 2 3 4 5 6

  /prebuilts/go/darwin-x86/src/math/
modf_amd64.s 7 TEXT ·Modf(SB),NOSPLIT,$0
8 JMP ·modf(SB)
modf_arm.s 7 TEXT ·Modf(SB),NOSPLIT,$0
8 B ·modf(SB)
  /prebuilts/go/linux-x86/src/math/
modf_amd64.s 7 TEXT ·Modf(SB),NOSPLIT,$0
8 JMP ·modf(SB)
modf_arm.s 7 TEXT ·Modf(SB),NOSPLIT,$0
8 B ·modf(SB)
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestModf.rs 26 float out = modf(inV, &outIntegralPart);
33 float2 out = modf(inV, &outIntegralPart);
40 float3 out = modf(inV, &outIntegralPart);
47 float4 out = modf(inV, &outIntegralPart);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/detail/
round_fwd.hpp 59 T modf(const T& v, T* ipart, const Policy& pol);
61 T modf(const T& v, T* ipart);
63 T modf(const T& v, int* ipart, const Policy& pol);
65 T modf(const T& v, int* ipart);
67 T modf(const T& v, long* ipart, const Policy& pol);
69 T modf(const T& v, long* ipart);
72 T modf(const T& v, boost::long_long_type* ipart, const Policy& pol);
74 T modf(const T& v, boost::long_long_type* ipart);
  /bionic/libstdc++/include/
cmath 62 using ::modf;
  /ndk/sources/cxx-stl/gabi++/include/
cmath 62 using ::modf;
  /ndk/sources/cxx-stl/system/include/
cmath 62 using ::modf;
  /prebuilts/ndk/current/sources/cxx-stl/gabi++/include/
cmath 62 using ::modf;
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/gabi++/include/
cmath 62 using ::modf;
  /prebuilts/ndk/current/sources/cxx-stl/system/include/
cmath 62 using ::modf;
  /bionic/libm/
fake_long_double.c 38 long double modfl(long double a1, long double* a2) { double i; double f = modf(a1, &i); *a2 = i; return f; }
  /external/opencv3/3rdparty/openexr/Imath/
ImathMath.h 106 static T modf (T x, T *iptr) function in struct:Imath::Math
109 T rval( ::modf (double(x),&ival));
139 static float modf (float x, float *y) {return ::modff (x, y);} function in struct:Imath::Math
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_modf.c 18 * modf(double x, double *iptr)
33 modf(double x, double *iptr) function
  /prebuilts/gdb/darwin-x86/include/python2.7/
pymath.h 35 extern double modf (double, double *);
  /prebuilts/gdb/linux-x86/include/python2.7/
pymath.h 35 extern double modf (double, double *);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pymath.h 35 extern double modf (double, double *);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pymath.h 35 extern double modf (double, double *);
  /external/skia/debugger/QT/
SkCanvasWidget.cpp 109 modf(fUserMatrix.getTranslateX(), &x);
110 modf(fUserMatrix.getTranslateY(), &y);
  /external/webrtc/webrtc/base/
timing.cc 82 double sec_int, sec_frac = modf(period, &sec_int);
  /ndk/tests/device/test-gnustl-full/unit/
cmath_test.cpp 95 CPPUNIT_CHECK( are_equals(std::modf(100.5, &double_val), 0.5) );
120 CPPUNIT_CHECK( are_equals(std::modf(100.5f, &float_val), 0.5f) );
146 CPPUNIT_CHECK( are_equals(std::modf(100.5l, &long_double_val), 0.5l) );
  /ndk/tests/device/test-stlport/unit/
cmath_test.cpp 95 CPPUNIT_CHECK( are_equals(std::modf(100.5, &double_val), 0.5) );
120 CPPUNIT_CHECK( are_equals(std::modf(100.5f, &float_val), 0.5f) );
146 CPPUNIT_CHECK( are_equals(std::modf(100.5l, &long_double_val), 0.5l) );
  /external/deqp/framework/delibs/debase/
deMath.c 132 double fract = modf(a, &integer);
  /external/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)]

Completed in 1201 milliseconds

1 2 3 4 5 6