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.cpp956 assert(getFractScale() + 1 <= FractWidth); in CheckFixedPointBits()
966 assert(getFractScale() == getUnsignedFractScale() || in CheckFixedPointBits()
967 getFractScale() == getUnsignedFractScale() - 1); in CheckFixedPointBits()
978 assert(getLongFractScale() >= getFractScale() && in CheckFixedPointBits()
979 getFractScale() >= getShortFractScale()); in CheckFixedPointBits()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h628 unsigned getFractScale() const { return FractWidth - 1; } in getFractScale() function
644 return PaddingOnUnsignedFixedPoint ? getFractScale() : getFractScale() + 1; in getUnsignedFractScale()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DInitPreprocessor.cpp1199 TI.getFractScale(), /*Signed=*/true); in InitializePredefinedMacros()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp13923 return Target.getFractScale(); in getFixedPointScale()