/external/opencv3/3rdparty/openexr/Imath/ |
D | ImathMath.h | 106 static T modf (T x, T *iptr) in modf() function 109 T rval( ::modf (double(x),&ival)); in modf() 139 static float modf (float x, float *y) {return ::modff (x, y);}
|
/external/vulkan-validation-layers/libs/glm/detail/ |
D | func_common.inl | 303 // modf 305 GLM_FUNC_QUALIFIER genType modf 313 "'modf' only accept floating-point inputs"); 315 return std::modf(x, &i); 319 GLM_FUNC_QUALIFIER detail::tvec2<T, P> modf function 326 modf(x.x, i.x), 327 modf(x.y, i.y)); 331 GLM_FUNC_QUALIFIER detail::tvec3<T, P> modf function 338 modf(x.x, i.x), 339 modf(x.y, i.y), [all …]
|
D | func_common.hpp | 164 GLM_FUNC_DECL genType modf(
|
/external/skia/debugger/QT/ |
D | SkCanvasWidget.cpp | 109 modf(fUserMatrix.getTranslateX(), &x); in snapWidgetTransform() 110 modf(fUserMatrix.getTranslateY(), &y); in snapWidgetTransform()
|
/external/webrtc/webrtc/base/ |
D | timing.cc | 82 double sec_int, sec_frac = modf(period, &sec_int); in IdleWait()
|
/external/mesa3d/src/glsl/builtins/ir/ |
D | modf.ir | 1 ((function modf
|
/external/bison/darwin-lib/ |
D | math.h | 1888 # undef modf 1889 # define modf rpl_modf 1891 _GL_FUNCDECL_RPL (modf, double, (double x, double *iptr) _GL_ARG_NONNULL ((2))); 1892 _GL_CXXALIAS_RPL (modf, double, (double x, double *iptr)); 1894 _GL_CXXALIAS_SYS (modf, double, (double x, double *iptr)); 1896 _GL_CXXALIASWARN (modf); 1898 # undef modf 1900 _GL_WARN_ON_USE (modf, "modf has portability problems - "
|
/external/bison/lib/ |
D | math.in.h | 1576 # undef modf 1577 # define modf rpl_modf macro 1579 _GL_FUNCDECL_RPL (modf, double, (double x, double *iptr) _GL_ARG_NONNULL ((2))); 1580 _GL_CXXALIAS_RPL (modf, double, (double x, double *iptr)); 1582 _GL_CXXALIAS_SYS (modf, double, (double x, double *iptr)); 1584 _GL_CXXALIASWARN (modf); 1586 # undef modf 1588 _GL_WARN_ON_USE (modf, "modf has portability problems - "
|
/external/bison/linux-lib/ |
D | math.h | 1888 # undef modf 1889 # define modf rpl_modf 1891 _GL_FUNCDECL_RPL (modf, double, (double x, double *iptr) _GL_ARG_NONNULL ((2))); 1892 _GL_CXXALIAS_RPL (modf, double, (double x, double *iptr)); 1894 _GL_CXXALIAS_SYS (modf, double, (double x, double *iptr)); 1896 _GL_CXXALIASWARN (modf); 1898 # undef modf 1900 _GL_WARN_ON_USE (modf, "modf has portability problems - "
|
/external/skia/tools/ |
D | generate_fir_coeff.py | 42 sample_offsets = [math.modf((float(subpxl_index)/subpxls_per_pixel + 1.0/(2.0*subpxls_per_pixel))*s…
|
/external/deqp/framework/delibs/debase/ |
D | deMath.c | 132 double fract = modf(a, &integer); in deRoundEven()
|
D | deMath.h | 92 DE_INLINE float deFloatModf (float x, float* i) { double j = 0; double ret = modf(x, &j); *i =… in deFloatModf() 106 DE_INLINE double deModf (double x, double* i) { return modf(x, i); } in deModf()
|
/external/skia/src/pdf/ |
D | SkPDFUtils.cpp | 321 double fracPart = std::modf(static_cast<double>(value), &intPart); in FloatToDecimal() 352 fracPart = std::modf(fracPart * 10.0, &intPart); in FloatToDecimal()
|
/external/clang/test/CodeGen/ |
D | libcall-declarations.c | 31 double modf(double, double *); 268 F(ldexpl), F(modf), F(modff), F(modfl), F(nan),
|
/external/deqp/doc/testspecs/GLES3/ |
D | performance.shaders.operator.txt | 33 - modf
|
D | functional.shaders.builtin_functions.precision.txt | 161 | modf(x, i) | 0 |
|
/external/libxml2/ |
D | trionan.c | 423 (fraction = modf(number, &integral),
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | math_h.pass.cpp | 144 static_assert((std::is_same<decltype(modf((double)0, (double*)0)), double>::value), ""); in test_modf() 148 assert(modf(1., &i) == 0); in test_modf()
|
/external/opencv3/modules/videoio/src/ |
D | cap_gstreamer.cpp | 1588 decimal = modf (decimal, &whole); in toFraction() 1590 if (modf(denominator * decimal, &dummy) < 0.001f) in toFraction()
|
/external/ltrace/etc/ |
D | libm.so.conf | 328 double modf(double, +double *);
|
/external/libcxx/include/ |
D | cmath | 110 floating_point modf (floating_point value, floating_point* iptr); 934 // modf 936 using ::modf; 940 inline _LIBCPP_INLINE_VISIBILITY float modf(float __lcpp_x, float* __lcpp_y) _NOEXCEPT … 941 inline _LIBCPP_INLINE_VISIBILITY long double modf(long double __lcpp_x, long double* __lcpp_y) _NOE…
|
/external/compiler-rt/lib/dfsan/ |
D | done_abilist.txt | 60 fun:modf=functional
|
/external/mesa3d/src/glsl/builtins/profiles/ |
D | 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);
|
/external/libcxx/test/std/numerics/c.math/ |
D | cmath.pass.cpp | 51 Ambiguous modf(Ambiguous, Ambiguous*){ return Ambiguous(); } in modf() function 409 static_assert((std::is_same<decltype(std::modf((float)0, (float*)0)), float>::value), ""); in test_modf() 410 static_assert((std::is_same<decltype(std::modf((double)0, (double*)0)), double>::value), ""); in test_modf() 411 …static_assert((std::is_same<decltype(std::modf((long double)0, (long double*)0)), long double>::va… in test_modf() 414 static_assert((std::is_same<decltype(modf(Ambiguous(), (Ambiguous*)0)), Ambiguous>::value), ""); in test_modf() 416 assert(std::modf(1., &i) == 0); in test_modf()
|
/external/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.def | 747 /// double modf(double x, double *iptr); 748 TLI_DEFINE_ENUM_INTERNAL(modf) 749 TLI_DEFINE_STRING_INTERNAL("modf")
|