Home
last modified time | relevance | path

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

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