Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DConversionChecker.cpp147 unsigned RepresentsUntilExp; in isLossOfPrecision() local
151 RepresentsUntilExp = llvm::APFloat::semanticsPrecision(Sema); in isLossOfPrecision()
153 RepresentsUntilExp = AC.getIntWidth(DestType); in isLossOfPrecision()
154 if (RepresentsUntilExp == 1) { in isLossOfPrecision()
159 RepresentsUntilExp--; in isLossOfPrecision()
162 if (RepresentsUntilExp >= sizeof(unsigned long long) * CHAR_BIT) { in isLossOfPrecision()
171 if (RepresentsUntilExp >= CorrectedSrcWidth) { in isLossOfPrecision()
176 unsigned long long MaxVal = 1ULL << RepresentsUntilExp; in isLossOfPrecision()