Home | History | Annotate | Download | only in IR

Lines Matching refs:ElementCount

334                            unsigned ElementCount, LLVMBool Packed) {
335 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
340 unsigned ElementCount, LLVMBool Packed) {
342 ElementCount, Packed);
359 unsigned ElementCount, LLVMBool Packed) {
360 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
389 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) {
390 return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
397 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) {
398 return wrap(VectorType::get(unwrap(ElementType), ElementCount));