Searched defs:getIntWidth (Results 1 - 2 of 2) sorted by relevance

/external/clang/include/clang/Basic/
H A DTargetInfo.h227 /// For example, SignedInt -> getIntWidth().
273 /// getIntWidth/Align - Return the size of 'signed int' and 'unsigned int' for
275 unsigned getIntWidth() const { return IntWidth; } function in class:clang::TargetInfo
/external/clang/lib/AST/
H A DASTContext.cpp1544 Width = Target->getIntWidth();
1590 Width = Target->getIntWidth();
4387 return 1 + (getIntWidth(BoolTy) << 3);
4392 return 2 + (getIntWidth(CharTy) << 3);
4395 return 3 + (getIntWidth(ShortTy) << 3);
4398 return 4 + (getIntWidth(IntTy) << 3);
4401 return 5 + (getIntWidth(LongTy) << 3);
4404 return 6 + (getIntWidth(LongLongTy) << 3);
4407 return 7 + (getIntWidth(Int128Ty) << 3);
4482 uint64_t PromotableSize = getIntWidth(Promotabl
7393 unsigned ASTContext::getIntWidth(QualType T) const { function in class:ASTContext
[all...]

Completed in 94 milliseconds