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

/external/clang/include/clang/Basic/
H A DTargetInfo.h210 /// For example, SignedInt -> getIntWidth().
247 /// getIntWidth/Align - Return the size of 'signed int' and 'unsigned int' for
249 unsigned getIntWidth() const { return IntWidth; } function in class:clang::TargetInfo
/external/clang/lib/AST/
H A DASTContext.cpp1408 Width = Target->getIntWidth();
1454 Width = Target->getIntWidth();
4161 return 1 + (getIntWidth(BoolTy) << 3);
4166 return 2 + (getIntWidth(CharTy) << 3);
4169 return 3 + (getIntWidth(ShortTy) << 3);
4172 return 4 + (getIntWidth(IntTy) << 3);
4175 return 5 + (getIntWidth(LongTy) << 3);
4178 return 6 + (getIntWidth(LongLongTy) << 3);
4181 return 7 + (getIntWidth(Int128Ty) << 3);
4256 uint64_t PromotableSize = getIntWidth(Promotabl
7226 unsigned ASTContext::getIntWidth(QualType T) const { function in class:ASTContext
[all...]

Completed in 67 milliseconds