Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Basic/
H A DTargetInfo.cpp753 assert(getShortFractScale() + 1 <= ShortFractWidth); in CheckFixedPointBits()
762 assert(getShortFractScale() == getUnsignedShortFractScale() || in CheckFixedPointBits()
763 getShortFractScale() == getUnsignedShortFractScale() - 1); in CheckFixedPointBits()
777 getFractScale() >= getShortFractScale()); in CheckFixedPointBits()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DTargetInfo.h480 unsigned getShortFractScale() const { return ShortFractWidth - 1; } in getShortFractScale() function
493 return PaddingOnUnsignedFixedPoint ? getShortFractScale() in getUnsignedShortFractScale()
494 : getShortFractScale() + 1; in getUnsignedShortFractScale()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp10426 return Target.getShortFractScale(); in getFixedPointScale()