Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Basic/
H A DTargetInfo.cpp858 assert(getShortFractScale() + 1 <= ShortFractWidth); in CheckFixedPointBits()
867 assert(getShortFractScale() == getUnsignedShortFractScale() || in CheckFixedPointBits()
868 getShortFractScale() == getUnsignedShortFractScale() - 1); in CheckFixedPointBits()
882 getFractScale() >= getShortFractScale()); in CheckFixedPointBits()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DTargetInfo.h556 unsigned getShortFractScale() const { return ShortFractWidth - 1; } in getShortFractScale() function
569 return PaddingOnUnsignedFixedPoint ? getShortFractScale() in getUnsignedShortFractScale()
570 : getShortFractScale() + 1; in getUnsignedShortFractScale()
/llvm-project-15.0.7/clang/lib/AST/
H A DASTContext.cpp12187 return Target.getShortFractScale(); in getFixedPointScale()