Lines Matching refs:ElemCount
70 Type *getByteTy(int ElemCount = 0) const;
73 Type *getBoolTy(int ElemCount = 0) const;
427 int ElemCount = VecTy->getElementCount().getFixedValue(); in getMask() local
428 return HVC.getFullValue(HVC.getBoolTy(ElemCount)); in getMask()
939 auto HexagonVectorCombine::getByteTy(int ElemCount) const -> Type * { in getByteTy()
940 assert(ElemCount >= 0); in getByteTy()
942 if (ElemCount == 0) in getByteTy()
944 return VectorType::get(ByteTy, ElemCount, /*Scalable*/ false); in getByteTy()
947 auto HexagonVectorCombine::getBoolTy(int ElemCount) const -> Type * { in getBoolTy()
948 assert(ElemCount >= 0); in getBoolTy()
950 if (ElemCount == 0) in getBoolTy()
952 return VectorType::get(BoolTy, ElemCount, /*Scalable*/ false); in getBoolTy()
1121 int ElemCount = Ty->getElementCount().getFixedValue(); in concat() local
1122 SMask.resize(ElemCount * 2); in concat()