Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DTargetInfo.cpp957 assert(getLongFractScale() + 1 <= LongFractWidth); in CheckFixedPointBits()
968 assert(getLongFractScale() == getUnsignedLongFractScale() || in CheckFixedPointBits()
969 getLongFractScale() == getUnsignedLongFractScale() - 1); in CheckFixedPointBits()
978 assert(getLongFractScale() >= getFractScale() && in CheckFixedPointBits()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h632 unsigned getLongFractScale() const { return LongFractWidth - 1; } in getLongFractScale() function
650 return PaddingOnUnsignedFixedPoint ? getLongFractScale() in getUnsignedLongFractScale()
651 : getLongFractScale() + 1; in getUnsignedLongFractScale()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DInitPreprocessor.cpp1203 TI.getLongFractScale(), /*Signed=*/true); in InitializePredefinedMacros()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp13926 return Target.getLongFractScale(); in getFixedPointScale()