Searched refs:fma (Results 1 - 25 of 43) sorted by relevance

12

/external/opencv3/modules/stitching/src/opencl/
H A Dwarpers.cl60 float x_ = fma(u, scale, -ct[0]);
70 float y_ = fma(v, scale, -ct[1]);
72 float x = fma(ck_rinv[0], x_, fma(ck_rinv[1], y_, ck_rinv[2] * ct1));
73 float y = fma(ck_rinv[3], x_, fma(ck_rinv[4], y_, ck_rinv[5] * ct1));
74 float z = fma(ck_rinv[6], x_, fma(ck_rinv[7], y_, ck_rinv[8] * ct1));
112 x = fma(ck_rinv[0], x_, fma(ck_rin
[all...]
/external/opencv3/modules/imgproc/src/opencl/
H A Dcvtcolor.cl154 dst[0] = fma(src_pix.B_COMP, 0.114f, fma(src_pix.G_COMP, 0.587f, src_pix.R_COMP * 0.299f));
231 const DATA_TYPE Y = fma(b, coeffs[0], fma(g, coeffs[1], r * coeffs[2]));
232 const DATA_TYPE U = fma(b - Y, coeffs[3], HALF_MAX);
233 const DATA_TYPE V = fma(r - Y, coeffs[4], HALF_MAX);
281 float r = fma(V - HALF_MAX, coeffs[3], Y);
282 float g = fma(V - HALF_MAX, coeffs[2], fma(U - HALF_MAX, coeffs[1], Y));
283 float b = fma(
[all...]
H A Dwarp_affine.cl107 int X0 = X0_ + rint(fma(M[1], dy, M[2]) * AB_SCALE) + round_delta;
108 int Y0 = Y0_ + rint(fma(M[4], dy, M[5]) * AB_SCALE) + round_delta;
149 int X0 = X0_ + rint(fma(M[1], dy, M[2]) * AB_SCALE) + ROUND_DELTA;
150 int Y0 = Y0_ + rint(fma(M[4], dy, M[5]) * AB_SCALE) + ROUND_DELTA;
189 WT val = fma(tabx2, fma(v0, taby2, v2 * taby), tabx * fma(v1, taby2, v3 * taby));
214 xsum = fma(convertToWT(loadpix(srcptr + mad24(x, pixsize, src_index))), coeffs_x[x], xsum);
221 xsum = fma(sx + x >= 0 && sx + x < src_cols ?
224 sum = fma(xsu
[all...]
H A Dcanny.cl85 floatN dx = fma(2, smem[idx + GRP_SIZEX + 6] - smem[idx + GRP_SIZEX + 4],
88 floatN dy = fma(2, smem[idx + 1] - smem[idx + 2 * GRP_SIZEX + 9],
92 floatN magN = fma(dx, dx, dy * dy);
H A Dremap.cl440 xsum = fma(convertToWT(loadpix(srcptr + mad24(xp, TSIZE, src_index))), coeffs_x[xp], xsum);
447 xsum = fma(sx + xp >= 0 && sx + xp < src_cols ?
450 sum = fma(xsum, coeffs_y[yp], sum);
453 sum = fma(scalar, coeffs_y[yp], sum);
H A Dpyr_down.cl87 #define MAD(x,y,z) fma((x),(y),(z))
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFunctionMultiArgs.java215 FunctionMultiArgs fma = (FunctionMultiArgs) expr;
219 if ((null == fma) || (fma.m_args.length != n))
224 if (!m_args[i].deepEquals(fma.m_args[i]))
229 else if (null != fma.m_args)
/external/flac/libFLAC/include/private/
H A Dcpu.h132 FLAC__bool fma; member in struct:__anon5966
144 FLAC__bool fma; member in struct:__anon5967
/external/opencv3/modules/core/src/opencl/
H A Dconvert.cl71 dst[0] = convertToDT(fma(convertToWT(src[0]), alpha, beta));
H A Darithm.cl250 #define PROCESS_ELEM storedst(convertToDT(fma(srcelem1, alpha, fma(srcelem2, beta, gamma))))
313 workT value = fma(srcelem1, (workT)(alpha), (workT)(beta)); \
323 #define PROCESS_ELEM storedst(convertToDT(fma(srcelem1, (workT)(alpha), srcelem2)))
/external/clang/test/CodeGen/
H A Dlibcalls.c62 // CHECK-YES: call float @llvm.fma.f32
63 // CHECK-NO: call float @llvm.fma.f32
66 // CHECK-YES: call double @llvm.fma.f64
67 // CHECK-NO: call double @llvm.fma.f64
68 double l1 = fma(a1, a1, a1);
70 // CHECK-YES: call x86_fp80 @llvm.fma.f80
71 // CHECK-NO: call x86_fp80 @llvm.fma.f80
75 // CHECK-YES: declare float @llvm.fma.f32(float, float, float) [[NUW_RN:#[0-9]+]]
76 // CHECK-YES: declare double @llvm.fma.f64(double, double, double) [[NUW_RN]]
77 // CHECK-YES: declare x86_fp80 @llvm.fma
[all...]
H A Dlibcall-declarations.c91 double fma(double, double, double);
280 F(floorl), F(fma), F(fmaf), F(fmal), F(fmax),
390 // CHECK-NOERRNO: declare double @fma(double, double, double) [[NUW]]
/external/flac/libFLAC/
H A Dcpu.c61 info->ia32.fma = false;
70 info->x86.fma = false;
186 info->ia32.fma = (flags_ecx & FLAC__CPUINFO_IA32_CPUID_FMA )? true : false;
204 fprintf(stderr, " FMA ........ %c\n", info->ia32.fma ? 'Y' : 'n');
364 info->x86.fma = (flags_ecx & FLAC__CPUINFO_IA32_CPUID_FMA )? true : false;
377 fprintf(stderr, " FMA ........ %c\n", info->x86.fma ? 'Y' : 'n');
/external/v8/src/arm64/
H A Dutils-arm64.h140 return fma(op1, op2, a);
/external/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp78 Ambiguous fma(Ambiguous, Ambiguous, Ambiguous){ return Ambiguous(); } function
910 static_assert((std::is_same<decltype(std::fma((bool)0, (float)0, (float)0)), double>::value), "");
911 static_assert((std::is_same<decltype(std::fma((char)0, (float)0, (float)0)), double>::value), "");
912 static_assert((std::is_same<decltype(std::fma((unsigned)0, (float)0, (float)0)), double>::value), "");
913 static_assert((std::is_same<decltype(std::fma((float)0, (int)0, (float)0)), double>::value), "");
914 static_assert((std::is_same<decltype(std::fma((float)0, (long)0, (float)0)), double>::value), "");
915 static_assert((std::is_same<decltype(std::fma((float)0, (float)0, (unsigned long long)0)), double>::value), "");
916 static_assert((std::is_same<decltype(std::fma((float)0, (float)0, (double)0)), double>::value), "");
917 static_assert((std::is_same<decltype(std::fma((float)0, (float)0, (long double)0)), long double>::value), "");
918 static_assert((std::is_same<decltype(std::fma((floa
[all...]
/external/bison/darwin-lib/
H A Dmath.h1126 # undef fma
1127 # define fma rpl_fma
1129 _GL_FUNCDECL_RPL (fma, double, (double x, double y, double z));
1130 _GL_CXXALIAS_RPL (fma, double, (double x, double y, double z));
1133 _GL_FUNCDECL_SYS (fma, double, (double x, double y, double z));
1135 _GL_CXXALIAS_SYS (fma, double, (double x, double y, double z));
1137 _GL_CXXALIASWARN (fma);
1139 # undef fma macro
1141 _GL_WARN_ON_USE (fma, "fma i
[all...]
/external/bison/lib/
H A Dmath.in.h814 # undef fma macro
815 # define fma rpl_fma macro
817 _GL_FUNCDECL_RPL (fma, double, (double x, double y, double z));
818 _GL_CXXALIAS_RPL (fma, double, (double x, double y, double z));
821 _GL_FUNCDECL_SYS (fma, double, (double x, double y, double z));
823 _GL_CXXALIAS_SYS (fma, double, (double x, double y, double z));
825 _GL_CXXALIASWARN (fma); variable
827 # undef fma macro
829 _GL_WARN_ON_USE (fma, "fma i
[all...]
/external/bison/linux-lib/
H A Dmath.h1126 # undef fma
1127 # define fma rpl_fma
1129 _GL_FUNCDECL_RPL (fma, double, (double x, double y, double z));
1130 _GL_CXXALIAS_RPL (fma, double, (double x, double y, double z));
1133 _GL_FUNCDECL_SYS (fma, double, (double x, double y, double z));
1135 _GL_CXXALIAS_SYS (fma, double, (double x, double y, double z));
1137 _GL_CXXALIASWARN (fma);
1139 # undef fma macro
1141 _GL_WARN_ON_USE (fma, "fma i
[all...]
/external/vulkan-validation-layers/libs/glm/detail/
H A Dfunc_common.hpp431 /// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/fma.xml">GLSL fma man page</a>
434 GLM_FUNC_DECL genType fma(genType const & a, genType const & b, genType const & c);
/external/vulkan-validation-layers/libs/glm/gtx/
H A Dsimd_vec4.hpp390 detail::fvec4SIMD fma(
/external/vixl/src/vixl/
H A Dutils.h172 return fma(op1, op2, a);
/external/clang/lib/Headers/
H A Dtgmath.h731 // fma
741 {return fma(__x, __y, __z);}
748 #undef fma macro
749 #define fma(__x, __y, __z) \ macro
/external/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp413 static_assert((std::is_same<decltype(fma((double)0, (double)0, (double)0)), double>::value), "");
416 assert(fma(1,1,1) == 2);
/external/ltrace/etc/
H A Dlibm.so.conf376 double fma(double, double, double);
/external/llvm/lib/Analysis/
H A DVectorUtils.cpp56 case Intrinsic::fma:

Completed in 398 milliseconds

12