Home
last modified time | relevance | path

Searched refs:_BitPos (Results 1 – 2 of 2) sorted by relevance

/external/clang/lib/Headers/
Dintrin.h525 _bittest(long const *_BitBase, long _BitPos) { in _bittest() argument
526 return (*_BitBase >> _BitPos) & 1; in _bittest()
529 _bittestandcomplement(long *_BitBase, long _BitPos) { in _bittestandcomplement() argument
530 unsigned char _Res = (*_BitBase >> _BitPos) & 1; in _bittestandcomplement()
531 *_BitBase = *_BitBase ^ (1 << _BitPos); in _bittestandcomplement()
535 _bittestandreset(long *_BitBase, long _BitPos) { in _bittestandreset() argument
536 unsigned char _Res = (*_BitBase >> _BitPos) & 1; in _bittestandreset()
537 *_BitBase = *_BitBase & ~(1 << _BitPos); in _bittestandreset()
541 _bittestandset(long *_BitBase, long _BitPos) { in _bittestandset() argument
542 unsigned char _Res = (*_BitBase >> _BitPos) & 1; in _bittestandset()
[all …]
/external/llvm-project/clang/lib/Headers/
Dintrin.h334 long _BitPos);
336 long _BitPos);
338 long _BitPos);
340 long _BitPos);
342 long _BitPos);
344 long _BitPos);