HomeSort by relevance Sort by last modified time
    Searched defs:Stride (Results 1 - 10 of 10) sorted by null

  /external/eigen/Eigen/src/Core/
Stride.h 15 /** \class Stride
22 * It holds two values: the inner stride and the outer stride.
24 * The inner stride is the pointer increment between two consecutive entries within a given row of a
27 * The outer stride is the pointer increment between two consecutive rows of a row-major matrix or
34 * \param _OuterStrideAtCompileTime the outer stride, or Dynamic if you want to specify it at runtime.
35 * \param _InnerStrideAtCompileTime the inner stride, or Dynamic if you want to specify it at runtime.
44 class Stride
54 Stride()
61 Stride(Index outerStride, Index innerStride
    [all...]
  /external/deqp/framework/delibs/decpp/
deArrayBuffer.hpp 47 template <typename T, size_t Alignment = (sizeof(T) > 4 ? 4 : sizeof(T)), size_t Stride = sizeof(T)>
73 template <typename T, size_t Alignment, size_t Stride>
74 ArrayBuffer<T,Alignment,Stride>::ArrayBuffer (void) throw()
80 template <typename T, size_t Alignment, size_t Stride>
81 ArrayBuffer<T,Alignment,Stride>::ArrayBuffer (size_t numElements)
87 // \note no need to allocate stride for the last element, sizeof(T) is enough. Also handles cases where sizeof(T) > Stride
88 const size_t storageSize = (numElements - 1) * Stride + sizeof(T);
99 template <typename T, size_t Alignment, size_t Stride>
100 ArrayBuffer<T,Alignment,Stride>::ArrayBuffer (const ArrayBuffer<T,Alignment,Stride>& other
    [all...]
  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 247 int Stride = 1;
249 Stride = -1;
278 Dst += Stride;
279 Src += Stride;
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp 557 unsigned Stride = SrcVT.getScalarType().getSizeInBits()/8;
562 Chain, BasePTR, LD->getPointerInfo().getWithOffset(Idx * Stride),
568 DAG.getConstant(Stride, BasePTR.getValueType()));
612 // Store Stride in bytes
613 unsigned Stride = ScalarSize/8;
623 ST->getPointerInfo().getWithOffset(Idx*Stride), MemSclVT,
627 DAG.getConstant(Stride, BasePTR.getValueType()));
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 791 // Check to see if the stride matches the size of the store. If so, then we
794 const SCEVConstant *Stride = dyn_cast<SCEVConstant>(StoreEv->getOperand(1));
796 if (!Stride || StoreSize != Stride->getValue()->getValue()) {
797 // TODO: Could also handle negative stride here someday, that will require
800 if (0 && Stride && StoreSize == -Stride->getValue()->getValue()) {
801 dbgs() << "NEGATIVE STRIDE: " << *SI << "\n";
813 // If the stored value is a strided load in the same loop with the same stride
853 // Check to see if the stride matches the size of the memset. If so, then w
    [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp 139 cl::desc("Enable symblic stride memory access versioning"));
700 /// 0 - Stride is unknown or non-consecutive.
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
mtypes.h     [all...]
  /external/mesa3d/src/mesa/main/
mtypes.h     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 542 milliseconds