Searched refs:__thisword (Results 1 – 2 of 2) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _bitset.c | 90 _WordT __thisword = _M_w[__i]; in _M_do_find_first() local 91 if ( __thisword != __STATIC_CAST(_WordT,0) ) { in _M_do_find_first() 95 = __STATIC_CAST(unsigned char,(__thisword & (~(unsigned char)0))); in _M_do_find_first() 100 __thisword >>= CHAR_BIT; in _M_do_find_first() 121 _WordT __thisword = _M_w[__i]; in _M_do_find_next() local 124 __thisword &= (~__STATIC_CAST(_WordT,0)) << _S_whichbit(__prev); in _M_do_find_next() 126 if ( __thisword != __STATIC_CAST(_WordT,0) ) { in _M_do_find_next() 129 __thisword >>= _S_whichbyte(__prev) * CHAR_BIT; in _M_do_find_next() 132 = __STATIC_CAST(unsigned char,(__thisword & (~(unsigned char)0))); in _M_do_find_next() 137 __thisword >>= CHAR_BIT; in _M_do_find_next() [all …]
|
D | _bitset.h | 277 _WordT __thisword = _M_w; 279 if ( __thisword != __STATIC_CAST(_WordT,0) ) { 283 = __STATIC_CAST(unsigned char,(__thisword & (~(unsigned char)0))); 287 __thisword >>= CHAR_BIT; 305 _WordT __thisword = _M_w; 308 __thisword &= (~__STATIC_CAST(_WordT,0)) << _S_whichbit(__prev); 310 if ( __thisword != __STATIC_CAST(_WordT,0) ) { 313 __thisword >>= _S_whichbyte(__prev) * CHAR_BIT; 316 = __STATIC_CAST(unsigned char,(__thisword & (~(unsigned char)0))); 320 __thisword >>= CHAR_BIT;
|