Searched refs:_BitPos (Results 1 – 2 of 2) sorted by relevance
525 _bittest(long const *_BitBase, long _BitPos) { in _bittest() argument526 return (*_BitBase >> _BitPos) & 1; in _bittest()529 _bittestandcomplement(long *_BitBase, long _BitPos) { in _bittestandcomplement() argument530 unsigned char _Res = (*_BitBase >> _BitPos) & 1; in _bittestandcomplement()531 *_BitBase = *_BitBase ^ (1 << _BitPos); in _bittestandcomplement()535 _bittestandreset(long *_BitBase, long _BitPos) { in _bittestandreset() argument536 unsigned char _Res = (*_BitBase >> _BitPos) & 1; in _bittestandreset()537 *_BitBase = *_BitBase & ~(1 << _BitPos); in _bittestandreset()541 _bittestandset(long *_BitBase, long _BitPos) { in _bittestandset() argument542 unsigned char _Res = (*_BitBase >> _BitPos) & 1; in _bittestandset()[all …]
334 long _BitPos);336 long _BitPos);338 long _BitPos);340 long _BitPos);342 long _BitPos);344 long _BitPos);