/openbmc/linux/arch/x86/include/asm/ |
H A D | signal.h | 14 # define _NSIG_BPW 32 macro 16 # define _NSIG_BPW 64 macro 19 #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()
|
/openbmc/linux/arch/m68k/include/asm/ |
H A D | signal.h | 11 #define _NSIG_BPW 32 macro 12 #define _NSIG_WORDS (_NSIG / _NSIG_BPW) 46 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW)); in __const_sigismember()
|
/openbmc/linux/arch/powerpc/include/uapi/asm/ |
H A D | signal.h | 9 #define _NSIG_BPW 64 macro 11 #define _NSIG_BPW 32 macro 13 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
/openbmc/linux/arch/ia64/include/asm/ |
H A D | signal.h | 16 #define _NSIG_BPW 64 macro 17 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
/openbmc/linux/arch/sparc/include/uapi/asm/ |
H A D | signal.h | 83 #define _NSIG_BPW 64 macro 85 #define _NSIG_BPW 32 macro 87 #define _NSIG_WORDS (__NEW_NSIG / _NSIG_BPW)
|
/openbmc/linux/arch/alpha/include/asm/ |
H A D | signal.h | 11 #define _NSIG_BPW 64 macro 12 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
/openbmc/linux/arch/arm/include/asm/ |
H A D | signal.h | 11 #define _NSIG_BPW 32 macro 12 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
/openbmc/linux/include/linux/ |
H A D | signal.h | 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()
|
/openbmc/linux/tools/testing/selftests/arm64/bti/ |
H A D | signal.c | 25 s->sig[(n - 1) / _NSIG_BPW] |= 1UL << (n - 1) % _NSIG_BPW; in sigaddset()
|
/openbmc/u-boot/include/asm-generic/ |
H A D | signal.h | 7 #define _NSIG_BPW BITS_PER_LONG macro 8 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
/openbmc/linux/arch/parisc/include/uapi/asm/ |
H A D | signal.h | 61 #define _NSIG_BPW (sizeof(unsigned long) * 8) macro 62 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
/openbmc/linux/include/uapi/asm-generic/ |
H A D | signal.h | 8 #define _NSIG_BPW __BITS_PER_LONG macro 9 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
/openbmc/linux/arch/xtensa/include/uapi/asm/ |
H A D | signal.h | 19 #define _NSIG_BPW 32 macro 20 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
/openbmc/linux/arch/mips/include/uapi/asm/ |
H A D | signal.h | 16 #define _NSIG_BPW (sizeof(unsigned long) * 8) macro 17 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
/openbmc/u-boot/arch/powerpc/include/asm/ |
H A D | signal.h | 13 #define _NSIG_BPW 32 macro 14 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
/openbmc/linux/arch/s390/include/asm/ |
H A D | signal.h | 16 #define _NSIG_BPW _SIGCONTEXT_NSIG_BPW macro
|
/openbmc/linux/kernel/ |
H A D | signal.c | 235 sig = ffz(~x) + i*_NSIG_BPW + 1; in next_signal() 244 sig = ffz(~x) + _NSIG_BPW + 1; in next_signal()
|