Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DTargetInfo.cpp802 assert(getShortFractScale() + 1 <= ShortFractWidth); in CheckFixedPointBits()
811 assert(getShortFractScale() == getUnsignedShortFractScale() || in CheckFixedPointBits()
812 getShortFractScale() == getUnsignedShortFractScale() - 1); in CheckFixedPointBits()
826 getFractScale() >= getShortFractScale()); in CheckFixedPointBits()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DTargetInfo.h547 unsigned getShortFractScale() const { return ShortFractWidth - 1; } in getShortFractScale() function
560 return PaddingOnUnsignedFixedPoint ? getShortFractScale() in getUnsignedShortFractScale()
561 : getShortFractScale() + 1; in getUnsignedShortFractScale()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp11429 return Target.getShortFractScale(); in getFixedPointScale()