Home | History | Annotate | Download | only in VMCore

Lines Matching defs:ElementCount

294                            unsigned ElementCount, LLVMBool Packed) {
295 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
300 unsigned ElementCount, LLVMBool Packed) {
302 ElementCount, Packed);
319 unsigned ElementCount, LLVMBool Packed) {
320 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
349 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) {
350 return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
357 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) {
358 return wrap(VectorType::get(unwrap(ElementType), ElementCount));