Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Basic/
H A DTargetInfo.cpp754 assert(getFractScale() + 1 <= FractWidth); in CheckFixedPointBits()
764 assert(getFractScale() == getUnsignedFractScale() || in CheckFixedPointBits()
765 getFractScale() == getUnsignedFractScale() - 1); in CheckFixedPointBits()
776 assert(getLongFractScale() >= getFractScale() && in CheckFixedPointBits()
777 getFractScale() >= getShortFractScale()); in CheckFixedPointBits()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DTargetInfo.h484 unsigned getFractScale() const { return FractWidth - 1; } in getFractScale() function
500 return PaddingOnUnsignedFixedPoint ? getFractScale() : getFractScale() + 1; in getUnsignedFractScale()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp10429 return Target.getFractScale(); in getFixedPointScale()