Home
last modified time | relevance | path

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

1234

/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/clang/lib/Headers/
D__clang_cuda_math_forward_declares.h143 __DEVICE__ double modf(double, double *);
144 __DEVICE__ float modf(float, float *);
238 using ::modf;
D__clang_cuda_cmath.h122 __DEVICE__ float modf(float __x, float *__iptr) { return ::modff(__x, __iptr); } in modf() function
/external/skia/debugger/QT/
DSkCanvasWidget.cpp109 modf(fUserMatrix.getTranslateX(), &x); in snapWidgetTransform()
110 modf(fUserMatrix.getTranslateY(), &y); in snapWidgetTransform()
/external/ltp/testcases/misc/math/float/
Dfloat_exp_log.c41 {FUNC_MODF, 50, modf, "modf", "modf_inp.ref", "modf_out.ref",
/external/autotest/client/site_tests/graphics_dEQP/expectations/skylake/
Dgles31-master.Flaky.bz2 ... GLES31.functional.shaders.builtin_functions.common.modf.vec2_lowp_compute 26dEQP-GLES31.functional.shaders ...
/external/webrtc/webrtc/base/
Dtiming.cc82 double sec_int, sec_frac = modf(period, &sec_int); in IdleWait()
/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/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/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/ltp/testcases/misc/math/float/exp_log/
Dgenmodf.c63 tabR[i] = modf(TestInputValue, &tabRI[i]); in create_Result_file()
/external/mesa3d/src/glsl/builtins/ir/
Dmodf.ir1 ((function modf
/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/clang/test/CodeGen/
Dlibcall-declarations.c31 double modf(double, double *);
268 F(ldexpl), F(modf), F(modff), F(modfl), F(nan),
/external/syslinux/com32/lua/src/
Dlmathlib.c100 lua_Number fp = l_mathop(modf)(luaL_checknumber(L, 1), &ip); in math_modf()
/external/skia/third_party/lua/src/
Dlmathlib.c100 lua_Number fp = l_mathop(modf)(luaL_checknumber(L, 1), &ip); in math_modf()
/external/protobuf/objectivec/
DGPBWellKnownTypes.m47 NSTimeInterval nanos = modf(time, &seconds);
/external/autotest/client/site_tests/graphics_dEQP/expectations/mali-t760/
Dgles31-master.NotSupported.bz21dEQP-GLES31.functional.draw_indirect.compute_interop.large.drawarrays_combined_grid_1200x1200_drawcount_1 2dEQP-GLES31. ...
/external/ltp/doc/testcases/
Dmisc.txt91 - Functions that manipulate floating-point numbers (modf, ldexp, frexp),
/external/deqp/doc/testspecs/GLES3/
Dperformance.shaders.operator.txt33 - modf
/external/libxml2/
Dtrionan.c423 (fraction = modf(number, &integral),
/external/libcxx/include/
Dcmath110 floating_point modf (floating_point value, floating_point* iptr);
370 using ::modf;

1234