Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaChecking.cpp12126 static IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, in GetValueRange() function
12139 static IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty, in GetValueRange() function
12142 return GetValueRange(C, result.getInt(), MaxWidth); in GetValueRange()
12145 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth); in GetValueRange()
12147 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth); in GetValueRange()
12154 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth); in GetValueRange()
12155 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth); in GetValueRange()
12190 return GetValueRange(C, result.Val, GetExprType(E), MaxWidth); in GetExprRange()