Home
last modified time | relevance | path

Searched refs:hasFloatingRepresentation (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp230 if ((DeclRef1->getType()->hasFloatingRepresentation()) && in checkComparisonOp()
231 (DeclRef2->getType()->hasFloatingRepresentation())) { in checkComparisonOp()
244 } else if (LHS->getType()->hasFloatingRepresentation()) { in checkComparisonOp()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DCanonicalType.h307 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, hasFloatingRepresentation)
H A DType.h2227 bool hasFloatingRepresentation() const;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp11337 if (LHSType->hasFloatingRepresentation() || in diagnoseTautologicalComparison()
11563 if (OtherTy->hasFloatingRepresentation()) { in checkArithmeticOrEnumeralThreeWayCompare()
11638 if (Type->hasFloatingRepresentation() && BinaryOperator::isEqualityOp(Opc)) in checkArithmeticOrEnumeralCompare()
12195 LHSType->hasFloatingRepresentation()) { in CheckVectorCompareOperands()
12196 assert(RHS.get()->getType()->hasFloatingRepresentation()); in CheckVectorCompareOperands()
12333 !getLangOpts().OpenCLCPlusPlus && vType->hasFloatingRepresentation()) in CheckVectorLogicalOperands()
12443 if (LHS.get()->getType()->hasFloatingRepresentation() || in CheckBitwiseOperands()
12444 RHS.get()->getType()->hasFloatingRepresentation()) in CheckBitwiseOperands()
H A DSemaDeclAttr.cpp3707 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) { in handleTransparentUnionAttr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExprAgg.cpp986 if (ArgTy->hasFloatingRepresentation()) in EmitCompare()
H A DTargetInfo.cpp7986 (RetTy->isVectorType() && !RetTy->hasFloatingRepresentation())) { in classifyReturnType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp3878 (EltTy->hasFloatingRepresentation() && !EltTy->isBFloat16Type() && \ in getScalableVectorType()
3880 (EltTy->hasFloatingRepresentation() && EltTy->isBFloat16Type() && \ in getScalableVectorType()
3896 (EltTy->hasFloatingRepresentation() && IsFP)) && \ in getScalableVectorType()
H A DType.cpp2103 bool Type::hasFloatingRepresentation() const { in hasFloatingRepresentation() function in Type