Searched refs:ElementCount (Results 1 - 20 of 20) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DTypeSize.h23 class ElementCount { class in namespace:llvm
29 ElementCount(unsigned Min, bool Scalable) function in class:llvm::ElementCount
32 ElementCount operator*(unsigned RHS) {
35 ElementCount operator/(unsigned RHS) {
39 bool operator==(const ElementCount& RHS) const {
42 bool operator!=(const ElementCount& RHS) const {
H A DMachineValueType.h670 ElementCount getVectorElementCount() const {
1090 static MVT getVectorVT(MVT VT, ElementCount EC) {
/freebsd-11-stable/sys/contrib/dev/acpica/components/dispatcher/
H A Ddspkginit.c177 * ElementCount - Number of elements in the package - this is
204 UINT32 ElementCount,
257 ((ACPI_SIZE) ElementCount + 1) * sizeof (void *));
265 ObjDesc->Package.Count = ElementCount;
280 for (i = 0; Arg && (i < ElementCount); i++)
377 i, ElementCount));
379 else if (i < ElementCount)
391 i, ElementCount));
201 AcpiDsBuildInternalPackageObj( ACPI_WALK_STATE *WalkState, ACPI_PARSE_OBJECT *Op, UINT32 ElementCount, ACPI_OPERAND_OBJECT **ObjDescPtr) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseMapInfo.h283 template <> struct DenseMapInfo<ElementCount> {
284 static inline ElementCount getEmptyKey() { return {~0U, true}; }
285 static inline ElementCount getTombstoneKey() { return {~0U - 1, false}; }
286 static unsigned getHashValue(const ElementCount& EltCnt) {
293 static bool isEqual(const ElementCount& LHS, const ElementCount& RHS) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckPlacementNew.cpp61 SVal ElementCount = C.getSVal(SizeExpr); local
62 if (auto ElementCountNL = ElementCount.getAs<NonLoc>()) {
H A DMallocChecker.cpp1383 SVal ElementCount; local
1387 ElementCount = C.getSVal(SizeExpr);
1395 ElementCount = svalBuilder.makeIntVal(1, true);
1404 if (ElementCount.getAs<NonLoc>()) {
1406 // size in Bytes = ElementCount*TypeSize
1408 State, BO_Mul, ElementCount.castAs<NonLoc>(),
/freebsd-11-stable/sys/contrib/dev/acpica/components/namespace/
H A Dnsrepair2.c785 UINT32 ElementCount; local
792 ElementCount = PackageObject->Package.Count;
796 for (Index = 0; Index < ElementCount; Index++, TopObjectList++)
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DDerivedTypes.h447 VectorType(Type *ElType, ElementCount EC);
459 static VectorType *get(Type *ElementType, ElementCount EC);
540 /// Return an ElementCount instance to represent the (possibly scalable)
542 ElementCount getElementCount() const {
574 ElementCount Type::getVectorElementCount() const {
H A DType.h375 inline ElementCount getVectorElementCount() const;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DValueTypes.h85 static EVT getVectorVT(LLVMContext &Context, EVT VT, ElementCount EC) {
282 // Given a (possibly scalable) vector type, return the ElementCount
283 ElementCount getVectorElementCount() const {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DVectorUtils.h103 static VFShape get(const CallInst &CI, ElementCount EC, bool HasGlobalPred) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DType.cpp611 VectorType::VectorType(Type *ElType, ElementCount EC)
614 VectorType *VectorType::get(Type *ElementType, ElementCount EC) {
H A DCore.cpp671 unsigned ElementCount, LLVMBool Packed) {
672 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount); local
677 unsigned ElementCount, LLVMBool Packed) {
679 ElementCount, Packed);
696 unsigned ElementCount, LLVMBool Packed) {
697 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount); local
743 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) { argument
744 return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
751 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) { argument
752 return wrap(VectorType::get(unwrap(ElementType), ElementCount));
670 LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes, unsigned ElementCount, LLVMBool Packed) argument
676 LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount, LLVMBool Packed) argument
695 LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes, unsigned ElementCount, LLVMBool Packed) argument
[all...]
H A DLLVMContextImpl.h1337 DenseMap<std::pair<Type *, ElementCount>, VectorType*> VectorTypes;
H A DConstants.cpp2236 ElementCount NElts = Mask->getType()->getVectorElementCount();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/
H A DCore.h1274 unsigned ElementCount, LLVMBool Packed);
1281 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount,
1304 unsigned ElementCount, LLVMBool Packed);
1397 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount);
1436 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount);
/freebsd-11-stable/sys/dev/hpt27xx/
H A Dhptintf.h658 HPT_U32 ElementCount; member in struct:_ENCLOSURE_INFO_V4
/freebsd-11-stable/sys/dev/hptnr/
H A Dhptintf.h654 HPT_U32 ElementCount; member in struct:_ENCLOSURE_INFO_V4
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp5839 uint64_t ElementCount = 1; local
5841 ElementCount *= CA->getSize().getZExtValue();
5845 return ElementCount;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp11175 unsigned ElementCount = SrcVT.getVectorNumElements(); local
11176 SrcVT = MVT::getVectorVT(MVT::getIntegerVT(SrcEltSize * 2), ElementCount);

Completed in 303 milliseconds