reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/AST/ASTContext.cpp
 1647                    MinWidth <= getTypeSize(cast<ConstantArrayType>(arrayType)))
 1656           uint64_t TypeSize = getTypeSize(T.getTypePtr());
 2311       return std::max(ABIAlign, (unsigned)getTypeSize(T));
 2326   uint64_t TypeSize = getTypeSize(T.getTypePtr());
 5864       uint64_t FromSize = getTypeSize(BT);
tools/clang/lib/AST/MicrosoftMangle.cpp
 2690   uint64_t Width = getASTContext().getTypeSize(T);
tools/clang/lib/CodeGen/CGDebugInfo.cpp
  816   uint64_t Size = CGM.getContext().getTypeSize(BT);
  826   uint64_t Size = CGM.getContext().getTypeSize(Ty);
 1058     uint64_t FieldSize = CGM.getContext().getTypeSize(Ty);
 1091   uint64_t Size = CGM.getContext().getTypeSize(Ty);
 2452   uint64_t Size = CGM.getContext().getTypeSize(Ty);
 2622   uint64_t Size = CGM.getContext().getTypeSize(Ty);
 2648     Size = CGM.getContext().getTypeSize(Ty);
 2709     Size = CGM.getContext().getTypeSize(Ty);
 2761     Size = CGM.getContext().getTypeSize(ED->getTypeForDecl());
 2804     Size = CGM.getContext().getTypeSize(ED->getTypeForDecl());
 3132   uint64_t Size = CGM.getContext().getTypeSize(Ty);
tools/clang/lib/CodeGen/CodeGenTypes.cpp
  679     uint64_t atomicSize = Context.getTypeSize(Ty);
  708   return Context.getTypeSize(type) != Context.getTypeSize(type->getValueType());
tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
 1056   return RD->getASTContext().getTypeSize(RD->getTypeForDecl()) > 128;
tools/clang/lib/CodeGen/TargetInfo.cpp
  600   if (Found && Context.getTypeSize(Found) != Context.getTypeSize(T))
  965     unsigned VecSize = Context.getTypeSize(VT);
 2635     uint64_t Size = getContext().getTypeSize(VT);
 2920     uint64_t Size = getContext().getTypeSize(VecTy);
 4169     if ((EltType->isVectorType() && getContext().getTypeSize(EltType) == 128) ||
 4404         if (getContext().getTypeSize(Ty) <= 256)
 4408         if (getContext().getTypeSize(Ty) <= 128)
 4453             (T->isVectorType() && getContext().getTypeSize(T) == 128) ||
 4561          getContext().getTypeSize(EltType) == 128) ||
 4575     if (getContext().getTypeSize(AlignAsType) > 128)
 4657     if (getContext().getTypeSize(Base) * Members !=
 4682             getContext().getTypeSize(VT) / getContext().getTypeSize(EltTy);
 4690         getContext().getTypeSize(Base) != getContext().getTypeSize(TyPtr))
 4690         getContext().getTypeSize(Base) != getContext().getTypeSize(TyPtr))
 4711     if (getContext().getTypeSize(VT) == 128 || IsQPXVectorTy(Ty))
 4725                               : (getContext().getTypeSize(Base) + 63) / 64;
 5258     uint64_t Size = getContext().getTypeSize(VT);
 5287     unsigned VecSize = getContext().getTypeSize(VT);
 5849       uint64_t Size = getContext().getTypeSize(VT);
 6198       uint64_t Size = getContext().getTypeSize(VT);
 6263     unsigned VecSize = getContext().getTypeSize(VT);
 7707   uint32_t NumRegs = (getContext().getTypeSize(Base) + 31) / 32;
tools/clang/lib/Sema/SemaCast.cpp
 2105     if (Self.Context.getTypeSize(DestMemPtr) !=
 2106         Self.Context.getTypeSize(SrcMemPtr)) {
tools/clang/lib/Sema/SemaChecking.cpp
11620     if (S.Context.getTypeSize(Source) == S.Context.getTypeSize(Target))
11620     if (S.Context.getTypeSize(Source) == S.Context.getTypeSize(Target))
13285       uint64_t ptrarith_typesize = Context.getTypeSize(EffectiveType);
13286       uint64_t array_typesize = Context.getTypeSize(BaseType);
tools/clang/lib/Sema/SemaDeclCXX.cpp
 6243         S.getASTContext().getTypeSize(D->getTypeForDecl()) <= TypeSize)
tools/clang/lib/Sema/SemaExpr.cpp
 9946           S.Context.getTypeSize(LHSBT) != S.Context.getTypeSize(RHSBT)) {
 9946           S.Context.getTypeSize(LHSBT) != S.Context.getTypeSize(RHSBT)) {
tools/clang/lib/Sema/SemaInit.cpp
 1738                    SemaRef.Context.getTypeSize(VT) > 64
tools/clang/lib/Sema/SemaStmtAsm.cpp
  429     unsigned Size = Context.getTypeSize(Ty);
  501     unsigned Size = Context.getTypeSize(Ty);
tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp
  202         uint64_t BufferLen = C.getTypeSize(Buffer) / 8;
tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
  670     uint64_t ArraySize = BR.getContext().getTypeSize(Array) / 8;
tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp
   40     return (ASTC.getTypeSize(T) == PtrWidth);
tools/clang/tools/extra/clang-tidy/bugprone/FoldInitTypeCheck.cpp
   82   const auto ValueTypeSize = Context.getTypeSize(&ValueType);
   83   const auto InitTypeSize = Context.getTypeSize(&InitType);
tools/clang/tools/extra/clang-tidy/cppcoreguidelines/NarrowingConversionsCheck.cpp
  141   uint64_t TypeSize = Context.getTypeSize(&T);
  252                                            Context.getTypeSize(FromType));