Home
last modified time | relevance | path

Searched refs:aT (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/clang/test/SemaCXX/
H A DPR9460.cpp5 template<typename aT>
8 basic_string(aT*);
H A DPR9461.cpp11 template<typename aT,typename,typename oc>
15 basic_string(const aT*,const oc&a=int());
/llvm-project-15.0.7/mlir/lib/Dialect/Vector/Transforms/
H A DVectorTransferSplitRewritePatterns.cpp155 static MemRefType getCastCompatibleMemRefType(MemRefType aT, MemRefType bT) { in getCastCompatibleMemRefType() argument
156 if (memref::CastOp::areCastCompatible(aT, bT)) in getCastCompatibleMemRefType()
157 return aT; in getCastCompatibleMemRefType()
158 if (aT.getRank() != bT.getRank()) in getCastCompatibleMemRefType()
162 if (failed(getStridesAndOffset(aT, aStrides, aOffset)) || in getCastCompatibleMemRefType()
167 ArrayRef<int64_t> aShape = aT.getShape(), bShape = bT.getShape(); in getCastCompatibleMemRefType()
169 SmallVector<int64_t, 4> resShape(aT.getRank(), 0), in getCastCompatibleMemRefType()
171 for (int64_t idx = 0, e = aT.getRank(); idx < e; ++idx) { in getCastCompatibleMemRefType()
181 resShape, aT.getElementType(), in getCastCompatibleMemRefType()
182 makeStridedLinearLayoutMap(resStrides, resOffset, aT.getContext())); in getCastCompatibleMemRefType()
/llvm-project-15.0.7/clang/test/CXX/temp/temp.res/temp.local/
H A Dp1.cpp35 A *aT; member
/llvm-project-15.0.7/mlir/lib/Dialect/MemRef/IR/
H A DMemRefOps.cpp569 auto aT = a.dyn_cast<MemRefType>(); in areCastCompatible() local
575 if (aT && bT) { in areCastCompatible()
576 if (aT.getElementType() != bT.getElementType()) in areCastCompatible()
578 if (aT.getLayout() != bT.getLayout()) { in areCastCompatible()
581 if (failed(getStridesAndOffset(aT, aStrides, aOffset)) || in areCastCompatible()
600 if (aT.getMemorySpace() != bT.getMemorySpace()) in areCastCompatible()
604 if (aT.getRank() != bT.getRank()) in areCastCompatible()
607 for (unsigned i = 0, e = aT.getRank(); i != e; ++i) { in areCastCompatible()
614 if (!aT && !uaT) in areCastCompatible()
622 auto aEltType = (aT) ? aT.getElementType() : uaT.getElementType(); in areCastCompatible()
[all …]
/llvm-project-15.0.7/mlir/lib/Dialect/Tensor/IR/
H A DTensorOps.cpp148 auto aT = a.dyn_cast<TensorType>(); in areCastCompatible() local
150 if (!aT || !bT) in areCastCompatible()
153 if (aT.getElementType() != bT.getElementType()) in areCastCompatible()
156 return succeeded(verifyCompatibleShape(aT, bT)); in areCastCompatible()