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

/bionic/libc/bionic/
H A Dsigaddset.cpp33 unsigned long* local_set = (unsigned long*) set; local
38 local_set[bit / LONG_BIT] |= 1UL << (bit % LONG_BIT);
H A Dsigdelset.cpp33 unsigned long* local_set = (unsigned long*) set; local
38 local_set[bit / LONG_BIT] &= ~(1UL << (bit % LONG_BIT));
H A Dsigismember.cpp33 const unsigned long* local_set = (const unsigned long*) set; local
38 return (int) ((local_set[bit / LONG_BIT] >> (bit % LONG_BIT)) & 1);

Completed in 33 milliseconds