Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DTargetInfo.cpp940 assert(getShortFractScale() + 1 <= ShortFractWidth); in CheckFixedPointBits()
949 assert(getShortFractScale() == getUnsignedShortFractScale() || in CheckFixedPointBits()
950 getShortFractScale() == getUnsignedShortFractScale() - 1); in CheckFixedPointBits()
964 getFractScale() >= getShortFractScale()); in CheckFixedPointBits()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h599 unsigned getShortFractScale() const { return ShortFractWidth - 1; } in getShortFractScale() function
612 return PaddingOnUnsignedFixedPoint ? getShortFractScale() in getUnsignedShortFractScale()
613 : getShortFractScale() + 1; in getUnsignedShortFractScale()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp13344 return Target.getShortFractScale(); in getFixedPointScale()