Searched refs:_NSIG_BPW (Results 1 – 15 of 15) sorted by relevance
14 # define _NSIG_BPW 32 macro16 # define _NSIG_BPW 64 macro19 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)57 set->sig[sig / _NSIG_BPW] |= 1 << (sig % _NSIG_BPW); in __const_sigaddset()74 set->sig[sig / _NSIG_BPW] &= ~(1 << (sig % _NSIG_BPW)); in __const_sigdelset()80 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW)); in __const_sigismember()
11 #define _NSIG_BPW 32 macro12 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)46 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW)); in __const_sigismember()
9 #define _NSIG_BPW 64 macro11 #define _NSIG_BPW 32 macro13 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
16 #define _NSIG_BPW 64 macro17 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
9 #define _NSIG_BPW BITS_PER_LONG macro10 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
11 #define _NSIG_BPW 32 macro12 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
11 #define _NSIG_BPW 64 macro12 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
83 #define _NSIG_BPW 64 macro85 #define _NSIG_BPW 32 macro87 #define _NSIG_WORDS (__NEW_NSIG / _NSIG_BPW)
25 s->sig[(n - 1) / _NSIG_BPW] |= 1UL << (n - 1) % _NSIG_BPW; in sigaddset()
70 set->sig[sig / _NSIG_BPW] |= 1UL << (sig % _NSIG_BPW); in sigaddset()79 set->sig[sig / _NSIG_BPW] &= ~(1UL << (sig % _NSIG_BPW)); in sigdelset()88 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW)); in sigismember()
8 #define _NSIG_BPW __BITS_PER_LONG macro9 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
19 #define _NSIG_BPW 32 macro20 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
16 #define _NSIG_BPW (sizeof(unsigned long) * 8) macro17 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
16 #define _NSIG_BPW _SIGCONTEXT_NSIG_BPW macro
233 sig = ffz(~x) + i*_NSIG_BPW + 1; in next_signal()242 sig = ffz(~x) + _NSIG_BPW + 1; in next_signal()
Completed in 25 milliseconds