Home | History | Annotate | Download | only in Sema

Lines Matching refs:vecSize

1610     llvm::APSInt vecSize(32);
1611 if (!ArraySize->isIntegerConstantExpr(vecSize, Context)) {
1619 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
4176 llvm::APSInt vecSize(32);
4178 !sizeExpr->isIntegerConstantExpr(vecSize, S.Context)) {
4191 // vecSize is specified in bytes - convert to bits.
4192 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue() * 8);
4298 unsigned vecSize = typeSize * numElts;
4299 if (vecSize != 64 && vecSize != 128) {