Searched refs:_value (Results 1 – 7 of 7) sorted by relevance
/arch/arm/kernel/ |
D | probes.h | 327 #define DECODE_HEADER(_type, _mask, _value, _regs) \ argument 330 {.bits = (_value)} 338 #define DECODE_TABLE(_mask, _value, _table) \ argument 339 DECODE_HEADER(DECODE_TYPE_TABLE, _mask, _value, 0), \ 348 #define DECODE_CUSTOM(_mask, _value, _decoder) \ argument 349 DECODE_HEADER(DECODE_TYPE_CUSTOM, _mask, _value, 0), \ 358 #define DECODE_SIMULATEX(_mask, _value, _handler, _regs) \ argument 359 DECODE_HEADER(DECODE_TYPE_SIMULATE, _mask, _value, _regs), \ 362 #define DECODE_SIMULATE(_mask, _value, _handler) \ argument 363 DECODE_SIMULATEX(_mask, _value, _handler, 0) [all …]
|
/arch/frv/mb93090-mb00/ |
D | pci-vdk.c | 99 u32 _value; in pci_frv_read_config() local 102 _value = __get_PciBridgeDataL(where & ~3); in pci_frv_read_config() 106 _value = __get_PciCfgDataL(where & ~3); in pci_frv_read_config() 111 _value = _value >> ((where & 3) * 8); in pci_frv_read_config() 115 _value = _value >> ((where & 2) * 8); in pci_frv_read_config() 125 *val = _value; in pci_frv_read_config()
|
/arch/mn10300/unit-asb2305/ |
D | pci.c | 83 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()
|
/arch/s390/kernel/ |
D | ipl.c | 185 #define DEFINE_IPL_ATTR_RO(_prefix, _name, _format, _value) \ argument 190 return sprintf(page, _format, _value); \ 195 #define DEFINE_IPL_ATTR_RW(_prefix, _name, _fmt_out, _fmt_in, _value) \ argument 201 (unsigned long long) _value); \ 210 _value = value; \ 218 #define DEFINE_IPL_ATTR_STR_RW(_prefix, _name, _fmt_out, _fmt_in, _value)\ argument 223 return sprintf(page, _fmt_out, _value); \ 229 strncpy(_value, buf, sizeof(_value) - 1); \ 230 strim(_value); \
|
D | cache.c | 220 #define DEFINE_CACHE_ATTR(_name, _format, _value) \ argument 228 return sprintf(buf, _format, _value); \
|
/arch/arm64/include/asm/ |
D | insn.h | 223 static __always_inline u32 aarch64_insn_get_##abbr##_value(void) \
|
/arch/frv/kernel/ |
D | gdb-stub.c | 407 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()
|