Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DTargetInfo.cpp955 assert(getShortFractScale() + 1 <= ShortFractWidth); in CheckFixedPointBits()
964 assert(getShortFractScale() == getUnsignedShortFractScale() || in CheckFixedPointBits()
965 getShortFractScale() == getUnsignedShortFractScale() - 1); in CheckFixedPointBits()
979 getFractScale() >= getShortFractScale()); in CheckFixedPointBits()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h624 unsigned getShortFractScale() const { return ShortFractWidth - 1; } in getShortFractScale() function
637 return PaddingOnUnsignedFixedPoint ? getShortFractScale() in getUnsignedShortFractScale()
638 : getShortFractScale() + 1; in getUnsignedShortFractScale()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DInitPreprocessor.cpp1194 TI.getShortFractScale(), /*Signed=*/true); in InitializePredefinedMacros()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp13920 return Target.getShortFractScale(); in getFixedPointScale()