Searched refs:ElementCount (Results 1 – 3 of 3) sorted by relevance
/external/llvm/include/llvm-c/ |
D | Core.h | 794 unsigned ElementCount, LLVMBool Packed); 801 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount, 824 unsigned ElementCount, LLVMBool Packed); 890 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount); 929 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount);
|
/external/llvm/lib/VMCore/ |
D | Core.cpp | 321 unsigned ElementCount, LLVMBool Packed) { in LLVMStructTypeInContext() argument 322 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount); in LLVMStructTypeInContext() 327 unsigned ElementCount, LLVMBool Packed) { in LLVMStructType() argument 329 ElementCount, Packed); in LLVMStructType() 346 unsigned ElementCount, LLVMBool Packed) { in LLVMStructSetBody() argument 347 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount); in LLVMStructSetBody() 376 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) { in LLVMArrayType() argument 377 return wrap(ArrayType::get(unwrap(ElementType), ElementCount)); in LLVMArrayType() 384 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) { in LLVMVectorType() argument 385 return wrap(VectorType::get(unwrap(ElementType), ElementCount)); in LLVMVectorType()
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 3906 uint64_t ElementCount = 1; in getConstantArrayElementCount() local 3908 ElementCount *= CA->getSize().getZExtValue(); in getConstantArrayElementCount() 3911 return ElementCount; in getConstantArrayElementCount()
|