• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/

Lines Matching refs:this

45   /// Determine sign of this APSInt.
47 /// \returns true if this APSInt is negative, false otherwise
50 /// Determine if this APSInt Value is non-negative (>= 0)
52 /// \returns true if this APSInt is non-negative, false otherwise
55 /// Determine if this APSInt Value is positive.
57 /// This tests if the value of this APSInt is positive (> 0). Note
60 /// \returns true if this APSInt is positive.
66 return *this;
72 return *this;
81 /// toString - Append this APSInt to the specified SmallString.
119 *this = urem(RHS);
121 *this = srem(RHS);
122 return *this;
127 *this = udiv(RHS);
129 *this = sdiv(RHS);
130 return *this;
149 return *this;
173 return !((*this) == RHS);
177 return compareValues(*this, get(RHS)) == 0;
180 return compareValues(*this, get(RHS)) != 0;
183 return compareValues(*this, get(RHS)) <= 0;
186 return compareValues(*this, get(RHS)) >= 0;
189 return compareValues(*this, get(RHS)) < 0;
192 return compareValues(*this, get(RHS)) > 0;
199 return APSInt(static_cast<const APInt&>(*this) << Bits, IsUnsigned);
202 static_cast<APInt&>(*this) <<= Amt;
203 return *this;
207 ++(static_cast<APInt&>(*this));
208 return *this;
211 --(static_cast<APInt&>(*this));
212 return *this;
215 return APSInt(++static_cast<APInt&>(*this), IsUnsigned);
218 return APSInt(--static_cast<APInt&>(*this), IsUnsigned);
221 return APSInt(-static_cast<const APInt&>(*this), IsUnsigned);
225 static_cast<APInt&>(*this) += RHS;
226 return *this;
230 static_cast<APInt&>(*this) -= RHS;
231 return *this;
235 static_cast<APInt&>(*this) *= RHS;
236 return *this;
240 static_cast<APInt&>(*this) &= RHS;
241 return *this;
245 static_cast<APInt&>(*this) |= RHS;
246 return *this;
250 static_cast<APInt&>(*this) ^= RHS;
251 return *this;
256 return APSInt(static_cast<const APInt&>(*this) & RHS, IsUnsigned);
261 return APSInt(static_cast<const APInt&>(*this) | RHS, IsUnsigned);
266 return APSInt(static_cast<const APInt&>(*this) ^ RHS, IsUnsigned);
271 return APSInt(static_cast<const APInt&>(*this) * RHS, IsUnsigned);
275 return APSInt(static_cast<const APInt&>(*this) + RHS, IsUnsigned);
279 return APSInt(static_cast<const APInt&>(*this) - RHS, IsUnsigned);
282 return APSInt(~static_cast<const APInt&>(*this), IsUnsigned);