Searched refs:modf (Results 1 – 25 of 136) sorted by relevance
123456
/external/deqp-deps/glslang/Test/ |
D | 140.frag | 40 vec2 r1 = modf(v.xy, v.zw); // ERROR, v.zw not l-value 41 vec2 r2 = modf(o.xy, o.zw);
|
D | spv.400.frag | 96 doublev += modf(doublev, doublev); 97 dvec2v += modf(dvec2v, dvec2v); 98 dvec3v += modf(dvec3v, dvec3v); 99 dvec4v += modf(dvec4v, dvec4v);
|
D | 400.geom | 189 doublev += modf(doublev, doublev); 190 dvec2v += modf(dvec2v, dvec2v); 191 dvec3v += modf(dvec3v, dvec3v); 192 dvec4v += modf(dvec4v, dvec4v);
|
D | 130.vert | 33 vec3 v11 = modf(modfIn, modfOut);
|
D | 300BuiltIns.frag | 47 vec3 v11 = modf(x, modfOut);
|
D | spv.Operations.frag | 60 v += modf(v, v);
|
D | Operations.frag | 66 v += modf(v, v);
|
/external/deqp/data/gles3/shaders/ |
D | indexing.test | 89 modf(5.5, v[u_zero + 3]); 107 modf(5.5, f); 130 modf(g, f); 208 modf(g, f);
|
/external/clang/lib/Headers/ |
D | __clang_cuda_math_forward_declares.h | 143 __DEVICE__ double modf(double, double *); 144 __DEVICE__ float modf(float, float *); 238 using ::modf;
|
D | __clang_cuda_cmath.h | 122 __DEVICE__ float modf(float __x, float *__iptr) { return ::modff(__x, __iptr); } in modf() function
|
/external/ltp/testcases/misc/math/float/ |
D | float_exp_log.c | 41 {FUNC_MODF, 50, modf, "modf", "modf_inp.ref", "modf_out.ref",
|
/external/bcc/src/lua/bcc/vendor/ |
D | posix.lua | 58 local s, ns = math.modf(seconds)
|
/external/webrtc/webrtc/base/ |
D | timing.cc | 82 double sec_int, sec_frac = modf(period, &sec_int); in IdleWait()
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | upgrade_memory_model.h | 124 void UpgradeExtInst(Instruction* modf);
|
/external/python/cpython2/Include/ |
D | pymath.h | 35 extern double modf (double, double *);
|
/external/ltp/testcases/misc/math/float/exp_log/ |
D | genmodf.c | 63 tabR[i] = modf(TestInputValue, &tabRI[i]); in create_Result_file()
|
/external/python/cpython3/Include/ |
D | pymath.h | 35 extern double modf (double, double *);
|
/external/skia/tools/fonts/ |
D | generate_fir_coeff.py | 46 math.modf(
|
/external/skqp/tools/fonts/ |
D | generate_fir_coeff.py | 46 math.modf(
|
/external/deqp/framework/delibs/debase/ |
D | deMath.c | 132 double fract = modf(a, &integer); in deRoundEven()
|
D | deMath.h | 93 DE_INLINE float deFloatModf (float x, float* i) { double j = 0; double ret = modf(x, &j); *i =… in deFloatModf() 107 DE_INLINE double deModf (double x, double* i) { return modf(x, i); } in deModf()
|
/external/deqp-deps/glslang/Test/baseResults/ |
D | 140.frag.out | 39 0:40 modf ( global 2-component vector of float) 57 0:41 modf ( global 2-component vector of float)
|
/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/python/cpython2/Lib/test/ |
D | test_math.py | 632 self.assertRaises(TypeError, math.modf) 640 testmodf('modf(1.5)', math.modf(1.5), (0.5, 1.0)) 641 testmodf('modf(-1.5)', math.modf(-1.5), (-0.5, -1.0)) 643 self.assertEqual(math.modf(INF), (0.0, INF)) 644 self.assertEqual(math.modf(NINF), (-0.0, NINF)) 646 modf_nan = math.modf(NAN)
|
/external/python/cpython2/Doc/library/ |
D | math.rst | 131 .. function:: modf(x) 146 Note that :func:`frexp` and :func:`modf` have a different call/return pattern 151 For the :func:`ceil`, :func:`floor`, and :func:`modf` functions, note that *all*
|
123456