| /OK3568_Linux_fs/kernel/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) 61 set->sig[sig / _NSIG_BPW] |= 1 << (sig % _NSIG_BPW); in __const_sigaddset() 78 set->sig[sig / _NSIG_BPW] &= ~(1 << (sig % _NSIG_BPW)); in __const_sigdelset() 84 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW)); in __const_sigismember()
|
| /OK3568_Linux_fs/kernel/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()
|
| /OK3568_Linux_fs/kernel/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)
|
| /OK3568_Linux_fs/kernel/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)
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | signal.h | 68 set->sig[sig / _NSIG_BPW] |= 1UL << (sig % _NSIG_BPW); in sigaddset() 77 set->sig[sig / _NSIG_BPW] &= ~(1UL << (sig % _NSIG_BPW)); in sigdelset() 86 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW)); in sigismember()
|
| /OK3568_Linux_fs/kernel/arch/ia64/include/asm/ |
| H A D | signal.h | 16 #define _NSIG_BPW 64 macro 17 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
| /OK3568_Linux_fs/kernel/arch/h8300/include/asm/ |
| H A D | signal.h | 11 #define _NSIG_BPW 32 macro 12 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
| /OK3568_Linux_fs/kernel/arch/parisc/include/asm/ |
| H A D | signal.h | 9 #define _NSIG_BPW BITS_PER_LONG macro 10 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
| /OK3568_Linux_fs/kernel/arch/arm/include/asm/ |
| H A D | signal.h | 11 #define _NSIG_BPW 32 macro 12 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
| /OK3568_Linux_fs/kernel/arch/alpha/include/asm/ |
| H A D | signal.h | 11 #define _NSIG_BPW 64 macro 12 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
| /OK3568_Linux_fs/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)
|
| /OK3568_Linux_fs/kernel/include/uapi/asm-generic/ |
| H A D | signal.h | 8 #define _NSIG_BPW __BITS_PER_LONG macro 9 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
| /OK3568_Linux_fs/kernel/arch/xtensa/include/uapi/asm/ |
| H A D | signal.h | 19 #define _NSIG_BPW 32 macro 20 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
| /OK3568_Linux_fs/kernel/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)
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/asm-generic/ |
| H A D | signal.h | 8 #define _NSIG_BPW __BITS_PER_LONG macro 9 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/asm-generic/ |
| H A D | signal.h | 8 #define _NSIG_BPW __BITS_PER_LONG macro 9 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
| /OK3568_Linux_fs/u-boot/arch/powerpc/include/asm/ |
| H A D | signal.h | 13 #define _NSIG_BPW 32 macro 14 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
|
| /OK3568_Linux_fs/kernel/arch/s390/include/asm/ |
| H A D | signal.h | 16 #define _NSIG_BPW _SIGCONTEXT_NSIG_BPW macro
|
| /OK3568_Linux_fs/kernel/kernel/ |
| H A D | signal.c | 237 sig = ffz(~x) + i*_NSIG_BPW + 1; in next_signal() 246 sig = ffz(~x) + _NSIG_BPW + 1; in next_signal()
|