Home | History | Annotate | Download | only in IR

Lines Matching refs:ElementCount

428                            unsigned ElementCount, LLVMBool Packed) {
429 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
434 unsigned ElementCount, LLVMBool Packed) {
436 ElementCount, Packed);
453 unsigned ElementCount, LLVMBool Packed) {
454 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
488 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) {
489 return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
496 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) {
497 return wrap(VectorType::get(unwrap(ElementType), ElementCount));