Home
last modified time | relevance | path

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

/external/llvm/include/llvm-c/
DCore.h943 unsigned ElementCount, LLVMBool Packed);
950 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount,
973 unsigned ElementCount, LLVMBool Packed);
1039 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount);
1078 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount);
/external/llvm/lib/IR/
DCore.cpp415 unsigned ElementCount, LLVMBool Packed) { in LLVMStructTypeInContext() argument
416 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount); in LLVMStructTypeInContext()
421 unsigned ElementCount, LLVMBool Packed) { in LLVMStructType() argument
423 ElementCount, Packed); in LLVMStructType()
440 unsigned ElementCount, LLVMBool Packed) { in LLVMStructSetBody() argument
441 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount); in LLVMStructSetBody()
470 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) { in LLVMArrayType() argument
471 return wrap(ArrayType::get(unwrap(ElementType), ElementCount)); in LLVMArrayType()
478 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) { in LLVMVectorType() argument
479 return wrap(VectorType::get(unwrap(ElementType), ElementCount)); in LLVMVectorType()
/external/pdfium/core/src/fxcodec/lcms2/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.cpp4312 uint64_t ElementCount = 1; in getConstantArrayElementCount() local
4314 ElementCount *= CA->getSize().getZExtValue(); in getConstantArrayElementCount()
4318 return ElementCount; in getConstantArrayElementCount()
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.cpp7204 unsigned ElementCount = SrcVT.getVectorNumElements(); in performExtendCombine() local
7205 SrcVT = MVT::getVectorVT(MVT::getIntegerVT(SrcEltSize * 2), ElementCount); in performExtendCombine()