Searched refs:EltCnt (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseMapInfo.h286 static unsigned getHashValue(const ElementCount& EltCnt) { argument
287 if (EltCnt.Scalable)
288 return (EltCnt.Min * 37U) - 1U;
290 return EltCnt.Min * 37U;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DValueTypes.h368 auto EltCnt = getVectorElementCount(); local
369 assert(!(EltCnt.Min & 1) && "Splitting vector, but not in half!");
370 return EVT::getVectorVT(Context, EltVT, EltCnt / 2);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DDerivedTypes.h522 auto EltCnt = VTy->getElementCount(); local
523 assert ((EltCnt.Min & 1) == 0 &&
525 return VectorType::get(VTy->getElementType(), EltCnt/2);
531 auto EltCnt = VTy->getElementCount(); local
534 return VectorType::get(VTy->getElementType(), EltCnt*2);
H A DDataLayout.h658 auto EltCnt = VTy->getElementCount(); local
659 uint64_t MinBits = EltCnt.Min *
661 return TypeSize(MinBits, EltCnt.Scalable);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DMachineValueType.h397 auto EltCnt = getVectorElementCount(); local
398 assert(!(EltCnt.Min & 1) && "Splitting vector, but not in half!");
399 return getVectorVT(EltVT, EltCnt / 2);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp852 auto EltCnt = Op.getValueType().getVectorElementCount(); local
854 EVT::getVectorVT(*DAG.getContext(), EltNVT, EltCnt), Op);

Completed in 129 milliseconds