Searched defs:alignedEnd (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodecLatin1.cpp130 const uint8_t* alignedEnd = alignToMachineWord(end); local
137 while (source < alignedEnd) {
188 while (source < alignedEnd) {
H A DTextCodecUTF8.cpp273 const uint8_t* alignedEnd = alignToMachineWord(end); local
297 while (source < alignedEnd) {
374 while (source < alignedEnd) {
/external/eigen/Eigen/src/Core/
H A DAssign.h404 const Index alignedEnd = alignedStart + ((size-alignedStart)/packetSize)*packetSize; local
408 for(Index index = alignedStart; index < alignedEnd; index += packetSize)
413 unaligned_assign_impl<>::run(src,dst,alignedEnd,size);
458 const Index alignedEnd = alignedStart + ((innerSize-alignedStart) & ~packetAlignedMask); local
464 for(Index inner = alignedStart; inner<alignedEnd; inner+=packetSize)
468 for(Index inner = alignedEnd; inner<innerSize ; ++inner)
H A DRedux.h212 const Index alignedEnd = alignedStart + alignedSize; local
227 if(alignedEnd>alignedEnd2)
235 for(Index index = alignedEnd; index < size; ++index)
/external/eigen/Eigen/src/Core/products/
H A DSelfadjointMatrixVector.h90 size_t alignedEnd = alignedStart + ((endi-alignedStart)/(PacketSize))*(PacketSize); local
118 for (size_t i=alignedStart; i<alignedEnd; i+=PacketSize)
130 for (size_t i=alignedEnd; i<endi; i++)
/external/eigen/bench/btl/libs/eigen3/
H A Deigen3_interface.hh121 // const int alignedEnd = alignedStart + ((innerSize-alignedStart) & ~packetAlignedMask);
124 int alignedEnd = starti; local
126 alignedEnd = alignedStart + ((size-alignedStart)/(2*PacketSize))*(PacketSize*2);
138 for (int index = alignedStart; index<alignedEnd; index+=PacketSize)
147 for (int index = alignedEnd; index<size; ++index)

Completed in 1925 milliseconds