Home
last modified time | relevance | path

Searched refs:MinNumElts (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DType.cpp666 unsigned MinNumElts) { in get() argument
667 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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DDerivedTypes.h576 ScalableVectorType(Type *ElTy, unsigned MinNumElts) in ScalableVectorType() argument
577 : VectorType(ElTy, MinNumElts, ScalableVectorTyID) {} in ScalableVectorType()
580 static ScalableVectorType *get(Type *ElementType, unsigned MinNumElts);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp5555 unsigned MinNumElts = std::min(WidenNumElts, InNumElts); in ModifyToType() local
5557 for (Idx = 0; Idx < MinNumElts; ++Idx) in ModifyToType()