Lines Matching defs:VecSizeInBits
4108 unsigned VecSizeInBits = getASTContext().getTypeInfo(T).Width;
4111 VecSizeInBits *= 8;
4115 Out << "Lj" << VecSizeInBits << "EE";
4183 unsigned VecSizeInBits;
4186 VecSizeInBits = 1;
4189 VecSizeInBits = 2;
4192 VecSizeInBits = 4;
4195 VecSizeInBits = getASTContext().getTypeInfo(T).Width;
4206 if (VecSizeInBits >= VLen)
4207 TypeNameOS << (VecSizeInBits / VLen);
4209 TypeNameOS << 'f' << (VLen / VecSizeInBits);
4211 TypeNameOS << (VLen / VecSizeInBits);
4217 Out << "Lj" << VecSizeInBits << "EE";