HomeSort by: relevance | last modified time | path
    Searched refs:typeSize (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CastSizeChecker.cpp 51 CharUnits TypeSize, QualType ToPointeeTy) {
69 if (ArrayTy->getSize() == 1 && TypeSize > FlexSize)
70 TypeSize -= FlexSize;
82 CharUnits Left = RegionSize - TypeSize;
121 CharUnits typeSize = C.getASTContext().getTypeSizeInChars(ToPointeeTy);
124 if (typeSize.isZero())
127 if (regionSize % typeSize == 0)
130 if (evenFlexibleArraySize(Ctx, regionSize, typeSize, ToPointeeTy))
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprCXX.cpp 699 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
701 = llvm::ConstantInt::get(CGF.SizeTy, typeSize.getQuantity());
741 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
742 llvm::APInt typeSizeMultiplier(sizeWidth, typeSize.getQuantity());
900 if (typeSize.isOne()) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaType.cpp 1746 unsigned typeSize = static_cast<unsigned>(Context.getTypeSize(Result));
1747 assert(typeSize > 0 && "type size for vector must be greater than 0 bits");
1753 Result = Context.getVectorType(Result, 128/typeSize, VecKind);
2578 unsigned TypeSize = static_cast<unsigned>(Context.getTypeSize(CurType));
2586 if (VectorSizeBits % TypeSize) {
2592 if (VectorSizeBits / TypeSize > std::numeric_limits<uint32_t>::max()) {
2598 return Context.getVectorType(CurType, VectorSizeBits / TypeSize,
7828 unsigned typeSize = static_cast<unsigned>(S.Context.getTypeSize(CurType));
7830 unsigned vecSize = typeSize * numElts;
7894 unsigned TypeSize = S.Context.getTypeSize(EltType)
    [all...]
SemaInit.cpp 1769 unsigned typeSize = SemaRef.Context.getTypeSize(elementType);
1784 << typeCode << typeSize;
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTContext.h 66 #include "llvm/Support/TypeSize.h"
2624 /// \p typeDomain/\p typeSize).
2627 /// \param typeSize a real floating point or complex type.
2628 QualType getFloatingTypeOfSizeWithinDomain(QualType typeSize,

Completed in 28 milliseconds