Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Basic/
H A DTargetInfo.cpp942 assert(getLongFractScale() + 1 <= LongFractWidth); in CheckFixedPointBits()
953 assert(getLongFractScale() == getUnsignedLongFractScale() || in CheckFixedPointBits()
954 getLongFractScale() == getUnsignedLongFractScale() - 1); in CheckFixedPointBits()
963 assert(getLongFractScale() >= getFractScale() && in CheckFixedPointBits()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h607 unsigned getLongFractScale() const { return LongFractWidth - 1; } in getLongFractScale() function
625 return PaddingOnUnsignedFixedPoint ? getLongFractScale() in getUnsignedLongFractScale()
626 : getLongFractScale() + 1; in getUnsignedLongFractScale()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp13350 return Target.getLongFractScale(); in getFixedPointScale()