Searched refs:local_set (Results 1 – 2 of 2) sorted by relevance
65 const unsigned long *local_set = (const unsigned long *)set; in sigismember() local70 return (int)((local_set[bit / LONG_BIT] >> (bit % LONG_BIT)) & 1); in sigismember()76 unsigned long *local_set = (unsigned long *)set; in sigaddset() local81 local_set[bit / LONG_BIT] |= 1UL << (bit % LONG_BIT); in sigaddset()88 unsigned long *local_set = (unsigned long *)set; in sigdelset() local93 local_set[bit / LONG_BIT] &= ~(1UL << (bit % LONG_BIT)); in sigdelset()
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()