Lines Matching refs:bT
570 auto bT = b.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()
582 failed(getStridesAndOffset(bT, bStrides, bOffset)) || in areCastCompatible()
600 if (aT.getMemorySpace() != bT.getMemorySpace()) in areCastCompatible()
604 if (aT.getRank() != bT.getRank()) in areCastCompatible()
608 int64_t aDim = aT.getDimSize(i), bDim = bT.getDimSize(i); in areCastCompatible()
616 if (!bT && !ubT) in areCastCompatible()
623 auto bEltType = (bT) ? bT.getElementType() : ubT.getElementType(); in areCastCompatible()
628 auto bMemSpace = (bT) ? bT.getMemorySpace() : ubT.getMemorySpace(); in areCastCompatible()