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

/bionic/libc/bionic/
H A Dsigaddset.cpp34 unsigned long* local_set = reinterpret_cast<unsigned long*>(set); local
39 local_set[bit / LONG_BIT] |= 1UL << (bit % LONG_BIT);
H A Dsigdelset.cpp34 unsigned long* local_set = reinterpret_cast<unsigned long*>(set); local
39 local_set[bit / LONG_BIT] &= ~(1UL << (bit % LONG_BIT));
H A Dsigismember.cpp34 const unsigned long* local_set = reinterpret_cast<const unsigned long*>(set); local
39 return static_cast<int>((local_set[bit / LONG_BIT] >> (bit % LONG_BIT)) & 1);
/bionic/libc/include/android/
H A Dlegacy_signal_inlines.h42 const unsigned long *local_set = (const unsigned long *)set; local
47 return (int)((local_set[bit / LONG_BIT] >> (bit % LONG_BIT)) & 1);
53 unsigned long *local_set = (unsigned long *)set; local
58 local_set[bit / LONG_BIT] |= 1UL << (bit % LONG_BIT);
65 unsigned long *local_set = (unsigned long *)set; local
70 local_set[bit / LONG_BIT] &= ~(1UL << (bit % LONG_BIT));

Completed in 79 milliseconds