Searched refs:local_set (Results 1 – 2 of 2) sorted by relevance
66 const unsigned long *local_set = (const unsigned long *)set; in sigismember() local71 return (int)((local_set[bit / LONG_BIT] >> (bit % LONG_BIT)) & 1); in sigismember()77 unsigned long *local_set = (unsigned long *)set; in sigaddset() local82 local_set[bit / LONG_BIT] |= 1UL << (bit % LONG_BIT); in sigaddset()89 unsigned long *local_set = (unsigned long *)set; in sigdelset() local94 local_set[bit / LONG_BIT] &= ~(1UL << (bit % LONG_BIT)); in sigdelset()
61 unsigned long* local_set = reinterpret_cast<unsigned long*>(set); in SigAddSet() local66 local_set[bit / LONG_BIT] |= 1UL << (bit % LONG_BIT); in SigAddSet()90 unsigned long* local_set = reinterpret_cast<unsigned long*>(set); in SigDelSet() local95 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() local173 return static_cast<int>((local_set[bit / LONG_BIT] >> (bit % LONG_BIT)) & 1); in SigIsMember()