Home | History | Annotate | Download | only in Sema

Lines Matching defs:vecSize

2170     llvm::APSInt vecSize(32);
2171 if (!ArraySize->isIntegerConstantExpr(vecSize, Context)) {
2180 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
5980 llvm::APSInt vecSize(32);
5982 !sizeExpr->isIntegerConstantExpr(vecSize, S.Context)) {
5998 // vecSize is specified in bytes - convert to bits.
5999 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue() * 8);
6156 unsigned vecSize = typeSize * numElts;
6157 if (vecSize != 64 && vecSize != 128) {