Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DTargetInfo.cpp985 assert(getFractScale() + 1 <= FractWidth); in CheckFixedPointBits()
995 assert(getFractScale() == getUnsignedFractScale() || in CheckFixedPointBits()
996 getFractScale() == getUnsignedFractScale() - 1); in CheckFixedPointBits()
1007 assert(getLongFractScale() >= getFractScale() && in CheckFixedPointBits()
1008 getFractScale() >= getShortFractScale()); in CheckFixedPointBits()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h649 unsigned getFractScale() const { return FractWidth - 1; } in getFractScale() function
665 return PaddingOnUnsignedFixedPoint ? getFractScale() : getFractScale() + 1; in getUnsignedFractScale()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DInitPreprocessor.cpp1220 TI.getFractScale(), /*Signed=*/true); in InitializePredefinedMacros()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp14759 return Target.getFractScale(); in getFixedPointScale()