Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFixedPoint.cpp87 bool OtherSigned = OtherVal.isSigned(); in compare() local
99 if (ThisSigned && OtherSigned) { in compare()
104 } else if (!ThisSigned && !OtherSigned) { in compare()
109 } else if (ThisSigned && !OtherSigned) { in compare()
/freebsd/contrib/llvm-project/libc/src/__support/
H A Dbig_int.h364 template <size_t OtherBits, bool OtherSigned, typename OtherWordType>
366 const BigInt<OtherBits, OtherSigned, OtherWordType> &other) {
367 using BigIntOther = BigInt<OtherBits, OtherSigned, OtherWordType>;
506 template <size_t OtherBits, bool OtherSigned, typename OtherWordType>
508 operator BigInt<OtherBits, OtherSigned, OtherWordType>() const {
509 return BigInt<OtherBits, OtherSigned, OtherWordType>(this);
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DIntegral.h68 template <unsigned OtherBits, bool OtherSigned> friend class Integral;