Lines Matching defs:is_negative_
748 is_negative_(immediate < 0) {} \
750 : raw_bits_(immediate), is_negative_(false) {}
759 is_negative_(operand.GetEquivalentImmediate() < 0) {}
762 return is_negative_ ? vixl::IsIntN(n, RawbitsToInt64(raw_bits_))
766 return !is_negative_ && vixl::IsUintN(n, raw_bits_);
780 return is_negative_ ? IsIntN(n) : IsUintN(n);
888 if (is_negative_) return false;
912 bool IsNegative() const { return is_negative_; }
913 bool IsPositiveOrZero() const { return !is_negative_; }
916 return is_negative_ ? UnsignedNegate(raw_bits_) : raw_bits_;
920 // Shift the arithmetic value right, with sign extension if is_negative_.
924 if (is_negative_) {
932 bool is_negative_;