Lines Matching defs:ElementCount
793 unsigned ElementCount, LLVMBool Packed) {
794 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
799 unsigned ElementCount, LLVMBool Packed) {
801 ElementCount, Packed);
818 unsigned ElementCount, LLVMBool Packed) {
819 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
868 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) {
869 return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
872 LLVMTypeRef LLVMArrayType2(LLVMTypeRef ElementType, uint64_t ElementCount) {
873 return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
884 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) {
885 return wrap(FixedVectorType::get(unwrap(ElementType), ElementCount));
889 unsigned ElementCount) {
890 return wrap(ScalableVectorType::get(unwrap(ElementType), ElementCount));