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

1 2

  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmJunoPkg/Drivers/ArmJunoDxe/
PciRootBridgeIo.c 41 UINTN Stride;
46 Stride = (UINTN)1 << Width;
47 InStride = InStrideFlag ? Stride : 0;
48 OutStride = OutStrideFlag ? Stride : 0;
  /device/linaro/bootloader/edk2/UefiCpuPkg/CpuIo2Smm/
CpuIo2Smm.c 170 UINT8 Stride;
181 Stride = mStride[Width];
182 for (Uint8Buffer = Buffer; Count > 0; Address += Stride, Uint8Buffer += Stride, Count--) {
230 UINT8 Stride;
241 Stride = mStride[Width];
242 for (Uint8Buffer = Buffer; Count > 0; Address += Stride, Uint8Buffer += Stride, Count--) {
290 UINT8 Stride;
301 Stride = mStride[Width];
    [all...]
  /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 * \tparam _OuterStrideAtCompileTime the outer stride, or Dynamic if you want to specify it at runtime.
35 * \tparam _InnerStrideAtCompileTime the inner stride, or Dynamic if you want to specify it at runtime.
44 class Stride
55 Stride()
63 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)>
51 DE_STATIC_ASSERT(Stride >= sizeof(T));
76 template <typename T, size_t Alignment, size_t Stride>
77 ArrayBuffer<T,Alignment,Stride>::ArrayBuffer (void) throw()
83 template <typename T, size_t Alignment, size_t Stride>
84 ArrayBuffer<T,Alignment,Stride>::ArrayBuffer (size_t numElements)
90 // \note no need to allocate stride for the last element, sizeof(T) is enough. Also handles cases where sizeof(T) > Stride
91 const size_t storageSize = (numElements - 1) * Stride + sizeof(T);
102 template <typename T, size_t Alignment, size_t Stride>
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/PciRootBridgeNoEnumerationDxe/
PcatPciRootBridgeIo.c 488 UINTN Stride;
500 Stride = (UINTN)1 << Width;
503 if ((DestAddress > SrcAddress) && (DestAddress < (SrcAddress + Count * Stride))) {
505 SrcAddress = SrcAddress + (Count-1) * Stride;
506 DestAddress = DestAddress + (Count-1) * Stride;
531 SrcAddress += Stride;
532 DestAddress += Stride;
534 SrcAddress -= Stride;
535 DestAddress -= Stride;
995 UINTN Stride;
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/PciHostBridgeDxe/
PciRootBridgeIo.c     [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmJunoPkg/Drivers/PciHostBridgeDxe/
PciRootBridge.c 452 UINTN Stride;
466 Stride = (UINTN)(1 << Width);
469 if ((DestAddress > SrcAddress) && (DestAddress < (SrcAddress + Count * Stride))) {
471 SrcAddress = SrcAddress + (Count-1) * Stride;
472 DestAddress = DestAddress + (Count-1) * Stride;
497 SrcAddress += Stride;
498 DestAddress += Stride;
500 SrcAddress -= Stride;
501 DestAddress -= Stride;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciHostBridgeDxe/
PciRootBridgeIo.c 842 UINTN Stride;
    [all...]
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Pci/Dxe/PciHostBridge/
PciRootBridgeIo.c 705 UINTN Stride;
717 Stride = (UINTN)1 << Width;
720 if ((DestAddress > SrcAddress) && (DestAddress < (SrcAddress + Count * Stride))) {
722 SrcAddress = SrcAddress + (Count - 1) * Stride;
723 DestAddress = DestAddress + (Count - 1) * Stride;
750 SrcAddress += Stride;
751 DestAddress += Stride;
753 SrcAddress -= Stride;
754 DestAddress -= Stride;
782 UINT32 Stride;
    [all...]
  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 274 int Stride = 1;
276 Stride = -1;
305 Dst += Stride;
306 Src += Stride;
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 288 // Check to see if the stride matches the size of the store. If so, then we
291 const SCEVConstant *Stride = dyn_cast<SCEVConstant>(StoreEv->getOperand(1));
293 if (Stride == 0 || StoreSize != Stride->getValue()->getValue()) {
294 // TODO: Could also handle negative stride here someday, that will require
297 if (0 && Stride && StoreSize == -Stride->getValue()->getValue()) {
298 dbgs() << "NEGATIVE STRIDE: " << *SI << "\n";
310 // If the stored value is a strided load in the same loop with the same stride
350 // Check to see if the stride matches the size of the memset. If so, then w
    [all...]
  /external/llvm/lib/Transforms/Scalar/
StraightLineStrengthReduce.cpp 93 Stride(nullptr), Ins(nullptr), Basis(nullptr) {}
96 : CandidateKind(CT), Base(B), Index(Idx), Stride(S), Ins(I),
100 // Note that Index and Stride of a GEP candidate do not necessarily have the
101 // same integer type. In that case, during rewriting, Stride will be
104 Value *Stride;
114 // <Base: a, Index: 1, Stride: b + 2>
118 // <Base: b, Index: 2, Stride: a + 1>
149 // share the same base and stride.
186 // A helper function that factors ArrayIdx to a product of a stride and a
232 // They share the same base, stride, and candidate kind
    [all...]
LoopIdiomRecognize.cpp 361 // Check to see if we have a constant stride.
394 // Check to see if the stride matches the size of the store. If so, then we
396 APInt Stride = getStoreStride(StoreEv);
398 if (StoreSize != Stride && StoreSize != -Stride)
414 // The store and load must share the same stride.
438 // Make sure this is a strided store with a constant stride.
626 APInt Stride = getStoreStride(StoreEv);
628 // Check to see if the stride matches the size of the stores. If so, then
630 if (StoreSize != Stride && StoreSize != -Stride
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3d10effect.h 73 UINT Stride;
    [all...]
dxva2api.h 225 UINT Stride;
    [all...]
  /external/llvm/lib/Analysis/
LoopAccessAnalysis.cpp 83 cl::desc("Enable symbolic stride memory access versioning"));
120 // symbolic stride replaced by one.
129 // Replace symbolic stride by one.
155 // Get the stride replaced scev.
578 int64_t Stride = getPtrStride(PSE, Ptr, L, Strides);
579 return Stride == 1;
    [all...]
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVInstruction.h     [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
Pal.h 109 UINT64 Stride:8;
    [all...]
  /external/pdfium/core/fxge/win32/
fx_win32_gdipext.cpp 337 INT stride,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusimaging.h 92 INT Stride;
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
  /hardware/intel/img/psb_video/src/mrst/
pvr2d.h 319 PVR2D_LONG DstStride; /* signed stride, the number of bytes from pixel 0,0 to 0,1 */
328 PVR2D_LONG SrcStride; /* signed stride, the number of bytes from pixel 0,0 to 0,1 */
340 PVR2D_LONG MaskStride; /* signed stride, the number of bytes from pixel 0,0 to 0,1 */
364 PVR2D_LONG Stride; /* signed stride */
    [all...]
  /hardware/intel/img/psb_video/src/
vsp_fw.h 123 unsigned int stride; member in struct:VssProcPicture
543 uint32_t stride; member in struct:VssProcPictureVP8
695 int Stride;
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp 696 /// \brief The group of interleaved loads/stores sharing the same stride and
701 /// value of the access's stride.
724 InterleaveGroup(Instruction *Instr, int Stride, unsigned Align)
728 Factor = std::abs(Stride);
731 Reverse = Stride < 0;
    [all...]

Completed in 720 milliseconds

1 2