Lines Matching refs:rhs

186     bool operator==(StridedArrayIterator const & rhs) const  in operator ==()
187 { return (current_ == rhs.current_); } in operator ==()
189 bool operator!=(StridedArrayIterator const & rhs) const in operator !=()
190 { return (current_ != rhs.current_); } in operator !=()
192 bool operator<(StridedArrayIterator const & rhs) const in operator <()
193 { return (current_ < rhs.current_); } in operator <()
195 bool operator<=(StridedArrayIterator const & rhs) const in operator <=()
196 { return (current_ <= rhs.current_); } in operator <=()
198 bool operator>(StridedArrayIterator const & rhs) const in operator >()
199 { return (current_ > rhs.current_); } in operator >()
201 bool operator>=(StridedArrayIterator const & rhs) const in operator >=()
202 { return (current_ >= rhs.current_); } in operator >=()
204 int operator-(StridedArrayIterator const & rhs) const in operator -()
205 { return (current_ - rhs.current_) / stride_; } in operator -()
303 bool equal( PackedPixelColumnIterator const & rhs ) const in equal()
305 return rhs.y == y; in equal()
308 bool less( PackedPixelColumnIterator const & rhs ) const in less()
310 return y < rhs.y; in less()
378 bool operator==(PackedPixelColumnIterator const & rhs) const in operator ==()
380 return equal( rhs ); in operator ==()
383 bool operator!=(PackedPixelColumnIterator const & rhs) const in operator !=()
385 return !equal( rhs ); in operator !=()
388 bool operator<(PackedPixelColumnIterator const & rhs) const in operator <()
390 return less(rhs); in operator <()
393 bool operator<=(PackedPixelColumnIterator const & rhs) const in operator <=()
395 return !less(rhs); in operator <=()
398 bool operator>(PackedPixelColumnIterator const & rhs) const in operator >()
400 return rhs.less(*this); in operator >()
403 bool operator>=(PackedPixelColumnIterator const & rhs) const in operator >=()
405 return !rhs.less(*this); in operator >=()
408 difference_type operator-(PackedPixelColumnIterator const & rhs) const in operator -()
410 return y - rhs.y; in operator -()
525 bool equal( PackedPixelRowIterator const & rhs ) const in equal()
527 return rhs.data_ == data_ && rhs.remainder_ == remainder_; in equal()
530 bool less( PackedPixelRowIterator const & rhs ) const in less()
532 return data_ == rhs.data_ ? in less()
533 (remainder_ < rhs.remainder_) : in less()
534 (data_ < rhs.data_); in less()
621 bool operator==(PackedPixelRowIterator const & rhs) const in operator ==()
623 return equal( rhs ); in operator ==()
626 bool operator!=(PackedPixelRowIterator const & rhs) const in operator !=()
628 return !equal( rhs ); in operator !=()
631 bool operator<(PackedPixelRowIterator const & rhs) const in operator <()
633 return less(rhs); in operator <()
636 bool operator<=(PackedPixelRowIterator const & rhs) const in operator <=()
638 return !less(rhs); in operator <=()
641 bool operator>(PackedPixelRowIterator const & rhs) const in operator >()
643 return rhs.less(*this); in operator >()
646 bool operator>=(PackedPixelRowIterator const & rhs) const in operator >=()
648 return !rhs.less(*this); in operator >=()
651 difference_type operator-(PackedPixelRowIterator const & rhs) const in operator -()
653 return (data_ - rhs.data_)*num_intraword_positions + (remainder_ - rhs.remainder_); in operator -()
735 bool equal(PackedPixelIterator const & rhs) const in equal()
737 return (x == rhs.x) && (y == rhs.y); in equal()
751 bool operator==(PackedPixelIterator const & rhs) const in operator ==()
753 return equal(rhs); in operator ==()
756 bool operator!=(PackedPixelIterator const & rhs) const in operator !=()
758 return !equal(rhs); in operator !=()
761 difference_type operator-(PackedPixelIterator const & rhs) const in operator -()
763 return difference_type(x - rhs.x, y - rhs.y); in operator -()