Home | History | Annotate | Download | only in Scalar

Lines Matching refs:NumElts

1747 /// return true with NumElts and EltTy set to the number of elements and the
1749 static bool isHomogeneousAggregate(Type *T, unsigned &NumElts,
1752 NumElts = AT->getNumElements();
1753 EltTy = (NumElts == 0 ? 0 : AT->getElementType());
1757 NumElts = ST->getNumContainedTypes();
1758 EltTy = (NumElts == 0 ? 0 : ST->getContainedType(0));
1759 for (unsigned n = 1; n < NumElts; ++n) {
2292 unsigned NumElts = cast<VectorType>(EltTy)->getNumElements();
2293 StoreVal = ConstantVector::getSplat(NumElts, StoreVal);