Home
last modified time | relevance | path

Searched refs:_value (Results 1 – 17 of 17) sorted by relevance

/linux-3.4.99/arch/arm/kernel/
Dkprobes.h348 #define DECODE_HEADER(_type, _mask, _value, _regs) \ argument
351 {.bits = (_value)}
359 #define DECODE_TABLE(_mask, _value, _table) \ argument
360 DECODE_HEADER(DECODE_TYPE_TABLE, _mask, _value, 0), \
369 #define DECODE_CUSTOM(_mask, _value, _decoder) \ argument
370 DECODE_HEADER(DECODE_TYPE_CUSTOM, _mask, _value, 0), \
379 #define DECODE_SIMULATEX(_mask, _value, _handler, _regs) \ argument
380 DECODE_HEADER(DECODE_TYPE_SIMULATE, _mask, _value, _regs), \
383 #define DECODE_SIMULATE(_mask, _value, _handler) \ argument
384 DECODE_SIMULATEX(_mask, _value, _handler, 0)
[all …]
/linux-3.4.99/security/apparmor/include/
Dapparmorfs.h44 #define AA_FS_FILE_BOOLEAN(_name, _value) \ argument
46 .v_type = AA_FS_TYPE_BOOLEAN, .v.boolean = (_value), \
48 #define AA_FS_FILE_STRING(_name, _value) \ argument
50 .v_type = AA_FS_TYPE_STRING, .v.string = (_value), \
52 #define AA_FS_FILE_U64(_name, _value) \ argument
54 .v_type = AA_FS_TYPE_U64, .v.u64 = (_value), \
59 #define AA_FS_DIR(_name, _value) \ argument
60 { .name = (_name), .v_type = AA_FS_TYPE_DIR, .v.files = (_value) }
/linux-3.4.99/arch/frv/mb93090-mb00/
Dpci-vdk.c101 u32 _value; in pci_frv_read_config() local
104 _value = __get_PciBridgeDataL(where & ~3); in pci_frv_read_config()
108 _value = __get_PciCfgDataL(where & ~3); in pci_frv_read_config()
113 _value = _value >> ((where & 3) * 8); in pci_frv_read_config()
117 _value = _value >> ((where & 2) * 8); in pci_frv_read_config()
127 *val = _value; in pci_frv_read_config()
/linux-3.4.99/drivers/net/wireless/rtlwifi/rtl8192cu/
Ddef.h58 #define CHIP_BONDING_IDENTIFIER(_value) (((_value) >> 22) & 0x3) argument
/linux-3.4.99/drivers/net/ethernet/sfc/
Dmcdi.h84 #define MCDI_SET_DWORD2(_buf, _ofst, _value) \ argument
86 EFX_DWORD_0, _value)
100 #define MCDI_SET_DWORD(_buf, _ofst, _value) \ argument
101 MCDI_SET_DWORD2(_buf, MC_CMD_ ## _ofst ## _OFST, _value)
/linux-3.4.99/include/linux/regulator/
Dab8500.h54 #define INIT_REGULATOR_REGISTER(_id, _value) \ argument
57 .value = _value, \
/linux-3.4.99/arch/mn10300/unit-asb2305/
Dpci.c83 int where, u32 *_value) in pci_ampci_read_config_byte() argument
98 *_value = value; in pci_ampci_read_config_byte()
103 int where, u32 *_value) in pci_ampci_read_config_word() argument
118 *_value = value; in pci_ampci_read_config_word()
123 int where, u32 *_value) in pci_ampci_read_config_dword() argument
138 *_value = value; in pci_ampci_read_config_dword()
/linux-3.4.99/drivers/video/vermilion/
Dvermilion.h256 #define VML_WRITE32(_par, _offset, _value) \ argument
257 iowrite32(_value, (_par)->vdc_mem + (_offset))
/linux-3.4.99/drivers/s390/scsi/
Dzfcp_sysfs.c18 #define ZFCP_DEFINE_ATTR(_feat_def, _feat, _name, _format, _value) \ argument
25 return sprintf(buf, _format, _value); \
30 #define ZFCP_DEFINE_A_ATTR(_name, _format, _value) \ argument
42 i = sprintf(buf, _format, _value); \
426 #define ZFCP_DEFINE_SCSI_ATTR(_name, _format, _value) \ argument
435 return sprintf(buf, _format, _value); \
/linux-3.4.99/drivers/net/wireless/rtlwifi/rtl8192de/
Ddef.h159 #define CHIP_BONDING_IDENTIFIER(_value) (((_value)>>22)&0x3) argument
/linux-3.4.99/arch/s390/kernel/
Dipl.c186 #define DEFINE_IPL_ATTR_RO(_prefix, _name, _format, _value) \ argument
191 return sprintf(page, _format, _value); \
196 #define DEFINE_IPL_ATTR_RW(_prefix, _name, _fmt_out, _fmt_in, _value) \ argument
202 (unsigned long long) _value); \
211 _value = value; \
219 #define DEFINE_IPL_ATTR_STR_RW(_prefix, _name, _fmt_out, _fmt_in, _value)\ argument
224 return sprintf(page, _fmt_out, _value); \
230 strncpy(_value, buf, sizeof(_value) - 1); \
231 strim(_value); \
/linux-3.4.99/drivers/net/ethernet/intel/ixgbe/
Dixgbe_82599.c1469 #define IXGBE_STORE_AS_BE32(_value) \ argument
1470 (((u32)(_value) >> 24) | (((u32)(_value) & 0x00FF0000) >> 8) | \
1471 (((u32)(_value) & 0x0000FF00) << 8) | ((u32)(_value) << 24))
1476 #define IXGBE_STORE_AS_BE16(_value) \ argument
1477 ntohs(((u16)(_value) >> 8) | ((u16)(_value) << 8))
/linux-3.4.99/drivers/input/misc/
Dpowermate.c249 … int powermate_input_event(struct input_dev *dev, unsigned int type, unsigned int code, int _value) in powermate_input_event() argument
251 unsigned int command = (unsigned int)_value; in powermate_input_event()
/linux-3.4.99/arch/frv/kernel/
Dgdb-stub.c407 static int hexToInt(char **ptr, unsigned long *_value) in hexToInt() argument
411 *_value = 0; in hexToInt()
417 *_value = (*_value << 4) | ((uint8_t) ch & 0xf); in hexToInt()
/linux-3.4.99/drivers/net/ethernet/intel/e1000/
De1000_hw.h287 #define E1000_BYTE_SWAP_WORD(_value) ((((_value) & 0x00ff) << 8) | \ argument
288 (((_value) & 0xff00) >> 8))
/linux-3.4.99/drivers/usb/atm/
Dcxacru.c225 #define CXACRU_ATTR_INIT(_value, _type, _name) \ argument
235 return cxacru_sysfs_showattr_##_type(instance->card_info[_value], buf); \
/linux-3.4.99/drivers/tty/serial/
Dcrisv10.c129 #define DEBUG_LOG(_line, _string, _value) do { \ argument
131 debug_log_func(_line, _string, _value); \