/external/eigen/Eigen/src/Core/ |
D | ArrayWrapper.h | 98 inline void writePacket(Index row, Index col, const PacketScalar& x) 100 m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x); 110 inline void writePacket(Index index, const PacketScalar& x) 112 m_expression.const_cast_derived().template writePacket<LoadMode>(index, x); 211 inline void writePacket(Index row, Index col, const PacketScalar& x) 213 m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x); 223 inline void writePacket(Index index, const PacketScalar& x) 225 m_expression.const_cast_derived().template writePacket<LoadMode>(index, x);
|
D | NestByValue.h | 77 inline void writePacket(Index row, Index col, const PacketScalar& x) 79 m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x); 89 inline void writePacket(Index index, const PacketScalar& x) 91 m_expression.const_cast_derived().template writePacket<LoadMode>(index, x);
|
D | ForceAlignedAccess.h | 76 inline void writePacket(Index row, Index col, const PacketScalar& x) 78 m_expression.const_cast_derived().template writePacket<Aligned>(row, col, x); 88 inline void writePacket(Index index, const PacketScalar& x) 90 m_expression.const_cast_derived().template writePacket<Aligned>(index, x);
|
D | Flagged.h | 95 inline void writePacket(Index row, Index col, const PacketScalar& x) 97 m_matrix.const_cast_derived().template writePacket<LoadMode>(row, col, x); 107 inline void writePacket(Index index, const PacketScalar& x) 109 m_matrix.const_cast_derived().template writePacket<LoadMode>(index, x);
|
D | Swap.h | 100 m_expression.template writePacket<StoreMode>(row, col, 103 _other.template writePacket<LoadMode>(row, col, tmp); 112 m_expression.template writePacket<StoreMode>(index, 115 _other.template writePacket<LoadMode>(index, tmp);
|
D | DenseCoeffsBase.h | 249 void writePacket(); 429 EIGEN_STRONG_INLINE void writePacket in writePacket() function 434 derived().template writePacket<StoreMode>(row,col,x); in writePacket() 443 writePacket<StoreMode>(rowIndexByOuterInner(outer, inner), in writePacketByOuterInner() 458 EIGEN_STRONG_INLINE void writePacket in writePacket() function 462 derived().template writePacket<StoreMode>(index,x); in writePacket() 521 derived().template writePacket<StoreMode>(row, col, in copyPacket() 537 derived().template writePacket<StoreMode>(index, in copyPacket()
|
D | Reverse.h | 153 inline void writePacket(Index row, Index col, const PacketScalar& x) 155 m_matrix.const_cast_derived().template writePacket<LoadMode>( 168 inline void writePacket(Index index, const PacketScalar& x) 170 …m_matrix.const_cast_derived().template writePacket<LoadMode>(m_matrix.size() - index - PacketSize,…
|
D | Transpose.h | 159 inline void writePacket(Index row, Index col, const PacketScalar& x) 161 derived().nestedExpression().const_cast_derived().template writePacket<LoadMode>(col, row, x); 171 inline void writePacket(Index index, const PacketScalar& x) 173 derived().nestedExpression().const_cast_derived().template writePacket<LoadMode>(index, x);
|
D | Block.h | 203 inline void writePacket(Index row, Index col, const PacketScalar& x) 205 m_xpr.const_cast_derived().template writePacket<Unaligned> 218 inline void writePacket(Index index, const PacketScalar& x) 220 m_xpr.const_cast_derived().template writePacket<Unaligned>
|
D | SelfCwiseBinaryOp.h | 112 m_matrix.template writePacket<StoreMode>(row, col, 121 m_matrix.template writePacket<StoreMode>(index,
|
D | MapBase.h | 213 inline void writePacket(Index row, Index col, const PacketScalar& x) in writePacket() function 220 inline void writePacket(Index index, const PacketScalar& x) in writePacket() function
|
D | PlainObjectBase.h | 180 EIGEN_STRONG_INLINE void writePacket(Index row, Index col, const PacketScalar& x) 190 EIGEN_STRONG_INLINE void writePacket(Index index, const PacketScalar& x)
|
D | DenseBase.h | 69 using Base::writePacket;
|
/external/eigen/Eigen/src/LU/arch/ |
D | Inverse_SSE.h | 154 result.template writePacket<ResultAlignment>( 0, _mm_shuffle_ps(iA,iB,0x77)); 155 result.template writePacket<ResultAlignment>( 4, _mm_shuffle_ps(iA,iB,0x22)); 156 result.template writePacket<ResultAlignment>( 8, _mm_shuffle_ps(iC,iD,0x77)); 157 result.template writePacket<ResultAlignment>(12, _mm_shuffle_ps(iC,iD,0x22)); 314 …result.template writePacket<ResultAlignment>( 0, _mm_mul_pd(_mm_shuffle_pd(iA2, iA1, 3), d1)); … 315 result.template writePacket<ResultAlignment>( 4, _mm_mul_pd(_mm_shuffle_pd(iA2, iA1, 0), d2)); 316 …result.template writePacket<ResultAlignment>( 2, _mm_mul_pd(_mm_shuffle_pd(iB2, iB1, 3), d1)); … 317 result.template writePacket<ResultAlignment>( 6, _mm_mul_pd(_mm_shuffle_pd(iB2, iB1, 0), d2)); 318 …result.template writePacket<ResultAlignment>( 8, _mm_mul_pd(_mm_shuffle_pd(iC2, iC1, 3), d1)); … 319 result.template writePacket<ResultAlignment>(12, _mm_mul_pd(_mm_shuffle_pd(iC2, iC1, 0), d2)); [all …]
|
/external/eigen/doc/ |
D | I03_InsideEigenExample.dox | 388 derived().template writePacket<StoreMode>(index, 393 OK, what are writePacket() and packet() here? 395 First, writePacket() here is a method on the left-hand side VectorXf. So we go to src/Core/Matrix.h… 398 inline void writePacket(int index, const PacketScalar& x) 427 OK, that explains how writePacket() works. Now let's look into the packet() call. Remember that we … 429 derived().template writePacket<StoreMode>(index, 494 …lved here. copyPacket() becomes copyCoeff(), packet() becomes coeff(), writePacket() becomes coeff…
|
/external/skia/samplecode/ |
D | SampleApp.cpp | 1970 gServer.writePacket(fBlock, fTotalWritten); in ~SimplePC()
|