Home
last modified time | relevance | path

Searched refs:vectorSize (Results 1 – 1 of 1) sorted by relevance

/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaType.cpp1722 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue()); in BuildExtVectorType() local
1724 if (vectorSize == 0) { in BuildExtVectorType()
1730 if (VectorType::isVectorSizeTooLarge(vectorSize)) { in BuildExtVectorType()
1736 return Context.getExtVectorType(T, vectorSize); in BuildExtVectorType()
4664 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue() * 8); in HandleVectorSizeAttr() local
4667 if (vectorSize % typeSize) { in HandleVectorSizeAttr()
4673 if (VectorType::isVectorSizeTooLarge(vectorSize / typeSize)) { in HandleVectorSizeAttr()
4679 if (vectorSize == 0) { in HandleVectorSizeAttr()
4688 CurType = S.Context.getVectorType(CurType, vectorSize/typeSize, in HandleVectorSizeAttr()