Home
last modified time | relevance | path

Searched refs:nElements (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/mlir/include/mlir/ExecutionEngine/
H A DMemRefUtils.h102 allocAligned(size_t nElements, AllocFunType allocFun = &::malloc,
105 auto size = nElements * sizeof(T);
162 int64_t nElements = 1; in freeFunc() local
164 nElements *= s; in freeFunc()
167 detail::allocAligned<T>(nElements, allocFun, alignment); in freeFunc()
177 nElements * sizeof(T) + in freeFunc()
/llvm-project-15.0.7/clang/lib/AST/
H A DType.cpp330 VectorType::VectorType(QualType vecType, unsigned nElements, QualType canonType, in VectorType() argument
332 : VectorType(Vector, vecType, nElements, canonType, vecKind) {} in VectorType()
334 VectorType::VectorType(TypeClass tc, QualType vecType, unsigned nElements, in VectorType() argument
338 VectorTypeBits.NumElements = nElements; in VectorType()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DType.h3335 VectorType(QualType vecType, unsigned nElements, QualType canonType,
3338 VectorType(TypeClass tc, QualType vecType, unsigned nElements,
3425 ExtVectorType(QualType vecType, unsigned nElements, QualType canonType)
3426 : VectorType(ExtVector, vecType, nElements, canonType, GenericVector) {}