/linux/arch/arm/probes/ |
A D | decode.h | 331 {.bits = (_value)} 339 #define DECODE_TABLE(_mask, _value, _table) \ argument 349 #define DECODE_CUSTOM(_mask, _value, _decoder) \ argument 363 #define DECODE_SIMULATE(_mask, _value, _handler) \ argument 364 DECODE_SIMULATEX(_mask, _value, _handler, 0) 376 #define DECODE_EMULATE(_mask, _value, _handler) \ argument 377 DECODE_EMULATEX(_mask, _value, _handler, 0) 384 #define DECODE_OR(_mask, _value) \ argument 385 DECODE_HEADER(DECODE_TYPE_OR, _mask, _value, 0) 397 #define DECODE_REJECT(_mask, _value) \ argument [all …]
|
/linux/security/apparmor/include/ |
A D | apparmorfs.h | 42 #define AA_SFS_FILE_BOOLEAN(_name, _value) \ argument 44 .v_type = AA_SFS_TYPE_BOOLEAN, .v.boolean = (_value), \ 46 #define AA_SFS_FILE_STRING(_name, _value) \ argument 48 .v_type = AA_SFS_TYPE_STRING, .v.string = (_value), \ 50 #define AA_SFS_FILE_U64(_name, _value) \ argument 52 .v_type = AA_SFS_TYPE_U64, .v.u64 = (_value), \ 57 #define AA_SFS_DIR(_name, _value) \ argument 58 { .name = (_name), .v_type = AA_SFS_TYPE_DIR, .v.files = (_value) }
|
/linux/fs/ |
A D | fsopen.c | 318 const void __user *, _value, in SYSCALL_DEFINE5() argument 335 if (!_key || _value || aux) in SYSCALL_DEFINE5() 339 if (!_key || !_value || aux) in SYSCALL_DEFINE5() 343 if (!_key || !_value || aux <= 0 || aux > 1024 * 1024) in SYSCALL_DEFINE5() 348 if (!_key || !_value || (aux != AT_FDCWD && aux < 0)) in SYSCALL_DEFINE5() 352 if (!_key || _value || aux < 0) in SYSCALL_DEFINE5() 357 if (_key || _value || aux) in SYSCALL_DEFINE5() 397 param.string = strndup_user(_value, 256); in SYSCALL_DEFINE5() 407 param.blob = memdup_user_nul(_value, aux); in SYSCALL_DEFINE5() 418 param.name = getname_flags(_value, lookup_flags, NULL); in SYSCALL_DEFINE5()
|
/linux/drivers/net/ethernet/sfc/ |
A D | mcdi.h | 215 #define MCDI_SET_DWORD(_buf, _field, _value) \ argument 216 EFX_POPULATE_DWORD_1(*_MCDI_DWORD(_buf, _field), EFX_DWORD_0, _value) 273 #define MCDI_SET_QWORD(_buf, _field, _value) \ argument 276 EFX_DWORD_0, (u32)(_value)); \ 278 EFX_DWORD_0, (u64)(_value) >> 32); \ 308 #define MCDI_SET_ARRAY_DWORD(_buf, _field, _index, _value) \ argument 310 EFX_DWORD_0, _value) 316 #define MCDI_SET_ARRAY_QWORD(_buf, _field, _index, _value) \ argument 319 EFX_DWORD_0, (u32)(_value)); \ 321 EFX_DWORD_0, (u64)(_value) >> 32); \
|
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/ |
A D | def.h | 20 #define CHIP_BONDING_IDENTIFIER(_value) (((_value) >> 22) & 0x3) argument
|
/linux/drivers/crypto/qat/qat_common/ |
A D | adf_gen4_hw_data.h | 47 dma_addr_t _value = value; \ 49 l_base = lower_32_bits(_value); \ 50 u_base = upper_32_bits(_value); \
|
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192ce/ |
A D | def.h | 21 #define CHIP_BONDING_IDENTIFIER(_value) (((_value) >> 22) & 0x3) argument
|
/linux/drivers/video/fbdev/vermilion/ |
A D | vermilion.h | 242 #define VML_WRITE32(_par, _offset, _value) \ argument 243 iowrite32(_value, (_par)->vdc_mem + (_offset))
|
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/ |
A D | def.h | 14 #define CHIP_BONDING_IDENTIFIER(_value) (((_value)>>22)&0x3) argument
|
/linux/drivers/s390/scsi/ |
A D | zfcp_sysfs.c | 20 #define ZFCP_DEFINE_ATTR(_feat_def, _feat, _name, _format, _value) \ argument 27 return sprintf(buf, _format, _value); \ 32 #define ZFCP_DEFINE_ATTR_CONST(_feat, _name, _format, _value) \ argument 37 return sprintf(buf, _format, _value); \ 42 #define ZFCP_DEFINE_A_ATTR(_name, _format, _value) \ argument 54 i = sprintf(buf, _format, _value); \ 605 #define ZFCP_DEFINE_SCSI_ATTR(_name, _format, _value) \ argument 613 return sprintf(buf, _format, _value); \
|
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/ |
A D | def.h | 16 #define CHIP_BONDING_IDENTIFIER(_value) (((_value)>>22)&0x3) argument
|
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192de/ |
A D | def.h | 60 #define CHIP_BONDING_IDENTIFIER(_value) (((_value)>>22)&0x3) argument
|
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/ |
A D | def.h | 110 #define CHIP_BONDING_IDENTIFIER(_value) (((_value)>>22)&0x3) argument
|
/linux/arch/s390/kernel/ |
A D | ipl.c | 224 #define DEFINE_IPL_ATTR_RO(_prefix, _name, _format, _value) \ argument 225 IPL_ATTR_SHOW_FN(_prefix, _name, _format, _value) \ 229 #define DEFINE_IPL_ATTR_RW(_prefix, _name, _fmt_out, _fmt_in, _value) \ argument 230 IPL_ATTR_SHOW_FN(_prefix, _name, _fmt_out, (unsigned long long) _value) \ 238 _value = value; \ 246 #define DEFINE_IPL_ATTR_STR_RW(_prefix, _name, _fmt_out, _fmt_in, _value)\ argument 247 IPL_ATTR_SHOW_FN(_prefix, _name, _fmt_out, _value) \ 252 strncpy(_value, buf, sizeof(_value) - 1); \ 253 strim(_value); \
|
/linux/sound/pci/hda/ |
A D | hda_local.h | 308 #define SND_HDA_PIN_QUIRK(_codec, _subvendor, _name, _value, _pins...) \ argument 312 .value = _value,\ 317 #define SND_HDA_PIN_QUIRK(_codec, _subvendor, _name, _value, _pins...) \ argument 320 .value = _value,\
|
/linux/Documentation/ABI/testing/ |
A D | sysfs-platform-dell-smbios | 17 - 0005_value
|
/linux/Documentation/filesystems/ext4/ |
A D | attributes.rst | 112 - e\_value\_offs 119 - e\_value\_inum 125 - e\_value\_size
|
/linux/drivers/net/ethernet/intel/ixgbe/ |
A D | ixgbe_82599.c | 1510 #define IXGBE_STORE_AS_BE32(_value) \ argument 1511 (((u32)(_value) >> 24) | (((u32)(_value) & 0x00FF0000) >> 8) | \ 1512 (((u32)(_value) & 0x0000FF00) << 8) | ((u32)(_value) << 24)) 1517 #define IXGBE_STORE_AS_BE16(_value) __swab16(ntohs((_value))) argument
|
/linux/drivers/net/ethernet/atheros/alx/ |
A D | hw.h | 459 #define ALX_SET_FIELD(_data, _field, _value) do { \ argument 461 (_data) |= ((_value) & _field ## _MASK) << _field ## _SHIFT;\
|
/linux/drivers/clk/bcm/ |
A D | clk-kona.h | 292 #define FIXED_DIVIDER(_value) \ argument 294 .u.fixed = (_value), \
|
/linux/include/linux/qed/ |
A D | qed_if.h | 1199 #define MASK_FIELD(_name, _value) \ argument 1200 ((_value) &= (_name ## _MASK)) 1202 #define FIELD_VALUE(_name, _value) \ argument 1203 ((_value & _name ## _MASK) << _name ## _SHIFT)
|
/linux/drivers/input/misc/ |
A D | powermate.c | 253 … int powermate_input_event(struct input_dev *dev, unsigned int type, unsigned int code, int _value) in powermate_input_event() argument 255 unsigned int command = (unsigned int)_value; in powermate_input_event()
|
/linux/drivers/phy/tegra/ |
A D | xusb-tegra210.c | 286 #define UTMIP_WAKE_VAL(_port, _value) (((_value) & 0xf) << \ argument 326 #define SPEED(_port, _value) (((_value) & 0x3) << \ argument 381 #define UHSIC_WAKE_VAL(_value) (((_value) & 0xf) << 28) argument 392 #define UHSIC_MODE(_value) (((_value) & 0x1) << 24) argument 1332 #define padctl_pmc_writel(_priv, _value, _offset) \ argument 1333 WARN(regmap_write(_priv->regmap, _offset, _value), "write %s failed\n", #_offset)
|
/linux/drivers/net/wireless/mediatek/mt76/mt76x2/ |
A D | eeprom.c | 12 #define EE_FIELD(_name, _value) [MT_EE_##_name] = (_value) | 1 argument
|
/linux/drivers/mailbox/ |
A D | arm_mhuv2.c | 249 #define writel_relaxed_bitfield(_value, _regptr, _type, _field) \ argument 253 (*(_type *)(&_regval))._field = _value; \
|