Lines Matching refs:rhs
593 fn add(self, rhs: Bounded<T, M>) -> Self::Output { in add()
594 self.get() + rhs.get() in add()
605 fn bitand(self, rhs: Bounded<T, M>) -> Self::Output { in bitand()
606 self.get() & rhs.get() in bitand()
617 fn bitor(self, rhs: Bounded<T, M>) -> Self::Output { in bitor()
618 self.get() | rhs.get() in bitor()
629 fn bitxor(self, rhs: Bounded<T, M>) -> Self::Output { in bitxor()
630 self.get() ^ rhs.get() in bitxor()
641 fn div(self, rhs: Bounded<T, M>) -> Self::Output { in div()
642 self.get() / rhs.get() in div()
653 fn mul(self, rhs: Bounded<T, M>) -> Self::Output { in mul()
654 self.get() * rhs.get() in mul()
665 fn rem(self, rhs: Bounded<T, M>) -> Self::Output { in rem()
666 self.get() % rhs.get() in rem()
677 fn sub(self, rhs: Bounded<T, M>) -> Self::Output { in sub()
678 self.get() - rhs.get() in sub()
691 fn add(self, rhs: T) -> Self::Output { in add()
692 self.get() + rhs in add()
703 fn bitand(self, rhs: T) -> Self::Output { in bitand()
704 self.get() & rhs in bitand()
715 fn bitor(self, rhs: T) -> Self::Output { in bitor()
716 self.get() | rhs in bitor()
727 fn bitxor(self, rhs: T) -> Self::Output { in bitxor()
728 self.get() ^ rhs in bitxor()
739 fn div(self, rhs: T) -> Self::Output { in div()
740 self.get() / rhs in div()
751 fn mul(self, rhs: T) -> Self::Output { in mul()
752 self.get() * rhs in mul()
787 fn rem(self, rhs: T) -> Self::Output { in rem()
788 self.get() % rhs in rem()
799 fn sub(self, rhs: T) -> Self::Output { in sub()
800 self.get() - rhs in sub()