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.h65 const unsigned long *local_set = (const unsigned long *)set; in sigismember() local
70 return (int)((local_set[bit / LONG_BIT] >> (bit % LONG_BIT)) & 1); in sigismember()
76 unsigned long *local_set = (unsigned long *)set; in sigaddset() local
81 local_set[bit / LONG_BIT] |= 1UL << (bit % LONG_BIT); in sigaddset()
88 unsigned long *local_set = (unsigned long *)set; in sigdelset() local
93 local_set[bit / LONG_BIT] &= ~(1UL << (bit % LONG_BIT)); in sigdelset()
/bionic/libc/bionic/
Dsignal.cpp62 unsigned long* local_set = reinterpret_cast<unsigned long*>(set); in SigAddSet() local
67 local_set[bit / LONG_BIT] |= 1UL << (bit % LONG_BIT); in SigAddSet()
91 unsigned long* local_set = reinterpret_cast<unsigned long*>(set); in SigDelSet() local
96 local_set[bit / LONG_BIT] &= ~(1UL << (bit % LONG_BIT)); in SigDelSet()
169 const unsigned long* local_set = reinterpret_cast<const unsigned long*>(set); in SigIsMember() local
174 return static_cast<int>((local_set[bit / LONG_BIT] >> (bit % LONG_BIT)) & 1); in SigIsMember()