/linux/tools/lib/ |
A D | ctype.c | 13 _C,_C|_S,_C|_S,_C|_S,_C|_S,_C|_S,_C,_C, /* 8-15 */ 16 _S|_SP,_P,_P,_P,_P,_P,_P,_P, /* 32-39 */ 30 _S|_SP,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P, /* 160-175 */
|
/linux/lib/ |
A D | ctype.c | 14 _C,_C|_S,_C|_S,_C|_S,_C|_S,_C|_S,_C,_C, /* 8-15 */ 17 _S|_SP,_P,_P,_P,_P,_P,_P,_P, /* 32-39 */ 31 _S|_SP,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P, /* 160-175 */
|
A D | ts_fsm.c | 50 [TS_FSM_SPACE] = _S, 63 _W|_A|_C, _W|_A|_C|_S, _W|_A|_C|_S, _W|_A|_C|_S, /* 8- 11 */ 64 _W|_A|_C|_S, _W|_A|_C|_S, _W|_A|_C, _W|_A|_C, /* 12- 15 */ 69 _W|_A|_S|_SP, _W|_A|_P, _W|_A|_P, _W|_A|_P, /* 32- 35 */ 101 _W|_S|_SP, _W|_P, _W|_P, _W|_P, /* 160-163 */
|
/linux/include/linux/ |
A D | ctype.h | 17 #define _S 0x20 /* white space (space/lf/tab) */ macro 33 #define isspace(c) ((__ismask(c)&(_S)) != 0)
|
A D | ieee80211.h | 129 #define SM64(f, v) ((((u64)v) << f##_S) & f)
|
/linux/tools/include/linux/ |
A D | ctype.h | 17 #define _S 0x20 /* white space (space/lf/tab) */ macro 33 #define isspace(c) ((__ismask(c)&(_S)) != 0)
|
/linux/drivers/media/tuners/ |
A D | mc44s803_priv.h | 180 (((_val) << _reg##_S) & (_reg)) 184 (((_val) & (_reg)) >> _reg##_S)
|
/linux/drivers/net/wireless/ath/ath6kl/ |
A D | target.h | 133 #define SM(f, v) (((v) << f##_S) & f) 134 #define MS(f, v) (((v) & f) >> f##_S)
|
/linux/drivers/net/wireless/ath/carl9170/ |
A D | hw.h | 873 (value = ((value) & ~reg) | (((newvalue) << reg##_S) & reg)) 876 (((newvalue) << reg##_S) & reg) 879 (((value) & ~reg) | (((newvalue) << reg##_S) & reg)) 882 (((value) & reg) >> reg##_S)
|
/linux/arch/mips/ath25/ |
A D | devices.h | 7 #define ATH25_REG_MS(_val, _field) (((_val) & _field##_M) >> _field##_S)
|
/linux/drivers/net/wireless/broadcom/brcm80211/brcmsmac/ |
A D | main.h | 60 (((val) >> field ## _S) & field ## _M) 62 (((val) & (~(field ## _M << field ## _S))) | \ 63 ((unsigned)(bits) << field ## _S))
|
/linux/arch/mips/include/asm/ |
A D | kvm_host.h | 29 #define MIPS_CP0_32(_R, _S) \ argument 30 (KVM_REG_MIPS_CP0 | KVM_REG_SIZE_U32 | (8 * (_R) + (_S))) 32 #define MIPS_CP0_64(_R, _S) \ argument 33 (KVM_REG_MIPS_CP0 | KVM_REG_SIZE_U64 | (8 * (_R) + (_S)))
|
/linux/drivers/infiniband/hw/irdma/ |
A D | defs.h | 359 (((u64)(val) << (dev)->hw_shifts[field ## _S]) & (dev)->hw_masks[field ## _M]) 361 ((u64)((val) & (dev)->hw_masks[field ## _M]) >> (dev)->hw_shifts[field ## _S]) 363 (((val) << (dev)->hw_shifts[field ## _S]) & (dev)->hw_masks[field ## _M]) 365 ((u64)((val) & (dev)->hw_masks[field ## _M]) >> (dev)->hw_shifts[field ## _S])
|
/linux/drivers/net/wireless/ath/ath9k/ |
A D | hw.h | 121 #define SM(_v, _f) (((_v) << _f##_S) & _f) 122 #define MS(_v, _f) (((_v) & _f) >> _f##_S) 124 REG_RMW(_a, _r, (((_v) << _f##_S) & _f), (_f)) 126 (((REG_READ(_a, _r) & _f) >> _f##_S))
|
/linux/drivers/net/wireless/ath/ath5k/ |
A D | ath5k.h | 113 (((_val) << _flags##_S) & (_flags)) 117 (((_val) & (_flags)) >> _flags##_S) 126 (((_val) << _flags##_S) & (_flags)), _reg)
|
/linux/net/smc/ |
A D | smc_pnet.c | 78 if (pnetid[0] == 0 || pnetid[0] == _S) in smc_pnet_is_pnetid_set() 89 if ((pnetid1[i] == 0 || pnetid1[i] == _S) && in smc_pnet_match() 90 (pnetid2[i] == 0 || pnetid2[i] == _S)) in smc_pnet_match()
|
A D | smc_clc.c | 1160 memset(smc_hostname, _S, sizeof(smc_hostname)); /* ASCII blanks */ in smc_clc_init()
|
/linux/Documentation/devicetree/bindings/media/i2c/ |
A D | tda1997x.txt | 25 the pin group needs to be bit-swapped you can use the *_S pin-group defines.
|
/linux/drivers/net/ethernet/intel/ice/ |
A D | ice.h | 126 (((val) << ICE_AQ_VSI_UP_TABLE_UP##i##_S) & \
|