HomeSort by relevance Sort by last modified time
    Searched refs:ElemSize (Results 1 - 11 of 11) sorted by null

  /external/llvm/lib/Analysis/
LoopUnrollAnalyzer.cpp 121 int ElemSize = CDS->getElementType()->getPrimitiveSizeInBits() / 8U;
124 int64_t Index = SimplifiedAddrOp->getSExtValue() / ElemSize;
ConstantFolding.cpp 857 APInt ElemSize(BitWidth, DL.getTypeAllocSize(Ty));
858 if (ElemSize == 0) {
867 APInt NewIdx = Offset.sdiv_ov(ElemSize, Overflow);
870 Offset -= NewIdx * ElemSize;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Scalarizer.cpp 104 VectorLayout() : VecTy(nullptr), ElemTy(nullptr), VecAlign(0), ElemSize(0) {}
108 return MinAlign(VecAlign, I * ElemSize);
121 uint64_t ElemSize;
370 Layout.ElemSize = DL.getTypeStoreSize(Layout.ElemTy);
  /external/llvm/lib/Transforms/IPO/
WholeProgramDevirt.cpp 368 uint64_t ElemSize =
371 if (GlobalSlotOffset % ElemSize != 0)
374 unsigned Op = GlobalSlotOffset / ElemSize;
  /external/llvm/lib/IR/
Attributes.cpp 361 unsigned ElemSize;
363 std::tie(ElemSize, NumElems) = getAllocSizeArgs();
366 Result += utostr(ElemSize);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ConstantFolding.cpp 670 APInt ElemSize(BitWidth, TD->getTypeAllocSize(ATy->getElementType()));
672 if (ElemSize == 0)
680 APInt NewIdx = Offset.udiv(ElemSize);
681 Offset -= NewIdx * ElemSize;
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp     [all...]
  /external/clang/lib/CodeGen/
CGOpenMPRuntime.cpp     [all...]
CGExprScalar.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]

Completed in 1454 milliseconds