Home | History | Annotate | Download | only in Support

Lines Matching defs:operator

154 APInt& APInt::operator=(uint64_t RHS) {
195 /// @brief Prefix increment operator. Increments the APInt by one.
196 APInt& APInt::operator++() {
224 /// @brief Prefix decrement operator. Decrements the APInt by one.
225 APInt& APInt::operator--() {
250 /// @brief Addition assignment operator.
251 APInt& APInt::operator+=(const APInt& RHS) {
277 /// @brief Subtraction assignment operator.
278 APInt& APInt::operator-=(const APInt& RHS) {
355 APInt& APInt::operator*=(const APInt& RHS) {
397 APInt& APInt::operator&=(const APInt& RHS) {
409 APInt& APInt::operator|=(const APInt& RHS) {
421 APInt& APInt::operator^=(const APInt& RHS) {
460 APInt APInt::operator*(const APInt& RHS) const {
469 APInt APInt::operator+(const APInt& RHS) const {
478 APInt APInt::operator-(const APInt& RHS) const {