Searched refs:typeSize (Results 1 – 6 of 6) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CastSizeChecker.cpp | 121 CharUnits typeSize = C.getASTContext().getTypeSizeInChars(ToPointeeTy); in checkPreStmt() local 124 if (typeSize.isZero()) in checkPreStmt() 127 if (regionSize % typeSize == 0) in checkPreStmt() 130 if (evenFlexibleArraySize(Ctx, regionSize, typeSize, ToPointeeTy)) in checkPreStmt()
|
| /freebsd-13.1/contrib/llvm-project/lld/COFF/ |
| H A D | PDB.cpp | 1249 uint32_t typeSize; in printStats() member 1252 uint64_t totalInputSize() const { return uint64_t(dupCount) * typeSize; } in printStats() 1262 uint32_t typeSize = records.getType(typeIndex).length(); in printStats() local 1264 tsis.push_back({typeSize, dupCount, typeIndex}); in printStats() 1276 tsi.dupCount, tsi.typeSize); in printStats()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGExprCXX.cpp | 702 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type); in EmitCXXNewAllocSize() local 704 = llvm::ConstantInt::get(CGF.SizeTy, typeSize.getQuantity()); in EmitCXXNewAllocSize() 744 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type); in EmitCXXNewAllocSize() local 745 llvm::APInt typeSizeMultiplier(sizeWidth, typeSize.getQuantity()); in EmitCXXNewAllocSize() 903 if (typeSize.isOne()) { in EmitCXXNewAllocSize()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaType.cpp | 1770 unsigned typeSize = static_cast<unsigned>(Context.getTypeSize(Result)); in ConvertDeclSpecToType() local 1771 assert(typeSize > 0 && "type size for vector must be greater than 0 bits"); in ConvertDeclSpecToType() 1777 Result = Context.getVectorType(Result, 128/typeSize, VecKind); in ConvertDeclSpecToType() 7863 unsigned typeSize = static_cast<unsigned>(S.Context.getTypeSize(CurType)); in HandleNeonVectorTypeAttr() local 7865 unsigned vecSize = typeSize * numElts; in HandleNeonVectorTypeAttr()
|
| H A D | SemaInit.cpp | 1769 unsigned typeSize = SemaRef.Context.getTypeSize(elementType); in CheckVectorType() local 1784 << typeCode << typeSize; in CheckVectorType()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ASTContext.h | 2679 QualType getFloatingTypeOfSizeWithinDomain(QualType typeSize,
|