/linux-6.12.1/drivers/net/ethernet/mellanox/mlxsw/ |
D | item.h | 262 #define __ITEM_NAME(_type, _cname, _iname) \ argument 263 mlxsw_##_type##_##_cname##_##_iname##_item 270 #define MLXSW_ITEM8(_type, _cname, _iname, _offset, _shift, _sizebits) \ argument 271 static struct mlxsw_item __ITEM_NAME(_type, _cname, _iname) = { \ 275 .name = #_type "_" #_cname "_" #_iname, \ 278 mlxsw_##_type##_##_cname##_##_iname##_get(const char *buf) \ 280 return __mlxsw_item_get8(buf, &__ITEM_NAME(_type, _cname, _iname), 0); \ 283 mlxsw_##_type##_##_cname##_##_iname##_set(char *buf, u8 val) \ 285 __mlxsw_item_set8(buf, &__ITEM_NAME(_type, _cname, _iname), 0, val); \ 288 #define MLXSW_ITEM8_INDEXED(_type, _cname, _iname, _offset, _shift, _sizebits, \ argument [all …]
|
/linux-6.12.1/kernel/trace/ |
D | trace_export.c | 89 #define __field_ext(_type, _item, _filter_type) { \ argument 90 .type = #_type, .name = #_item, \ 91 .size = sizeof(_type), .align = __alignof__(_type), \ 92 is_signed_type(_type), .filter_type = _filter_type }, 96 #define __field_ext_packed(_type, _item, _filter_type) { \ argument 97 .type = #_type, .name = #_item, \ 98 .size = sizeof(_type), .align = 1, \ 99 is_signed_type(_type), .filter_type = _filter_type }, 102 #define __field(_type, _item) __field_ext(_type, _item, FILTER_OTHER) argument 105 #define __field_fn(_type, _item) __field_ext(_type, _item, FILTER_TRACE_FN) argument [all …]
|
/linux-6.12.1/include/trace/stages/ |
D | stage4_event_fields.h | 8 #define __field_ext(_type, _item, _filter_type) { \ argument 9 .type = #_type, .name = #_item, \ 10 .size = sizeof(_type), .align = ALIGN_STRUCTFIELD(_type), \ 11 .is_signed = is_signed_type(_type), .filter_type = _filter_type }, 14 #define __field_struct_ext(_type, _item, _filter_type) { \ argument 15 .type = #_type, .name = #_item, \ 16 .size = sizeof(_type), .align = ALIGN_STRUCTFIELD(_type), \ 26 #define __array(_type, _item, _len) { \ argument 27 .type = #_type"["__stringify(_len)"]", .name = #_item, \ 28 .size = sizeof(_type[_len]), .align = ALIGN_STRUCTFIELD(_type), \ [all …]
|
/linux-6.12.1/include/linux/ |
D | cleanup.h | 197 #define DEFINE_FREE(_name, _type, _free) \ argument 198 static inline void __free_##_name(void *p) { _type _T = *(_type *)p; _free; } 243 #define DEFINE_CLASS(_name, _type, _exit, _init, _init_args...) \ argument 244 typedef _type class_##_name##_t; \ 245 static inline void class_##_name##_destructor(_type *p) \ 246 { _type _T = *p; _exit; } \ 247 static inline _type class_##_name##_constructor(_init_args) \ 248 { _type t = _init; return t; } 290 #define DEFINE_GUARD(_name, _type, _lock, _unlock) \ argument 291 DEFINE_CLASS(_name, _type, if (_T) { _unlock; }, ({ _lock; _T; }), _type _T); \ [all …]
|
/linux-6.12.1/include/rdma/ |
D | uverbs_std_types.h | 24 #define uobj_get_read(_type, _id, _attrs) \ argument 25 rdma_lookup_get_uobject(uobj_get_type(_attrs, _type), (_attrs)->ufile, \ 29 #define ufd_get_read(_type, _fdnum, _attrs) \ argument 30 rdma_lookup_get_uobject(uobj_get_type(_attrs, _type), (_attrs)->ufile, \ 40 #define uobj_get_obj_read(_object, _type, _id, _attrs) \ argument 42 uobj_get_read(_type, _id, _attrs))) 44 #define uobj_get_write(_type, _id, _attrs) \ argument 45 rdma_lookup_get_uobject(uobj_get_type(_attrs, _type), (_attrs)->ufile, \ 51 #define uobj_perform_destroy(_type, _id, _attrs) \ argument 52 __uobj_perform_destroy(uobj_get_type(_attrs, _type), \ [all …]
|
/linux-6.12.1/drivers/gpu/drm/vmwgfx/ |
D | vmwgfx_blit.c | 38 #define VMW_FIND_FIRST_DIFF(_type) \ argument 39 static size_t vmw_find_first_diff_ ## _type \ 40 (const _type * dst, const _type * src, size_t size)\ 44 for (i = 0; i < size; i += sizeof(_type)) { \ 59 #define VMW_FIND_LAST_DIFF(_type) \ argument 60 static ssize_t vmw_find_last_diff_ ## _type( \ 61 const _type * dst, const _type * src, size_t size) \ 67 size -= sizeof(_type); \ 95 #define SPILL(_var, _type) ((unsigned long) _var & (sizeof(_type) - 1)) argument 105 #define VMW_TRY_FIND_FIRST_DIFF(_type) \ argument [all …]
|
/linux-6.12.1/include/drm/ |
D | drm_kunit_helpers.h | 48 #define drm_kunit_helper_alloc_drm_device_with_driver(_test, _dev, _type, _member, _drv) \ argument 49 ((_type *)__drm_kunit_helper_alloc_drm_device_with_driver(_test, _dev, \ 50 sizeof(_type), \ 51 offsetof(_type, _member), \ 93 #define drm_kunit_helper_alloc_drm_device(_test, _dev, _type, _member, _feat) \ argument 94 ((_type *)__drm_kunit_helper_alloc_drm_device(_test, _dev, \ 95 sizeof(_type), \ 96 offsetof(_type, _member), \
|
/linux-6.12.1/tools/perf/ui/ |
D | hist.c | 359 #define __HPP_COLOR_PERCENT_FN(_type, _field) \ argument 365 static int hpp__color_##_type(struct perf_hpp_fmt *fmt, \ 372 #define __HPP_ENTRY_PERCENT_FN(_type, _field) \ argument 373 static int hpp__entry_##_type(struct perf_hpp_fmt *fmt, \ 380 #define __HPP_SORT_FN(_type, _field) \ argument 381 static int64_t hpp__sort_##_type(struct perf_hpp_fmt *fmt __maybe_unused, \ 387 #define __HPP_COLOR_ACC_PERCENT_FN(_type, _field) \ argument 393 static int hpp__color_##_type(struct perf_hpp_fmt *fmt, \ 400 #define __HPP_ENTRY_ACC_PERCENT_FN(_type, _field) \ argument 401 static int hpp__entry_##_type(struct perf_hpp_fmt *fmt, \ [all …]
|
/linux-6.12.1/fs/bcachefs/ |
D | btree_update.h | 242 #define bch2_bkey_make_mut_noupdate_typed(_trans, _k, _type) \ argument 243 bkey_i_to_##_type(__bch2_bkey_make_mut_noupdate(_trans, _k, \ 244 KEY_TYPE_##_type, sizeof(struct bkey_i_##_type))) 270 #define bch2_bkey_make_mut_typed(_trans, _iter, _k, _flags, _type) \ argument 271 bkey_i_to_##_type(__bch2_bkey_make_mut(_trans, _iter, _k, _flags,\ 272 KEY_TYPE_##_type, sizeof(struct bkey_i_##_type))) 334 #define bch2_bkey_get_mut_typed(_trans, _iter, _btree_id, _pos, _flags, _type)\ argument 335 bkey_i_to_##_type(__bch2_bkey_get_mut(_trans, _iter, \ 337 KEY_TYPE_##_type, sizeof(struct bkey_i_##_type))) 359 #define bch2_bkey_alloc(_trans, _iter, _flags, _type) \ argument [all …]
|
D | vstructs.h | 19 #define __vstruct_bytes(_type, _u64s) \ argument 21 BUILD_BUG_ON(offsetof(_type, _data) % sizeof(u64)); \ 23 (size_t) (offsetof(_type, _data) + (_u64s) * sizeof(u64)); \ 29 #define __vstruct_blocks(_type, _sector_block_bits, _u64s) \ argument 30 (round_up(__vstruct_bytes(_type, _u64s), \
|
D | darray.h | 13 #define DARRAY_PREALLOCATED(_type, _nr) \ argument 16 _type *data; \ 17 _type preallocated[_nr]; \ 20 #define DARRAY(_type) DARRAY_PREALLOCATED(_type, 0) argument
|
/linux-6.12.1/arch/mips/include/asm/ |
D | sync.h | 177 # define ____SYNC(_type, _reason, _else) \ argument 178 .if (( _type ) != -1) && ( _reason ); \ 181 .rept __SYNC_rpt(_type); \ 182 sync _type; \ 189 # define ____SYNC(_type, _reason, _else) argument
|
/linux-6.12.1/arch/x86/include/asm/ |
D | percpu.h | 631 #define DEFINE_EARLY_PER_CPU(_type, _name, _initvalue) \ argument 632 DEFINE_PER_CPU(_type, _name) = _initvalue; \ 633 __typeof__(_type) _name##_early_map[NR_CPUS] __initdata = \ 635 __typeof__(_type) *_name##_early_ptr __refdata = _name##_early_map 637 #define DEFINE_EARLY_PER_CPU_READ_MOSTLY(_type, _name, _initvalue) \ argument 638 DEFINE_PER_CPU_READ_MOSTLY(_type, _name) = _initvalue; \ 639 __typeof__(_type) _name##_early_map[NR_CPUS] __initdata = \ 641 __typeof__(_type) *_name##_early_ptr __refdata = _name##_early_map 646 #define DECLARE_EARLY_PER_CPU(_type, _name) \ argument 647 DECLARE_PER_CPU(_type, _name); \ [all …]
|
/linux-6.12.1/drivers/pinctrl/sophgo/ |
D | pinctrl-cv18xx.h | 98 #define CV1800_FUNC_PIN(_id, _power_domain, _type, \ argument 103 .flags = CV1800_PIN_FLAG_IO_TYPE(_type), \ 111 #define CV1800_GENERAL_PIN(_id, _power_domain, _type, \ argument 117 .flags = CV1800_PIN_FLAG_IO_TYPE(_type), \ 129 #define CV1800_GENERATE_PIN_MUX2(_id, _power_domain, _type, \ argument 137 .flags = CV1800_PIN_FLAG_IO_TYPE(_type) | \
|
/linux-6.12.1/drivers/regulator/ |
D | max77826-regulator.c | 113 #define MAX77826_VOLT_RANGE(_type) \ argument 114 ((MAX77826_ ## _type ## _VOLT_MAX - \ 115 MAX77826_ ## _type ## _VOLT_MIN) / \ 116 MAX77826_ ## _type ## _VOLT_STEP + 1) 118 #define MAX77826_LDO(_id, _type) \ argument 125 .min_uV = MAX77826_ ## _type ## _LDO_VOLT_MIN, \ 126 .uV_step = MAX77826_ ## _type ## _LDO_VOLT_STEP, \ 127 .n_voltages = MAX77826_VOLT_RANGE(_type ## _LDO), \
|
/linux-6.12.1/drivers/iio/adc/ |
D | da9150-gpadc.c | 250 #define DA9150_GPADC_CHANNEL(_id, _hw_id, _type, chan_info, \ argument 252 .type = _type, \ 261 #define DA9150_GPADC_CHANNEL_RAW(_id, _hw_id, _type, _ext_name) \ argument 262 DA9150_GPADC_CHANNEL(_id, _hw_id, _type, \ 265 #define DA9150_GPADC_CHANNEL_SCALED(_id, _hw_id, _type, _ext_name) \ argument 266 DA9150_GPADC_CHANNEL(_id, _hw_id, _type, \ 272 #define DA9150_GPADC_CHANNEL_PROCESSED(_id, _hw_id, _type, _ext_name) \ argument 273 DA9150_GPADC_CHANNEL(_id, _hw_id, _type, \
|
D | max77541-adc.c | 100 #define MAX77541_ADC_CHANNEL_V(_channel, _name, _type, _reg) \ argument 102 .type = _type, \ 111 #define MAX77541_ADC_CHANNEL_TEMP(_channel, _name, _type, _reg) \ argument 113 .type = _type, \
|
/linux-6.12.1/drivers/crypto/intel/qat/qat_common/ |
D | adf_tl_debugfs.h | 80 #define ADF_TL_COUNTER(_name, _type, _offset) \ argument 82 .type = _type, \ 86 #define ADF_TL_COUNTER_LATENCY(_name, _type, _offset1, _offset2) \ argument 88 .type = _type, \
|
/linux-6.12.1/scripts/gdb/linux/ |
D | utils.py | 19 self._type = None 23 self._type = None 27 if self._type is None: 28 self._type = gdb.lookup_type(self._name) 29 if self._type is None: 34 return self._type
|
/linux-6.12.1/drivers/hwmon/ |
D | bt1-pvt.h | 160 #define PVT_SENSOR_INFO(_ch, _label, _type, _mode, _thres) \ argument 168 .type = _type, \ 169 .attr_min_alarm = _type## _min, \ 170 .attr_max_alarm = _type## _max, \
|
/linux-6.12.1/tools/testing/selftests/bpf/progs/ |
D | netif_receive_skb.c | 49 #define TEST_BTF(_str, _type, _flags, _expected, ...) \ argument 54 static _type _ptrdata = __VA_ARGS__; \ 63 _ptr.type_id = bpf_core_type_id_kernel(_type); \ 84 #define TEST_BTF_C(_str, _type, _flags, ...) \ argument 85 TEST_BTF(_str, _type, _flags, "(" #_type ")" #__VA_ARGS__, \
|
/linux-6.12.1/arch/arm/include/asm/mach/ |
D | arch.h | 78 #define MACHINE_START(_type,_name) \ argument 79 static const struct machine_desc __mach_desc_##_type \ 82 .nr = MACH_TYPE_##_type, \
|
/linux-6.12.1/drivers/clk/pistachio/ |
D | clk.h | 119 #define PLL(_id, _name, _pname, _type, _reg, _rates) \ argument 123 .type = _type, \ 130 #define PLL_FIXED(_id, _name, _pname, _type, _reg) \ argument 134 .type = _type, \
|
/linux-6.12.1/drivers/clk/renesas/ |
D | renesas-cpg-mssr.h | 44 #define DEF_TYPE(_name, _id, _type...) \ argument 45 { .name = _name, .id = _id, .type = _type } 46 #define DEF_BASE(_name, _id, _type, _parent...) \ argument 47 DEF_TYPE(_name, _id, _type, .parent = _parent)
|
D | rzv2h-cpg.h | 75 #define DEF_TYPE(_name, _id, _type...) \ argument 76 { .name = _name, .id = _id, .type = _type } 77 #define DEF_BASE(_name, _id, _type, _parent...) \ argument 78 DEF_TYPE(_name, _id, _type, .parent = _parent)
|