Home | History | Annotate | Download | only in Sema

Lines Matching refs:typeSize

1545     unsigned typeSize = static_cast<unsigned>(Context.getTypeSize(Result));
1546 assert(typeSize > 0 && "type size for vector must be greater than 0 bits");
1552 Result = Context.getVectorType(Result, 128/typeSize, VecKind);
5997 unsigned typeSize = static_cast<unsigned>(S.Context.getTypeSize(CurType));
6002 if (vectorSize % typeSize) {
6008 if (VectorType::isVectorSizeTooLarge(vectorSize / typeSize)) {
6023 CurType = S.Context.getVectorType(CurType, vectorSize/typeSize,
6154 unsigned typeSize = static_cast<unsigned>(S.Context.getTypeSize(CurType));
6156 unsigned vecSize = typeSize * numElts;