Home
last modified time | relevance | path

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

/freebsd-14-stable/contrib/llvm-project/clang/lib/Basic/
HDTargetInfo.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-14-stable/contrib/llvm-project/clang/include/clang/Basic/
HDTargetInfo.h632 unsigned getLongFractScale() const { return LongFractWidth - 1; } in getLongFractScale() function
650 return PaddingOnUnsignedFixedPoint ? getLongFractScale() in getUnsignedLongFractScale()
651 : getLongFractScale() + 1; in getUnsignedLongFractScale()
/freebsd-14-stable/contrib/llvm-project/clang/lib/Frontend/
HDInitPreprocessor.cpp1203 TI.getLongFractScale(), /*Signed=*/true); in InitializePredefinedMacros()
/freebsd-14-stable/contrib/llvm-project/clang/lib/AST/
HDASTContext.cpp13926 return Target.getLongFractScale(); in getFixedPointScale()