Home
last modified time | relevance | path

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

/bionic/libc/include/android/
Dlegacy_signal_inlines.h66 const unsigned long *local_set = (const unsigned long *)set; in sigismember() local
71 return (int)((local_set[bit / LONG_BIT] >> (bit % LONG_BIT)) & 1); in sigismember()
77 unsigned long *local_set = (unsigned long *)set; in sigaddset() local
82 local_set[bit / LONG_BIT] |= 1UL << (bit % LONG_BIT); in sigaddset()
89 unsigned long *local_set = (unsigned long *)set; in sigdelset() local
94 local_set[bit / LONG_BIT] &= ~(1UL << (bit % LONG_BIT)); in sigdelset()
/bionic/libc/bionic/
Dsignal.cpp61 unsigned long* local_set = reinterpret_cast<unsigned long*>(set); in SigAddSet() local
66 local_set[bit / LONG_BIT] |= 1UL << (bit % LONG_BIT); in SigAddSet()
90 unsigned long* local_set = reinterpret_cast<unsigned long*>(set); in SigDelSet() local
95 local_set[bit / LONG_BIT] &= ~(1UL << (bit % LONG_BIT)); in SigDelSet()
168 const unsigned long* local_set = reinterpret_cast<const unsigned long*>(set); in SigIsMember() local
173 return static_cast<int>((local_set[bit / LONG_BIT] >> (bit % LONG_BIT)) & 1); in SigIsMember()