Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Basic/
H A DTargetInfo.cpp824 assert(getShortFractScale() + 1 <= ShortFractWidth); in CheckFixedPointBits()
833 assert(getShortFractScale() == getUnsignedShortFractScale() || in CheckFixedPointBits()
834 getShortFractScale() == getUnsignedShortFractScale() - 1); in CheckFixedPointBits()
848 getFractScale() >= getShortFractScale()); in CheckFixedPointBits()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h547 unsigned getShortFractScale() const { return ShortFractWidth - 1; } in getShortFractScale() function
560 return PaddingOnUnsignedFixedPoint ? getShortFractScale() in getUnsignedShortFractScale()
561 : getShortFractScale() + 1; in getUnsignedShortFractScale()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp11503 return Target.getShortFractScale(); in getFixedPointScale()