Searched refs:local_set (Results 1 – 1 of 1) sorted by relevance
62 unsigned long* local_set = reinterpret_cast<unsigned long*>(set); in SigAddSet() local67 local_set[bit / LONG_BIT] |= 1UL << (bit % LONG_BIT); in SigAddSet()91 unsigned long* local_set = reinterpret_cast<unsigned long*>(set); in SigDelSet() local96 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() local174 return static_cast<int>((local_set[bit / LONG_BIT] >> (bit % LONG_BIT)) & 1); in SigIsMember()