Lines Matching refs:lhs
64 friend void swap( ArenaAllocator& lhs, ArenaAllocator& rhs ) { in swap()
66 swap(lhs.my_data, rhs.my_data); in swap()
94 bool operator==( const ArenaAllocator<T, POCMA, C>& lhs, const ArenaAllocator<U, POCMA, C>& rhs ) {
95 return lhs.my_data == rhs.my_data;
99 bool operator!=( const ArenaAllocator<T, POCMA, C>& lhs, const ArenaAllocator<U, POCMA, C>& rhs ) {
100 return !(lhs == rhs);
230 friend bool operator==( const AllocatorCounters& lhs, const AllocatorCounters& rhs ) {
231 return lhs.items_allocated == rhs.items_allocated &&
232 lhs.items_freed == rhs.items_freed &&
233 lhs.items_constructed == rhs.items_constructed &&
234 lhs.items_destroyed == rhs.items_destroyed &&
235 lhs.allocations == rhs.allocations &&
236 lhs.frees == rhs.frees;
485 bool operator==( const AllocatorAwareData<Allocator>& lhs, const AllocatorAwareData<Allocator>& rhs…
486 return lhs.value() == rhs.value();
490 bool operator<( const AllocatorAwareData<Allocator>& lhs, const AllocatorAwareData<Allocator>& rhs …
491 return lhs.value() < rhs.value();
570 void swap( PropagatingAllocator<Allocator, POCMA, POCCA, POCS>& lhs,
574 if (lhs.propagated_on_swap)
575 *lhs.propagated_on_swap = true;