Searched refs:MinNumElts (Results 1 – 3 of 3) sorted by relevance
666 unsigned MinNumElts) { in get() argument667 assert(MinNumElts > 0 && "#Elements of a VectorType must be greater than 0"); in get()672 auto EC = ElementCount::getScalable(MinNumElts); in get()679 Entry = new (pImpl->Alloc) ScalableVectorType(ElementType, MinNumElts); in get()
576 ScalableVectorType(Type *ElTy, unsigned MinNumElts) in ScalableVectorType() argument577 : VectorType(ElTy, MinNumElts, ScalableVectorTyID) {} in ScalableVectorType()580 static ScalableVectorType *get(Type *ElementType, unsigned MinNumElts);
5555 unsigned MinNumElts = std::min(WidenNumElts, InNumElts); in ModifyToType() local5557 for (Idx = 0; Idx < MinNumElts; ++Idx) in ModifyToType()