Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Basic/
H A DTargetInfo.cpp938 assert(getShortFractScale() + 1 <= ShortFractWidth); in CheckFixedPointBits()
947 assert(getShortFractScale() == getUnsignedShortFractScale() || in CheckFixedPointBits()
948 getShortFractScale() == getUnsignedShortFractScale() - 1); in CheckFixedPointBits()
962 getFractScale() >= getShortFractScale()); in CheckFixedPointBits()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DTargetInfo.h577 unsigned getShortFractScale() const { return ShortFractWidth - 1; } in getShortFractScale() function
590 return PaddingOnUnsignedFixedPoint ? getShortFractScale() in getUnsignedShortFractScale()
591 : getShortFractScale() + 1; in getUnsignedShortFractScale()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DASTContext.cpp13192 return Target.getShortFractScale(); in getFixedPointScale()