Home | History | Annotate | Download | only in IR

Lines Matching refs:ElementCount

328                            unsigned ElementCount, LLVMBool Packed) {
329 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
334 unsigned ElementCount, LLVMBool Packed) {
336 ElementCount, Packed);
353 unsigned ElementCount, LLVMBool Packed) {
354 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
383 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) {
384 return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
391 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) {
392 return wrap(VectorType::get(unwrap(ElementType), ElementCount));