Lines Matching defs:rhs
57 bool operator()(const Key& lhs, const Key& rhs) const
61 const auto timestamp_rhs = keys->find(rhs);
65 // timestamp for lhs not found - cannot be smaller than for rhs
71 // timestamp for rhs not found - timestamp for lhs is smaller
478 friend bool operator==(const fifo_map& lhs, const fifo_map& rhs)
480 return lhs.m_map == rhs.m_map;
483 friend bool operator!=(const fifo_map& lhs, const fifo_map& rhs)
485 return lhs.m_map != rhs.m_map;
488 friend bool operator<(const fifo_map& lhs, const fifo_map& rhs)
490 return lhs.m_map < rhs.m_map;
493 friend bool operator<=(const fifo_map& lhs, const fifo_map& rhs)
495 return lhs.m_map <= rhs.m_map;
498 friend bool operator>(const fifo_map& lhs, const fifo_map& rhs)
500 return lhs.m_map > rhs.m_map;
503 friend bool operator>=(const fifo_map& lhs, const fifo_map& rhs)
505 return lhs.m_map >= rhs.m_map;