HomeSort by: relevance | last modified time | path
    Searched refs:getTypeAlign (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CheckPlacementNew.cpp 169 unsigned StorageTAlign = C.getASTContext().getTypeAlign(VD->getType());
279 unsigned AllocatedTAlign = C.getASTContext().getTypeAlign(AllocatedT) /
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
TargetInfo.h 409 unsigned getTypeAlign(IntType T) const;
630 unsigned getWCharAlign() const { return getTypeAlign(WCharType); }
635 unsigned getChar16Align() const { return getTypeAlign(Char16Type); }
640 unsigned getChar32Align() const { return getTypeAlign(Char32Type); }
  /src/external/apache2/llvm/dist/clang/lib/AST/
ItaniumCXXABI.cpp 199 MPI.Align = Target.getTypeAlign(PtrDiff);
ASTContext.cpp 1881 return NeedsPreferredAlignment ? getPreferredTypeAlign(T) : getTypeAlign(T);
2397 UnadjustedAlign = getTypeAlign(T->getUnqualifiedDesugaredType());
2431 return toCharUnitsFromBits(getTypeAlign(T));
2434 return toCharUnitsFromBits(getTypeAlign(T));
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
TargetInfo.cpp 61 const uint64_t Alignment = Context.getTypeAlign(Ty);
1632 unsigned TypeAlign = getContext().getTypeAlign(Ty) / 8;
2995 if (OffsetBase % getContext().getTypeAlign(AT->getElementType()))
3110 if (!BitField && Offset % getContext().getTypeAlign(i->getType())) {
3214 unsigned Align = std::max(getContext().getTypeAlign(Ty) / 8, 8U);
5048 if (isAggregateTypeForABI(Ty) && getContext().getTypeAlign(Ty) >= 128) {
5720 Alignment = std::max(getContext().getTypeAlign(Ty),
5796 unsigned Alignment = getContext().getTypeAlign(RetTy);
6523 CharUnits::fromQuantity(getContext().getTypeAlign(Ty) / 8), false);
7049 const uint64_t Alignment = getContext().getTypeAlign(Ty)
    [all...]
CGDebugInfo.cpp 1186 uint32_t FieldAlign = CGM.getContext().getTypeAlign(Ty);
2918 // FIXME: make getTypeAlign() aware of VLAs and incomplete array types
  /src/external/apache2/llvm/dist/clang/lib/Basic/
TargetInfo.cpp 307 /// getTypeAlign - Return the alignment (in bits) of the specified integer type
309 unsigned TargetInfo::getTypeAlign(IntType T) const {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTContext.h 2195 unsigned getTypeAlign(QualType T) const { return getTypeInfo(T).Align; }
2196 unsigned getTypeAlign(const Type *T) const { return getTypeInfo(T).Align; }
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclAttr.cpp 1308 S.Context.getTypeAlign(FD->getType()) <= 8);
3717 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
3728 S.Context.getTypeAlign(FieldType) > FirstAlign) {
3732 : S.Context.getTypeAlign(FieldType);
SemaExprCXX.cpp 2165 AllocType->isDependentType() ? 0 : Context.getTypeAlign(AllocType);
SemaDecl.cpp 2494 OldAlign = S.Context.getTypeAlign(Ty);
2496 NewAlign = S.Context.getTypeAlign(Ty);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 6835 unsigned Align = Context->getTypeAlign(IVQT)/8;

Completed in 68 milliseconds