Lines Matching defs:AtomTy
3764 QualType AtomTy = pointerType->getPointeeType(); // 'A'
3765 QualType ValType = AtomTy; // 'C'
3767 if (!AtomTy->isAtomicType()) {
3772 if ((Form != Load && Form != LoadCopy && AtomTy.isConstQualified()) ||
3773 AtomTy.getAddressSpace() == LangAS::opencl_constant) {
3775 << (AtomTy.isConstQualified() ? 0 : 1) << Ptr->getType()
3779 ValType = AtomTy->castAs<AtomicType>()->getValueType();
3789 if (RequireCompleteType(Ptr->getBeginLoc(), AtomTy,
3792 if (Context.getTypeInfoInChars(AtomTy).Width.isZero()) {
3840 if (!IsC11 && !AtomTy.isTriviallyCopyableType(Context) &&
3841 !AtomTy->isScalarType()) {