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

  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_handlers.h 65 const TypeDescriptor &LHSType;
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
MatrixBuilder.h 133 auto *LHSType = cast<VectorType>(LHS->getType());
137 FixedVectorType::get(LHSType->getElementType(), LHSRows * RHSColumns);
141 Type *OverloadedTypes[] = {ReturnType, LHSType, RHSType};
  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_handlers.h 75 const TypeDescriptor &LHSType;
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_handlers.h 75 const TypeDescriptor &LHSType;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 388 Type *LHSType = LHSVal->getType();
397 I->getOperand(0)->getType() != LHSType ||
424 NewLHS = PHINode::Create(LHSType, PN.getNumIncomingValues(),
InstCombineCompares.cpp 943 Type *LHSType = GEPLHS->getOperand(i)->getType();
946 if (LHSType->getPrimitiveSizeInBits() !=
949 (!LHSType->isVectorTy() || !RHSType->isVectorTy()))) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaObjCProperty.cpp 943 QualType LHSType = S.Context.getCanonicalType(Prop->getType());
944 if (!S.Context.propertyTypesAreCompatible(LHSType, RHSType)) {
947 if (!S.isObjCPointerConversion(RHSType, LHSType, ConvertedType, IncompatibleObjC)
1387 QualType lhsType =Context.getCanonicalType(PropertyIvarType).getUnqualifiedType();
1389 if (lhsType != rhsType &&
1390 lhsType->isArithmeticType()) {
1690 QualType LHSType =
1695 if (!Context.propertyTypesAreCompatible(LHSType, RHSType)) {
1700 if (!isObjCPointerConversion(RHSType, LHSType,
1735 QualType lhsType = Context.getCanonicalType(PropertyRValueType)
    [all...]
SemaChecking.cpp 6291 QualType LHSType = TheCall->getArg(0)->getType();
6294 if (!LHSType->isVectorType() || !RHSType->isVectorType())
6301 numElements = LHSType->castAs<VectorType>()->getNumElements();
6315 } else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
6322 QualType eltType = LHSType->castAs<VectorType>()->getElementType();
10566 Sema::CheckReturnValExpr(Expr *RetValExp, QualType lhsType,
10573 (!isObjCMethod && isNonNullType(Context, lhsType))) &&
15231 QualType LHSType;
15239 LHSType = PD->getType();
15242 if (LHSType.isNull()
    [all...]
SemaExpr.cpp 1052 ExprResult &RHS, QualType LHSType,
1056 if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType,
1058 return LHSType;
1059 if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType,
1075 int Order = S.Context.getFloatingTypeOrder(LHSType, RHSType);
1077 auto *LHSComplexType = dyn_cast<ComplexType>(LHSType);
1080 LHSComplexType ? LHSComplexType->getElementType() : LHSType;
1139 ExprResult &RHS, QualType LHSType,
1141 bool LHSFloat = LHSType->isRealFloatingType();
1147 if (LHSType->isFixedPointType() || RHSType->isFixedPointType())
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprScalar.cpp 141 QualType LHSType = BinOp->getLHS()->getType();
143 return LHSType->isFixedPointType() || RHSType->isFixedPointType();

Completed in 97 milliseconds