HomeSort by relevance Sort by last modified time
    Searched refs:replicate (Results 1 - 25 of 45) sorted by null

1 2

  /external/eigen/doc/snippets/
MatrixBase_replicate.cpp 3 cout << "m.replicate<3,2>() = ..." << endl;
4 cout << m.replicate<3,2>() << endl;
MatrixBase_replicate_int_int.cpp 3 cout << "v.replicate(2,5) = ..." << endl;
4 cout << v.replicate(2,5) << endl;
DirectionWise_replicate.cpp 3 cout << "m.colwise().replicate<3>() = ..." << endl;
4 cout << m.colwise().replicate<3>() << endl;
DirectionWise_replicate_int.cpp 3 cout << "v.rowwise().replicate(5) = ..." << endl;
4 cout << v.rowwise().replicate(5) << endl;
  /external/eigen/test/
array_replicate.cpp 12 template<typename MatrixType> void replicate(const MatrixType& m) function
15 Replicate.cpp
41 VERIFY_IS_APPROX(x1, m1.replicate(f1,f2));
46 VERIFY_IS_APPROX(x2, (m2.template replicate<2,3>()));
50 VERIFY_IS_APPROX(x2, (m2.template replicate<1,3>()));
54 VERIFY_IS_APPROX(vx1+vx1, vx1+(m2.template replicate<3,1>()));
56 vx1=m2+(m2.colwise().replicate(1));
59 VERIFY_IS_APPROX(m2.coeff(0), (m2.template replicate<3,1>().coeff(m2.rows())));
64 VERIFY_IS_APPROX(x2, v1.rowwise().replicate(f1));
69 VERIFY_IS_APPROX(vx1, v1.colwise().replicate(f2))
    [all...]
eigensolver_complex.cpp 66 Matrix<RealScalar,Dynamic,Dynamic> diffs = (vec1.rowwise().replicate(n) - vec2.rowwise().replicate(n).transpose()).cwiseAbs2();
evaluators.cpp 338 // test Replicate
344 VERIFY_IS_APPROX_EVALUATOR(matXcd, matXcd_ref.replicate(2,2));
345 VERIFY_IS_APPROX_EVALUATOR(matXcd, (matXcd_ref.replicate<2,2>()));
product_extra.cpp 320 VERIFY_IS_APPROX(r, v.rowwise().replicate(n));
322 VERIFY_IS_APPROX(r, v.rowwise().replicate(n).transpose());
  /external/swiftshader/src/Renderer/
PixelProcessor.hpp 148 referenceQ = replicate(reference);
149 testMaskQ = replicate(testMask);
150 writeMaskQ = replicate(writeMask);
153 referenceMaskedSignedQ = replicate(((reference & testMask) + 0x80) & 0xFF);
156 static int64_t replicate(int b) function in struct:sw::PixelProcessor::Stencil
Renderer.cpp 504 data->a2c0 = replicate(ref - margin * 0.6f);
505 data->a2c1 = replicate(ref - margin * 0.2f);
506 data->a2c2 = replicate(ref + margin * 0.2f);
507 data->a2c3 = replicate(ref + margin * 0.6f);
511 data->a2c0 = replicate(ref - margin * 0.3f);
512 data->a2c1 = replicate(ref + margin * 0.3f);
576 data->Wx16 = replicate(W * 16);
577 data->Hx16 = replicate(H * 16);
578 data->X0x16 = replicate(X0 * 16 - 8);
579 data->Y0x16 = replicate(Y0 * 16 - 8)
    [all...]
PixelProcessor.cpp 897 fog.colorF[0] = replicate(fogColor.r);
898 fog.colorF[1] = replicate(fogColor.g);
899 fog.colorF[2] = replicate(fogColor.b);
904 fog.densityE = replicate(-fogDensity * 1.442695f); // 1/e^x = 2^(-x*1.44)
905 fog.density2E = replicate(-fogDensity * fogDensity * 1.442695f);
942 fog.scale = replicate(fogScale);
943 fog.offset = replicate(fogOffset);
    [all...]
VertexProcessor.cpp 331 ff.attenuationConstant[light] = replicate(constant);
332 ff.attenuationLinear[light] = replicate(linear);
333 ff.attenuationQuadratic[light] = replicate(quadratic);
697 point.pointSize = replicate(pointSize);
  /external/eigen/Eigen/src/Core/
Replicate.h 17 struct traits<Replicate<MatrixType,RowFactor,ColFactor> >
46 * \class Replicate
56 * It is the return type of DenseBase::replicate() and most of the time
59 * \sa DenseBase::replicate()
61 template<typename MatrixType,int RowFactor,int ColFactor> class Replicate
62 : public internal::dense_xpr_base< Replicate<MatrixType,RowFactor,ColFactor> >::type
64 typedef typename internal::traits<Replicate>::MatrixTypeNested MatrixTypeNested;
65 typedef typename internal::traits<Replicate>::_MatrixTypeNested _MatrixTypeNested;
68 typedef typename internal::dense_xpr_base<Replicate>::type Base;
69 EIGEN_DENSE_PUBLIC_INTERFACE(Replicate)
119 DenseBase<Derived>::replicate() const function in class:Eigen::DenseBase
134 VectorwiseOp<ExpressionType,Direction>::replicate(Index factor) const function in class:Eigen::VectorwiseOp
    [all...]
DenseBase.h 543 const Replicate<Derived,RowFactor,ColFactor> replicate() const;
550 * \sa VectorwiseOp::replicate(), DenseBase::replicate<int,int>(), class Replicate
554 const Replicate<Derived, Dynamic, Dynamic> replicate(Index rowFactor, Index colFactor) const function in class:Eigen::DenseBase
556 return Replicate<Derived, Dynamic, Dynamic>(derived(), rowFactor, colFactor);
VectorwiseOp.h 208 typedef Replicate<OtherDerived,
231 typedef Replicate<OtherDerived,
471 typedef Replicate<ExpressionType,(isVertical?Dynamic:1),(isHorizontal?Dynamic:1)> ReplicateReturnType;
473 const ReplicateReturnType replicate(Index factor) const;
481 * \sa VectorwiseOp::replicate(Index), DenseBase::replicate(), class Replicate
485 template<int Factor> const Replicate<ExpressionType,isVertical*Factor+isHorizontal,isHorizontal*Factor+isVertical>
487 replicate(Index factor = Factor) const function in class:Eigen::VectorwiseOp
489 return Replicate<ExpressionType,(isVertical?Factor:1),(isHorizontal?Factor:1)
    [all...]
  /external/libvpx/libvpx/vp8/common/x86/
mfqe_sse2.asm 36 pshuflw xmm0, xmm0, 0x0 ; replicate to all low words
37 punpcklqdq xmm0, xmm0 ; replicate to all hi words
113 pshuflw xmm0, xmm0, 0x0 ; replicate to all low words
114 punpcklqdq xmm0, xmm0 ; replicate to all hi words
  /external/libvpx/libvpx/vp9/common/x86/
vp9_mfqe_sse2.asm 37 pshuflw xmm0, xmm0, 0x0 ; replicate to all low words
38 punpcklqdq xmm0, xmm0 ; replicate to all hi words
114 pshuflw xmm0, xmm0, 0x0 ; replicate to all low words
115 punpcklqdq xmm0, xmm0 ; replicate to all hi words
  /external/tensorflow/tensorflow/contrib/tpu/python/tpu/
tpu.py 113 tpu.replicate() computation with the attribute "_tpu_replicate=XYZ", where XYZ
118 if a `ResourceVariable` is constructed inside a tpu.replicate() block, the
184 def replicate(computation, function
192 computation: A Python function that builds the computation to replicate.
231 raise TypeError("tpu.replicate() inputs must be a list of lists/tuples")
277 with ops.name_scope(name, "replicate"):
354 # straight to an output would bypass the replicate(). This would be bad
486 outputs = replicate(
498 # There were no outputs from the computation and replicate returned a list
625 return replicate(
    [all...]
  /external/sonivox/jet_tools/JetCreator/
JetCreator.py 425 for replicate in dlg.lstReplicate:
426 self.jet_file.AddSegment(replicate[0], dlg.GetValue(JetDefs.F_MIDIFILE),
427 mbtFct(replicate[1],-1), mbtFct(replicate[2],-1),
502 for replicate in dlg.lstReplicate:
503 self.jet_file.AddSegment(replicate[0], dlg.GetValue(JetDefs.F_MIDIFILE),
504 mbtFct(replicate[1],-1), mbtFct(replicate[2],-1),
660 for replicate in dlg.lstReplicate:
661 self.jet_file.AddEvent(self.currentSegmentName, replicate[0],
    [all...]
  /external/swiftshader/src/Common/
Types.hpp 142 inline float4 replicate(float f) function in namespace:sw
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/aarch64/
neon-vfp-reglist.s 68 # replicate form
neon-vfp-reglist-post.s 101 # Post Index Vector-element form with replicate (Immediate offset)
171 # Post Index Vector-element form with replicate (Register offset)
  /prebuilts/go/darwin-x86/src/go/internal/gccgoimporter/
importer.go 41 // This is intended to replicate the logic in gofrontend.
74 // This is intended to replicate the logic in gofrontend.
  /prebuilts/go/linux-x86/src/go/internal/gccgoimporter/
importer.go 41 // This is intended to replicate the logic in gofrontend.
74 // This is intended to replicate the logic in gofrontend.
  /external/eigen/Eigen/src/Geometry/
Homogeneous.h 201 Replicate<HNormalized_Factors,
276 .template replicate<MatrixType::ColsAtCompileTime>(m_rhs.cols());
314 .template replicate<MatrixType::RowsAtCompileTime>(m_lhs.rows());
403 typedef Replicate<const ConstantColumn,Rows,1> ConstantBlock;
456 typedef Replicate<const ConstantColumn,1,Cols> ConstantBlock;

Completed in 850 milliseconds

1 2