Searched refs:_WordT (Results 1 - 2 of 2) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_bitset.c52 fill(_M_w + 0, _M_w + __wshift, __STATIC_CAST(_WordT,0));
75 fill(_M_w + __limit + 1, _M_w + _Nw, __STATIC_CAST(_WordT,0));
90 _WordT __thisword = _M_w[__i];
91 if ( __thisword != __STATIC_CAST(_WordT,0) ) {
93 for ( size_t __j = 0; __j < sizeof(_WordT); __j++ ) {
121 _WordT __thisword = _M_w[__i];
124 __thisword &= (~__STATIC_CAST(_WordT,0)) << _S_whichbit(__prev);
126 if ( __thisword != __STATIC_CAST(_WordT,0) ) {
130 for ( size_t __j = _S_whichbyte(__prev); __j < sizeof(_WordT); ++__j ) {
144 /* _WordT */ __thiswor
[all...]
H A D_bitset.h108 typedef unsigned long _WordT; typedef in struct:_Base_bitset
110 _WordT _M_w[_Nw]; // 0 is the least significant word.
128 static _WordT _STLP_CALL _S_maskbit( size_t __pos ) {
129 return __STATIC_CAST(_WordT,1) << _S_whichbit(__pos);
132 _WordT& _M_getword(size_t __pos) { return _M_w[_S_whichword(__pos)]; }
133 _WordT _M_getword(size_t __pos) const { return _M_w[_S_whichword(__pos)]; }
135 _WordT& _M_hiword() { return _M_w[_Nw - 1]; }
136 _WordT _M_hiword() const { return _M_w[_Nw - 1]; }
168 _M_w[__i] = ~__STATIC_CAST(_WordT,0);
172 void _M_do_reset() { memset(_M_w, 0, _Nw * sizeof(_WordT)); }
211 typedef unsigned long _WordT; typedef in struct:_Base_bitset
358 typedef unsigned long _WordT; typedef in class:bitset
[all...]

Completed in 3 milliseconds