Home
last modified time | relevance | path

Searched refs:modf (Results 1 – 25 of 64) sorted by relevance

123

/external/opencv3/3rdparty/openexr/Imath/
DImathMath.h106 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/
Dfunc_common.inl303 // 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 …]
Dfunc_common.hpp164 GLM_FUNC_DECL genType modf(
/external/skia/debugger/QT/
DSkCanvasWidget.cpp109 modf(fUserMatrix.getTranslateX(), &x); in snapWidgetTransform()
110 modf(fUserMatrix.getTranslateY(), &y); in snapWidgetTransform()
/external/webrtc/webrtc/base/
Dtiming.cc82 double sec_int, sec_frac = modf(period, &sec_int); in IdleWait()
/external/mesa3d/src/glsl/builtins/ir/
Dmodf.ir1 ((function modf
/external/bison/darwin-lib/
Dmath.h1888 # 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/
Dmath.in.h1576 # 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/
Dmath.h1888 # 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/
Dgenerate_fir_coeff.py42 sample_offsets = [math.modf((float(subpxl_index)/subpxls_per_pixel + 1.0/(2.0*subpxls_per_pixel))*s…
/external/deqp/framework/delibs/debase/
DdeMath.c132 double fract = modf(a, &integer); in deRoundEven()
DdeMath.h92 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/
DSkPDFUtils.cpp321 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/
Dlibcall-declarations.c31 double modf(double, double *);
268 F(ldexpl), F(modf), F(modff), F(modfl), F(nan),
/external/deqp/doc/testspecs/GLES3/
Dperformance.shaders.operator.txt33 - modf
Dfunctional.shaders.builtin_functions.precision.txt161 | modf(x, i) | 0 |
/external/libxml2/
Dtrionan.c423 (fraction = modf(number, &integral),
/external/libcxx/test/std/depr/depr.c.headers/
Dmath_h.pass.cpp144 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/
Dcap_gstreamer.cpp1588 decimal = modf (decimal, &whole); in toFraction()
1590 if (modf(denominator * decimal, &dummy) < 0.001f) in toFraction()
/external/ltrace/etc/
Dlibm.so.conf328 double modf(double, +double *);
/external/libcxx/include/
Dcmath110 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/
Ddone_abilist.txt60 fun:modf=functional
/external/mesa3d/src/glsl/builtins/profiles/
D130.glsl178 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/
Dcmath.pass.cpp51 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/
DTargetLibraryInfo.def747 /// double modf(double x, double *iptr);
748 TLI_DEFINE_ENUM_INTERNAL(modf)
749 TLI_DEFINE_STRING_INTERNAL("modf")

123