Searched refs:getTypeAlign (Results 1 - 8 of 8) sorted by relevance

/external/clang/include/clang/Basic/
H A DTargetInfo.h209 unsigned getTypeAlign(IntType T) const;
262 unsigned getWCharAlign() const { return getTypeAlign(WCharType); }
267 unsigned getChar16Align() const { return getTypeAlign(Char16Type); }
272 unsigned getChar32Align() const { return getTypeAlign(Char32Type); }
/external/clang/lib/Basic/
H A DTargetInfo.cpp146 /// getTypeAlign - Return the alignment (in bits) of the specified integer type
148 unsigned TargetInfo::getTypeAlign(IntType T) const { function in class:TargetInfo
/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp441 uint64_t Align = CGM.getContext().getTypeAlign(BT);
454 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
609 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
660 FieldAlign = CGM.getContext().getTypeAlign(Ty);
887 uint64_t Align = CGM.getContext().getTypeAlign(ThisPtrTy);
1322 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1404 FieldAlign = CGM.getContext().getTypeAlign(FType);
1471 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1482 // FIXME: make getTypeAlign() aware of VLAs and incomplete array types
1486 CGM.getContext().getTypeAlign(CG
[all...]
H A DTargetInfo.cpp774 unsigned TypeAlign = getContext().getTypeAlign(Ty) / 8;
1445 if (OffsetBase % getContext().getTypeAlign(AT->getElementType()))
1543 if (!BitField && Offset % getContext().getTypeAlign(i->getType())) {
1640 unsigned Align = std::max(getContext().getTypeAlign(Ty) / 8, 8U);
2259 uint64_t Align = CGF.getContext().getTypeAlign(Ty) / 8;
2847 getContext().getTypeAlign(Ty) > 64) {
2856 if (getContext().getTypeAlign(Ty) <= 32) {
3043 uint64_t TyAlign = CGF.getContext().getTypeAlign(Ty) / 8;
3458 uint64_t Align = getContext().getTypeAlign(Ty) / 8;
3586 int64_t TypeAlign = getContext().getTypeAlign(T
[all...]
/external/clang/include/clang/AST/
H A DASTContext.h1466 unsigned getTypeAlign(QualType T) const { function in class:clang::ASTContext
1469 unsigned getTypeAlign(const Type *T) const { function in class:clang::ASTContext
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp971 S.Context.getTypeAlign(FD->getType()) <= 8)
3071 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
3075 S.Context.getTypeAlign(FieldType) != FirstAlign) {
3079 : S.Context.getTypeAlign(FieldType);
/external/clang/lib/AST/
H A DASTContext.cpp1218 Align = getTypeAlign(cast<ArrayType>(T)->getElementType());
1517 return toCharUnitsFromBits(getTypeAlign(T));
1520 return toCharUnitsFromBits(getTypeAlign(T));
1528 unsigned ABIAlign = getTypeAlign(T);
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp6727 unsigned Align = Context->getTypeAlign(IvarDecl->getType())/8;

Completed in 575 milliseconds