/external/eigen/Eigen/src/Core/ |
D | NestByValue.h | 76 inline void writePacket(Index row, Index col, const PacketScalar& x) 78 m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x); 88 inline void writePacket(Index index, const PacketScalar& x) 90 m_expression.const_cast_derived().template writePacket<LoadMode>(index, x);
|
D | Swap.h | 41 …const_cast<SrcEvaluatorTypeT&>(m_src).template writePacket<LoadMode>(row,col, m_dst.template packe… in assignPacket() 42 m_dst.template writePacket<StoreMode>(row,col,tmp); in assignPacket() 49 …const_cast<SrcEvaluatorTypeT&>(m_src).template writePacket<LoadMode>(index, m_dst.template packet<… in assignPacket() 50 m_dst.template writePacket<StoreMode>(index,tmp); in assignPacket()
|
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 | CoreEvaluators.h | 209 void writePacket(Index row, Index col, const PacketType& x) 221 void writePacket(Index index, const PacketType& x) 320 void writePacket(Index row, Index col, const PacketType& x) 322 m_argImpl.template writePacket<StoreMode,PacketType>(col, row, x); 327 void writePacket(Index index, const PacketType& x) 329 m_argImpl.template writePacket<StoreMode,PacketType>(index, x); 872 void writePacket(Index row, Index col, const PacketType& x) 880 void writePacket(Index index, const PacketType& x) 1072 void writePacket(Index row, Index col, const PacketType& x) 1074 …return m_argImpl.template writePacket<StoreMode,PacketType>(m_startRow.value() + row, m_startCol.v… [all …]
|
D | Block.h | 269 inline void writePacket(Index rowId, Index colId, const PacketScalar& val) 271 …m_xpr.template writePacket<Unaligned>(rowId + m_startRow.value(), colId + m_startCol.value(), val); 283 inline void writePacket(Index index, const PacketScalar& val) 285 m_xpr.template writePacket<Unaligned>
|
D | MapBase.h | 265 inline void writePacket(Index row, Index col, const PacketScalar& val) in writePacket() function 272 inline void writePacket(Index index, const PacketScalar& val) in writePacket() function
|
D | Transpose.h | 248 …m.template writePacket<Alignment>(m.rowIndexByOuterInner(i,0), m.colIndexByOuterInner(i,0), A.pack…
|
D | DenseCoeffsBase.h | 275 void writePacket();
|
D | PlainObjectBase.h | 239 EIGEN_STRONG_INLINE void writePacket(Index rowId, Index colId, const PacketScalar& val) 249 EIGEN_STRONG_INLINE void writePacket(Index index, const PacketScalar& val)
|
/external/oj-libjdwp/src/share/classes/com/sun/jdi/connect/spi/ |
D | Connection.java | 171 public abstract void writePacket(byte pkt[]) throws IOException; in writePacket() method in Connection
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
D | TransportWrapper.java | 95 public void writePacket(byte[] packet) throws IOException; in writePacket() method
|
D | PacketDispatcher.java | 303 connection.writePacket(command.toBytesArray()); in waitForReply() 374 connection.writePacket(command.toBytesArray()); in sendCommand()
|
D | SocketTransportWrapper.java | 293 public void writePacket(byte[] packet) throws IOException { in writePacket() method in SocketTransportWrapper
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorLayoutSwap.h | 201 void writePacket(Index index, const PacketReturnType& x) 203 this->m_impl.template writePacket<StoreMode>(index, x);
|
D | TensorChipping.h | 342 void writePacket(Index index, const PacketReturnType& x) 361 this->m_impl.template writePacket<StoreMode>(index + this->m_inputOffset, x); 367 this->m_impl.template writePacket<StoreMode>(inputIndex, x);
|
D | TensorStriding.h | 290 void writePacket(Index index, const PacketReturnType& x) 321 this->m_impl.template writePacket<Unaligned>(inputIndices[0], x);
|
D | TensorMorphing.h | 191 void writePacket(Index index, const PacketReturnType& x) 193 this->m_impl.template writePacket<StoreMode>(index, x); 562 void writePacket(Index index, const PacketReturnType& x) 591 this->m_impl.template writePacket<StoreMode>(inputIndices[0], x);
|
D | TensorAssign.h | 141 m_leftImpl.template writePacket<LhsStoreMode>(i, m_rightImpl.template packet<RhsLoadMode>(i));
|
D | TensorShuffling.h | 249 void writePacket(Index index, const PacketReturnType& x)
|
D | TensorReverse.h | 271 void writePacket(Index index, const PacketReturnType& x) {
|
/external/skqp/experimental/Networking/ |
D | SkSockets.h | 58 int writePacket(void* data, size_t size, DataType type = kPipeAppend_type);
|
D | SkSockets.cpp | 171 int SkSocket::writePacket(void* data, size_t size, DataType type) { in writePacket() function in SkSocket
|
/external/eigen/doc/ |
D | InsideEigenExample.dox | 383 derived().template writePacket<StoreMode>(index, 388 OK, what are writePacket() and packet() here? 390 First, writePacket() here is a method on the left-hand side VectorXf. So we go to src/Core/Matrix.h… 393 inline void writePacket(int index, const PacketScalar& x) 422 OK, that explains how writePacket() works. Now let's look into the packet() call. Remember that we … 424 derived().template writePacket<StoreMode>(index, 489 …lved here. copyPacket() becomes copyCoeff(), packet() becomes coeff(), writePacket() becomes coeff…
|
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
D | TargetVM.java | 295 connection.writePacket(packet.toByteArray()); in send()
|
D | SocketTransportService.java | 469 public void writePacket(byte b[]) throws IOException { in writePacket() method in SocketConnection
|