Searched refs:IsSameFloatAfterCast (Results 1 – 2 of 2) sorted by relevance
/external/clang/lib/Sema/ |
D | SemaChecking.cpp | 7338 bool IsSameFloatAfterCast(const llvm::APFloat &value, in IsSameFloatAfterCast() function 7355 bool IsSameFloatAfterCast(const APValue &value, in IsSameFloatAfterCast() function 7359 return IsSameFloatAfterCast(value.getFloat(), Src, Tgt); in IsSameFloatAfterCast() 7363 if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt)) in IsSameFloatAfterCast() 7369 return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) && in IsSameFloatAfterCast() 7370 IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt)); in IsSameFloatAfterCast() 8247 if (IsSameFloatAfterCast(result.Val, in CheckImplicitConversion()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaChecking.cpp | 10872 static bool IsSameFloatAfterCast(const llvm::APFloat &value, in IsSameFloatAfterCast() function 10889 static bool IsSameFloatAfterCast(const APValue &value, in IsSameFloatAfterCast() function 10893 return IsSameFloatAfterCast(value.getFloat(), Src, Tgt); in IsSameFloatAfterCast() 10897 if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt)) in IsSameFloatAfterCast() 10903 return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) && in IsSameFloatAfterCast() 10904 IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt)); in IsSameFloatAfterCast() 12100 if (IsSameFloatAfterCast(result.Val, in CheckImplicitConversion()
|