Home
last modified time | relevance | path

Searched refs:ElementCount (Results 1 – 5 of 5) sorted by relevance

/external/llvm/include/llvm-c/
DCore.h855 unsigned ElementCount, LLVMBool Packed);
862 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount,
885 unsigned ElementCount, LLVMBool Packed);
957 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount);
996 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount);
/external/llvm/lib/IR/
DCore.cpp428 unsigned ElementCount, LLVMBool Packed) { in LLVMStructTypeInContext() argument
429 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount); in LLVMStructTypeInContext()
434 unsigned ElementCount, LLVMBool Packed) { in LLVMStructType() argument
436 ElementCount, Packed); in LLVMStructType()
453 unsigned ElementCount, LLVMBool Packed) { in LLVMStructSetBody() argument
454 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount); in LLVMStructSetBody()
488 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) { in LLVMArrayType() argument
489 return wrap(ArrayType::get(unwrap(ElementType), ElementCount)); in LLVMArrayType()
496 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) { in LLVMVectorType() argument
497 return wrap(VectorType::get(unwrap(ElementType), ElementCount)); in LLVMVectorType()
/external/pdfium/third_party/lcms2-2.6/src/
Dcmstypes.c4409 cmsUInt32Number ElementCount; in Type_MPE_Read() local
4424 if (!_cmsReadUInt32Number(io, &ElementCount)) return NULL; in Type_MPE_Read()
4426 if (!ReadPositionTable(self, io, ElementCount, BaseOffset, NewLUT, ReadMPEElem)) { in Type_MPE_Read()
/external/clang/lib/AST/
DASTContext.cpp4563 uint64_t ElementCount = 1; in getConstantArrayElementCount() local
4565 ElementCount *= CA->getSize().getZExtValue(); in getConstantArrayElementCount()
4569 return ElementCount; in getConstantArrayElementCount()
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.cpp8504 unsigned ElementCount = SrcVT.getVectorNumElements(); in performExtendCombine() local
8505 SrcVT = MVT::getVectorVT(MVT::getIntegerVT(SrcEltSize * 2), ElementCount); in performExtendCombine()