/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);
|
/system/extras/tests/bionic/libstdc++/ |
test_cmath.cpp | 60 using ::modf;
|
/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/4/platforms/android-5/arch-x86/usr/include/ |
cmath | 60 using ::modf;
|
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/ |
cmath | 60 using ::modf;
|
/prebuilts/ndk/5/sources/cxx-stl/system/include/ |
cmath | 62 using ::modf;
|
/prebuilts/ndk/6/sources/cxx-stl/system/include/ |
cmath | 62 using ::modf;
|
/prebuilts/ndk/7/sources/cxx-stl/gabi++/include/ |
cmath | 62 using ::modf;
|
/prebuilts/ndk/7/sources/cxx-stl/system/include/ |
cmath | 62 using ::modf;
|
/prebuilts/ndk/8/sources/cxx-stl/gabi++/include/ |
cmath | 62 using ::modf;
|
/prebuilts/ndk/8/sources/cxx-stl/system/include/ |
cmath | 62 using ::modf;
|
/prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/ |
cmath | 62 using ::modf;
|
/prebuilts/ndk/9/sources/cxx-stl/system/include/ |
cmath | 62 using ::modf;
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_modf.c | 18 * modf(double x, double *iptr) 33 modf(double x, double *iptr) function
|
/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/chromium_org/third_party/libjingle/source/talk/base/ |
timing.cc | 98 double sec_int, sec_frac = modf(period, &sec_int);
|
/external/stlport/test/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-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) );
|
/bionic/libm/ |
fake_long_double.c | 61 long double modfl(long double a1, long double* a2) { return modf(a1, (double*) a2); }
|
/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)]
|
/frameworks/rs/cpu_ref/ |
rsCpuRuntimeMathFuncs.cpp | 73 float modf(float v, float* ptr) {return SC_modff(v, ptr);} function
|