HomeSort by: relevance | last modified time | path
    Searched defs:getIntWidth (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
ByteCodeExprGen.h 91 unsigned getIntWidth(QualType Ty) {
93 return ASTContext.getIntWidth(Ty);
200 unsigned NumBits = getIntWidth(Ty);
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
TargetInfo.h 388 /// For example, SignedInt -> getIntWidth().
449 /// getIntWidth/Align - Return the size of 'signed int' and 'unsigned int' for
451 unsigned getIntWidth() const { return IntWidth; }
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 2034 Width = Target->getIntWidth();
6311 return 1 + (getIntWidth(BoolTy) << 3);
6316 return 2 + (getIntWidth(CharTy) << 3);
6319 return 3 + (getIntWidth(ShortTy) << 3);
6322 return 4 + (getIntWidth(IntTy) << 3);
6325 return 5 + (getIntWidth(LongTy) << 3);
6328 return 6 + (getIntWidth(LongLongTy) << 3);
6331 return 7 + (getIntWidth(Int128Ty) << 3);
6431 uint64_t PromotableSize = getIntWidth(Promotable);
6432 uint64_t IntSize = getIntWidth(IntTy)
    [all...]

Completed in 50 milliseconds