Home | History | Annotate | Download | only in impl

Lines Matching refs:__o

51     __container_size_info(const __container_size_info& __o)
52 : __object_info_base(__o), _M_init(__o._M_init), _M_max(__o._M_max),
53 _M_min(__o._M_min), _M_total(__o._M_total),
54 _M_item_min(__o._M_item_min), _M_item_max(__o._M_item_max),
55 _M_item_total(__o._M_item_total), _M_count(__o._M_count),
56 _M_resize(__o._M_resize), _M_cost(__o._M_cost)
90 __merge(const __container_size_info& __o)
92 _M_init = std::max(_M_init, __o._M_init);
93 _M_max = std::max(_M_max, __o._M_max);
94 _M_item_max = std::max(_M_item_max, __o._M_item_max);
95 _M_min = std::min(_M_min, __o._M_min);
96 _M_item_min = std::min(_M_item_min, __o._M_item_min);
97 _M_total += __o._M_total;
98 _M_item_total += __o._M_item_total;
99 _M_count += __o._M_count;
100 _M_cost += __o._M_cost;
101 _M_resize += __o._M_resize;
158 __container_size_stack_info(const __container_size_info& __o)
159 : __container_size_info(__o) { }