Lines Matching defs:ElementCount
792 unsigned ElementCount, LLVMBool Packed) {
793 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
798 unsigned ElementCount, LLVMBool Packed) {
800 ElementCount, Packed);
817 unsigned ElementCount, LLVMBool Packed) {
818 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
867 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) {
868 return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
871 LLVMTypeRef LLVMArrayType2(LLVMTypeRef ElementType, uint64_t ElementCount) {
872 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));