Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DConversionChecker.cpp157 unsigned RepresentsUntilExp; in isLossOfPrecision() local
161 RepresentsUntilExp = llvm::APFloat::semanticsPrecision(Sema); in isLossOfPrecision()
163 RepresentsUntilExp = AC.getIntWidth(DestType); in isLossOfPrecision()
164 if (RepresentsUntilExp == 1) { in isLossOfPrecision()
169 RepresentsUntilExp--; in isLossOfPrecision()
172 if (RepresentsUntilExp >= sizeof(unsigned long long) * CHAR_BIT) { in isLossOfPrecision()
181 if (RepresentsUntilExp >= CorrectedSrcWidth) { in isLossOfPrecision()
186 unsigned long long MaxVal = 1ULL << RepresentsUntilExp; in isLossOfPrecision()