HomeSort by: relevance | last modified time | path
    Searched defs:RHSType (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_handlers.h 66 const TypeDescriptor &RHSType;
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
MatrixBuilder.h 134 auto *RHSType = cast<VectorType>(RHS->getType());
141 Type *OverloadedTypes[] = {ReturnType, LHSType, RHSType};
  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_handlers.h 76 const TypeDescriptor &RHSType;
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_handlers.h 76 const TypeDescriptor &RHSType;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 389 Type *RHSType = RHSVal->getType();
398 I->getOperand(1)->getType() != RHSType)
432 NewRHS = PHINode::Create(RHSType, PN.getNumIncomingValues(),
InstCombineCompares.cpp 944 Type *RHSType = GEPRHS->getOperand(i)->getType();
947 RHSType->getPrimitiveSizeInBits() ||
949 (!LHSType->isVectorTy() || !RHSType->isVectorTy()))) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaObjCProperty.cpp 878 QualType RHSType = S.Context.getCanonicalType(Property->getType());
944 if (!S.Context.propertyTypesAreCompatible(LHSType, RHSType)) {
947 if (!S.isObjCPointerConversion(RHSType, LHSType, ConvertedType, IncompatibleObjC)
1388 QualType rhsType =Context.getCanonicalType(IvarType).getUnqualifiedType();
1389 if (lhsType != rhsType &&
1692 QualType RHSType =
1695 if (!Context.propertyTypesAreCompatible(LHSType, RHSType)) {
1700 if (!isObjCPointerConversion(RHSType, LHSType,
1736 QualType rhsType =Context.getCanonicalType(GetterType).getUnqualifiedType();
1737 if (lhsType != rhsType && lhsType->isArithmeticType()
    [all...]
SemaChecking.cpp 6292 QualType RHSType = TheCall->getArg(1)->getType();
6294 if (!LHSType->isVectorType() || !RHSType->isVectorType())
6308 if (!RHSType->hasIntegerRepresentation() ||
6309 RHSType->castAs<VectorType>()->getNumElements() != numElements)
6315 } else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
SemaExpr.cpp 1053 QualType RHSType,
1056 if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType,
1059 if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType,
1061 return RHSType;
1075 int Order = S.Context.getFloatingTypeOrder(LHSType, RHSType);
1078 auto *RHSComplexType = dyn_cast<ComplexType>(RHSType);
1082 RHSComplexType ? RHSComplexType->getElementType() : RHSType;
1140 QualType RHSType, bool IsCompAssign) {
1142 bool RHSFloat = RHSType->isRealFloatingType();
1147 if (LHSType->isFixedPointType() || RHSType->isFixedPointType())
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprScalar.cpp 142 QualType RHSType = BinOp->getRHS()->getType();
143 return LHSType->isFixedPointType() || RHSType->isFixedPointType();

Completed in 42 milliseconds