_NSIG_BPW 18 arch/x86/include/asm/signal.h #define _NSIG_WORDS (_NSIG / _NSIG_BPW) _NSIG_BPW 56 arch/x86/include/asm/signal.h set->sig[sig / _NSIG_BPW] |= 1 << (sig % _NSIG_BPW); _NSIG_BPW 73 arch/x86/include/asm/signal.h set->sig[sig / _NSIG_BPW] &= ~(1 << (sig % _NSIG_BPW)); _NSIG_BPW 79 arch/x86/include/asm/signal.h return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW)); _NSIG_BPW 46 include/linux/signal.h set->sig[sig / _NSIG_BPW] |= 1UL << (sig % _NSIG_BPW); _NSIG_BPW 55 include/linux/signal.h set->sig[sig / _NSIG_BPW] &= ~(1UL << (sig % _NSIG_BPW)); _NSIG_BPW 64 include/linux/signal.h return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW)); _NSIG_BPW 8 include/uapi/asm-generic/signal.h #define _NSIG_WORDS (_NSIG / _NSIG_BPW)