Searched defs:_Base_bitset (Results 1 - 1 of 1) sorted by relevance

/external/stlport/stlport/stl/
H A D_bitset.h28 // base class _Base_bitset. The base class works with whole words, not with
29 // individual bits. This allows us to specialize _Base_bitset for the
107 struct _Base_bitset { struct
112 _Base_bitset() { _M_do_reset(); } function in struct:_Base_bitset
114 _Base_bitset(unsigned long __val) { function in struct:_Base_bitset
138 void _M_do_and(const _Base_bitset<_Nw>& __x) {
144 void _M_do_or(const _Base_bitset<_Nw>& __x) {
150 void _M_do_xor(const _Base_bitset<_Nw>& __x) {
174 bool _M_is_equal(const _Base_bitset<_Nw>& __x) const {
210 struct _Base_bitset< struct
216 _Base_bitset( void ) : _M_w(0) {} function in struct:_Base_bitset
217 _Base_bitset(unsigned long __val) : _M_w(__val) {} function in struct:_Base_bitset
[all...]

Completed in 75 milliseconds