Home
last modified time | relevance | path

Searched refs:hasSignedIntegerRepresentation (Results 1 – 12 of 12) sorted by relevance

/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp1678 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); in EmitOMPOuterLoop()
1829 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); in EmitOMPForOuterLoop()
1858 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); in EmitOMPDistributeOuterLoop()
2028 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); in EmitOMPWorksharingLoop()
2686 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); in EmitOMPDistributeLoop()
2926 RMWOp = X.getType()->hasSignedIntegerRepresentation() in emitOMPAtomicRMW()
2933 RMWOp = X.getType()->hasSignedIntegerRepresentation() in emitOMPAtomicRMW()
2973 X.getType()->hasSignedIntegerRepresentation()); in emitOMPAtomicRMW()
DCGExpr.cpp3054 LowerBound->getType()->hasSignedIntegerRepresentation()); in EmitOMPArraySectionExpr()
3086 LowerBound->getType()->hasSignedIntegerRepresentation()) in EmitOMPArraySectionExpr()
3092 Length->getType()->hasSignedIntegerRepresentation()) in EmitOMPArraySectionExpr()
3120 Length->getType()->hasSignedIntegerRepresentation()); in EmitOMPArraySectionExpr()
DCGExprScalar.cpp2239 Ops.Ty->hasSignedIntegerRepresentation()) { in EmitUndefinedBehaviorIntegerDivAndRemCheck()
2709 Ops.Ty->hasSignedIntegerRepresentation(); in EmitShl()
2910 } else if (LHSTy->hasSignedIntegerRepresentation()) { in EmitCompare()
DCGCall.cpp1808 if (RetTy->hasSignedIntegerRepresentation()) in ConstructAttributeList()
/external/clang/include/clang/AST/
DCanonicalType.h289 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, hasSignedIntegerRepresentation)
DType.h1820 bool hasSignedIntegerRepresentation() const;
/external/clang/lib/Analysis/
DFormatString.cpp407 if (PromoArg->hasSignedIntegerRepresentation() && in matchesType()
/external/clang/lib/Sema/
DSemaOpenMP.cpp4079 bool IsUnsigned = !NewStep->getType()->hasSignedIntegerRepresentation(); in SetStep()
4454 bool IsSigned = UseVarType ? VarType->hasSignedIntegerRepresentation() in BuildNumIterations()
4455 : Type->hasSignedIntegerRepresentation(); in BuildNumIterations()
4473 NewSize, Type->hasSignedIntegerRepresentation() || in BuildNumIterations()
5066 LastIteration32.get()->getType()->hasSignedIntegerRepresentation(), in CheckOpenMPLoop()
9376 bool IsSigned = Type->hasSignedIntegerRepresentation(); in ActOnOpenMPReductionClause()
DSemaChecking.cpp7697 if (LHS->getType()->hasSignedIntegerRepresentation()) { in AnalyzeComparison()
7698 assert(!RHS->getType()->hasSignedIntegerRepresentation() && in AnalyzeComparison()
7702 } else if (RHS->getType()->hasSignedIntegerRepresentation()) { in AnalyzeComparison()
DSemaExpr.cpp1218 bool LHSSigned = LHSType->hasSignedIntegerRepresentation(); in handleIntegerConversion()
1219 bool RHSSigned = RHSType->hasSignedIntegerRepresentation(); in handleIntegerConversion()
7180 else if (lhptee->hasSignedIntegerRepresentation()) in checkPointerTypesForAssignment()
7185 else if (rhptee->hasSignedIntegerRepresentation()) in checkPointerTypesForAssignment()
/external/clang/lib/AST/
DType.cpp1736 bool Type::hasSignedIntegerRepresentation() const { in hasSignedIntegerRepresentation() function in Type
DASTContext.cpp8042 assert(T->hasSignedIntegerRepresentation() && "Unexpected type"); in getCorrespondingUnsignedType()