Home
last modified time | relevance | path

Searched refs:homogeneous (Results 1 – 25 of 37) sorted by relevance

12

/external/eigen/test/
Dgeo_homogeneous.cpp13 template<typename Scalar,int Size> void homogeneous(void) in homogeneous() function
39 VERIFY_IS_APPROX(v0.homogeneous(), hv0); in homogeneous()
42 VERIFY_IS_APPROX(v0.homogeneous().sum(), hv0.sum()); in homogeneous()
43 VERIFY_IS_APPROX(v0.homogeneous().minCoeff(), hv0.minCoeff()); in homogeneous()
44 VERIFY_IS_APPROX(v0.homogeneous().maxCoeff(), hv0.maxCoeff()); in homogeneous()
47 VERIFY_IS_APPROX(m0.colwise().homogeneous(), hm0); in homogeneous()
55 VERIFY_IS_APPROX(t1 * (v0.homogeneous().eval()), t1 * v0.homogeneous()); in homogeneous()
56 VERIFY_IS_APPROX(t1 * (m0.colwise().homogeneous().eval()), t1 * m0.colwise().homogeneous()); in homogeneous()
59 VERIFY_IS_APPROX(t2 * (v0.homogeneous().eval()), t2 * v0.homogeneous()); in homogeneous()
60 VERIFY_IS_APPROX(t2 * (m0.colwise().homogeneous().eval()), t2 * m0.colwise().homogeneous()); in homogeneous()
[all …]
Dgeo_transformations.cpp514 VERIFY_IS_APPROX( p *(q*v).homogeneous(), (p *q)*v.homogeneous() ); in transform_associativity2()
/external/eigen/doc/snippets/
DMatrixBase_homogeneous.cpp4 cout << "h.homogeneous() = [" << v.homogeneous().transpose() << "]^T" << endl;
5 cout << "(P * v.homogeneous()) = [" << (P * v.homogeneous()).transpose() << "]^T" << …
6 cout << "(P * v.homogeneous()).hnormalized() = [" << (P * v.homogeneous()).eval().hnormalized().tra…
DVectorwiseOp_homogeneous.cpp5 cout << "M.colwise().homogeneous():" << endl << M.colwise().homogeneous() << endl << endl;
6 cout << "P * M.colwise().homogeneous():" << endl << P * M.colwise().homogeneous() << endl << endl;
7 cout << "P * M.colwise().homogeneous().hnormalized(): " << endl << (P * M.colwise().homogeneous()).…
/external/swiftshader/third_party/LLVM/test/Transforms/ScalarRepl/
Dcopy-aggregate.ll85 ;; a load or store as a homogeneous structure with the same element type and
87 %homogeneous = type { <8 x i16>, <8 x i16>, <8 x i16> }
96 %res = call %homogeneous @test6callee(i8* %p)
97 %varcast = bitcast %wrapped_array* %var to %homogeneous*
98 store %homogeneous %res, %homogeneous* %varcast
105 declare %homogeneous @test6callee(i8* nocapture) nounwind
/external/swiftshader/src/Shader/
DVertexPipeline.cpp40 … VertexPipeline::transformBlend(const Register &src, const Pointer<Byte> &matrix, bool homogeneous) in transformBlend() argument
46 dst = transform(src, matrix, homogeneous); in transformBlend()
103 dst = transform(src, matrix, index0, homogeneous); in transformBlend()
112 pos0 = transform(src, matrix, index0, homogeneous); in transformBlend()
113 pos1 = transform(src, matrix, index1, homogeneous); in transformBlend()
128 pos0 = transform(src, matrix, index0, homogeneous); in transformBlend()
129 pos1 = transform(src, matrix, index1, homogeneous); in transformBlend()
130 pos2 = transform(src, matrix, index2, homogeneous); in transformBlend()
146 pos0 = transform(src, matrix, index0, homogeneous); in transformBlend()
147 pos1 = transform(src, matrix, index1, homogeneous); in transformBlend()
[all …]
/external/python/cpython3/Doc/library/
Dxdrlib.rst115 Packs a *list* of homogeneous items. This method is useful for lists with an
131 Packs a fixed length list (*array*) of homogeneous items. *n* is the length of
139 Packs a variable length *list* of homogeneous items. First, the length of the
231 Unpacks and returns a list of homogeneous items. The list is unpacked one
240 Unpacks and returns (as a list) a fixed length array of homogeneous items. *n*
247 Unpacks and returns a variable length *list* of homogeneous items. First, the
Dstruct.rst398 Packed binary storage of homogeneous data.
Dtyping.rst1026 To specify a variable-length tuple of homogeneous type,
/external/python/cpython2/Doc/library/
Dxdrlib.rst116 Packs a *list* of homogeneous items. This method is useful for lists with an
132 Packs a fixed length list (*array*) of homogeneous items. *n* is the length of
140 Packs a variable length *list* of homogeneous items. First, the length of the
232 Unpacks and returns a list of homogeneous items. The list is unpacked one
241 Unpacks and returns (as a list) a fixed length array of homogeneous items. *n*
248 Unpacks and returns a variable length *list* of homogeneous items. First, the
Dstruct.rst346 Packed binary storage of homogeneous data.
/external/eigen/Eigen/
DGeometry22 * - fixed-size homogeneous transformations
/external/eigen/bench/
Dgeometry.cpp60 data = (t * data.colwise().homogeneous()).template block<Dim,Data::ColsAtCompileTime>(0,0); in transform()
/external/tensorflow/tensorflow/python/distribute/cluster_resolver/
DREADME.slurm3 … on HPC system running on Slurm. This implementation is able to handle homogeneous task allocation…
/external/eigen/Eigen/src/Geometry/
DHomogeneous.h130 MatrixBase<Derived>::homogeneous() const
148 VectorwiseOp<ExpressionType,Direction>::homogeneous() const
/external/eigen/Eigen/src/Core/
DMatrixBase.h410 inline HomogeneousReturnType homogeneous() const;
DVectorwiseOp.h629 HomogeneousReturnType homogeneous() const;
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/
Df128-aggregates.ll9 ; Testing homogeneous aggregates.
/external/tensorflow/tensorflow/contrib/ignite/
DREADME.md251 …with assumption that all objects in the cache have the same structure (homogeneous objects) and th…
/external/python/cpython2/Doc/tutorial/
Dstdlib2.rst294 a list that stores only homogeneous data and stores it more compactly. The
Ddatastructures.rst458 Lists are :term:`mutable`, and their elements are usually homogeneous and are
/external/python/cpython3/Doc/tutorial/
Dstdlib2.rst296 a list that stores only homogeneous data and stores it more compactly. The
Ddatastructures.rst406 Lists are :term:`mutable`, and their elements are usually homogeneous and are
/external/skia/docs/
Dspelling.txt145 need needed needs negative nested never new newly next nibble nine no non-homogeneous
/external/skqp/docs/
Dspelling.txt145 need needed needs negative nested never new newly next nibble nine no non-homogeneous

12