Home
last modified time | relevance | path

Searched refs:writePacket (Results 1 – 25 of 27) sorted by relevance

12

/external/eigen/Eigen/src/Core/
DNestByValue.h76 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);
DSwap.h41 …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()
DForceAlignedAccess.h76 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);
DCoreEvaluators.h209 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 …]
DBlock.h269 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>
DMapBase.h265 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
DTranspose.h248 …m.template writePacket<Alignment>(m.rowIndexByOuterInner(i,0), m.colIndexByOuterInner(i,0), A.pack…
DDenseCoeffsBase.h275 void writePacket();
DPlainObjectBase.h239 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/
DConnection.java171 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/
DTransportWrapper.java95 public void writePacket(byte[] packet) throws IOException; in writePacket() method
DPacketDispatcher.java303 connection.writePacket(command.toBytesArray()); in waitForReply()
374 connection.writePacket(command.toBytesArray()); in sendCommand()
DSocketTransportWrapper.java293 public void writePacket(byte[] packet) throws IOException { in writePacket() method in SocketTransportWrapper
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorLayoutSwap.h201 void writePacket(Index index, const PacketReturnType& x)
203 this->m_impl.template writePacket<StoreMode>(index, x);
DTensorChipping.h342 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);
DTensorStriding.h290 void writePacket(Index index, const PacketReturnType& x)
321 this->m_impl.template writePacket<Unaligned>(inputIndices[0], x);
DTensorMorphing.h191 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);
DTensorAssign.h141 m_leftImpl.template writePacket<LhsStoreMode>(i, m_rightImpl.template packet<RhsLoadMode>(i));
DTensorShuffling.h249 void writePacket(Index index, const PacketReturnType& x)
DTensorReverse.h271 void writePacket(Index index, const PacketReturnType& x) {
/external/skqp/experimental/Networking/
DSkSockets.h58 int writePacket(void* data, size_t size, DataType type = kPipeAppend_type);
DSkSockets.cpp171 int SkSocket::writePacket(void* data, size_t size, DataType type) { in writePacket() function in SkSocket
/external/eigen/doc/
DInsideEigenExample.dox383 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/
DTargetVM.java295 connection.writePacket(packet.toByteArray()); in send()
DSocketTransportService.java469 public void writePacket(byte b[]) throws IOException { in writePacket() method in SocketConnection

12