/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_cmath.h | 376 _STLP_MATH_INLINE2PX(double, modf, modf) 447 _STLP_DEF_MATH_INLINE2P(modf, modf) 584 using ::modf;
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_cmath.h | 376 _STLP_MATH_INLINE2PX(double, modf, modf) 447 _STLP_DEF_MATH_INLINE2P(modf, modf) 584 using ::modf;
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/ |
_cmath.h | 376 _STLP_MATH_INLINE2PX(double, modf, modf) 447 _STLP_DEF_MATH_INLINE2P(modf, modf) 584 using ::modf;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/ |
math_fwd.hpp | 854 inline T modf(const T& v, boost::long_long_type* ipart){ using boost::math::modf; return modf(v, ipart, Policy()); }\ [all...] |
/external/deqp/framework/delibs/debase/ |
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/deqp/doc/testspecs/GLES3/ |
performance.shaders.operator.txt | 33 - modf
|
/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)]
|
/ndk/sources/android/support/src/ |
math_support.c | 90 __attribute__((weak)) long double modfl(long double x, long double* y) { return modf((double)x, (double *)y); }
|
/prebuilts/misc/common/swig/include/2.0.11/tcl/ |
typemaps.i | 201 For example, suppose you were trying to wrap the modf() function in the 205 double modf(double x, double *ip); 210 double modf(double x, double *OUTPUT); 216 double modf(double x, double *ip);
|
/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/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...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_math.py | 626 self.assertRaises(TypeError, math.modf) 634 testmodf('modf(1.5)', math.modf(1.5), (0.5, 1.0)) 635 testmodf('modf(-1.5)', math.modf(-1.5), (-0.5, -1.0)) 637 self.assertEqual(math.modf(INF), (0.0, INF)) 638 self.assertEqual(math.modf(NINF), (-0.0, NINF)) 640 modf_nan = math.modf(NAN) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_math.py | 626 self.assertRaises(TypeError, math.modf) 634 testmodf('modf(1.5)', math.modf(1.5), (0.5, 1.0)) 635 testmodf('modf(-1.5)', math.modf(-1.5), (-0.5, -1.0)) 637 self.assertEqual(math.modf(INF), (0.0, INF)) 638 self.assertEqual(math.modf(NINF), (-0.0, NINF)) 640 modf_nan = math.modf(NAN) [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/builtins/profiles/ |
130.glsl | 178 float modf(float x, out float i); 179 vec2 modf(vec2 x, out vec2 i); 180 vec3 modf(vec3 x, out vec3 i); 181 vec4 modf(vec4 x, out vec4 i);
|
140.glsl | 178 float modf(float x, out float i); 179 vec2 modf(vec2 x, out vec2 i); 180 vec3 modf(vec3 x, out vec3 i); 181 vec4 modf(vec4 x, out vec4 i); [all...] |
/external/compiler-rt/lib/dfsan/ |
done_abilist.txt | 60 fun:modf=functional
|
/external/mesa3d/src/glsl/builtins/profiles/ |
130.glsl | 178 float modf(float x, out float i); 179 vec2 modf(vec2 x, out vec2 i); 180 vec3 modf(vec3 x, out vec3 i); 181 vec4 modf(vec4 x, out vec4 i);
|
140.glsl | 178 float modf(float x, out float i); 179 vec2 modf(vec2 x, out vec2 i); 180 vec3 modf(vec3 x, out vec3 i); 181 vec4 modf(vec4 x, out vec4 i); [all...] |
/frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/ |
math.rs | 161 TEST_FN_FUNC_FN_PFN(modf);
|
/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/ |
math.rs.bak | 287 TEST_FN_FUNC_FN_PFN(modf);
|
/external/deqp/android/cts/ |
es31-lmp-mr1.txt | [all...] |