Home
last modified time | relevance | path

Searched refs:alignedEnd (Results 1 – 6 of 6) sorted by relevance

/external/eigen/bench/btl/libs/eigen3/
Deigen3_interface.hh124 int alignedEnd = starti; in triassign() local
126 alignedEnd = alignedStart + ((size-alignedStart)/(2*PacketSize))*(PacketSize*2); in triassign()
138 for (int index = alignedStart; index<alignedEnd; index+=PacketSize) in triassign()
147 for (int index = alignedEnd; index<size; ++index) in triassign()
/external/eigen/Eigen/src/Jacobi/
DJacobi.h335 Index alignedEnd = alignedStart + ((size-alignedStart)/PacketSize)*PacketSize; in apply_rotation_in_the_plane() local
355 for(Index i=alignedStart; i<alignedEnd; i+=PacketSize) in apply_rotation_in_the_plane()
381 if(alignedEnd!=peelingEnd) in apply_rotation_in_the_plane()
390 for(Index i=alignedEnd; i<size; ++i) in apply_rotation_in_the_plane()
/external/eigen/Eigen/src/Core/products/
DSelfadjointMatrixVector.h89 Index alignedEnd = alignedStart + ((endi-alignedStart)/(PacketSize))*(PacketSize); in run() local
116 for (Index i=alignedStart; i<alignedEnd; i+=PacketSize) in run()
128 for (Index i=alignedEnd; i<endi; i++) in run()
/external/eigen/Eigen/src/Core/
DAssignEvaluator.h411 const Index alignedEnd = alignedStart + ((size-alignedStart)/packetSize)*packetSize;
415 for(Index index = alignedStart; index < alignedEnd; index += packetSize)
418 unaligned_dense_assignment_loop<>::run(kernel, alignedEnd, size);
544 const Index alignedEnd = alignedStart + ((innerSize-alignedStart) & ~packetAlignedMask);
550 for(Index inner = alignedStart; inner<alignedEnd; inner+=packetSize)
554 for(Index inner = alignedEnd; inner<innerSize ; ++inner)
DRedux.h229 const Index alignedEnd = alignedStart + alignedSize;
244 if(alignedEnd>alignedEnd2)
252 for(Index index = alignedEnd; index < size; ++index)
/external/eigen/doc/
DInsideEigenExample.dox342 const int alignedEnd = alignedStart + ((size-alignedStart)/packetSize)*packetSize;
347 for(int index = alignedStart; index < alignedEnd; index += packetSize)
352 for(int index = alignedEnd; index < size; index++)
364 …o we'll have to copy the last 2 coefficients one by one, not by packets. Here, \a alignedEnd is 48.
370 for(int index = alignedStart; index < alignedEnd; index += packetSize)
477 for(int index = alignedStart; index < alignedEnd; index += packetSize)
486 for(int index = alignedEnd; index < size; index++)