| /OK3568_Linux_fs/kernel/drivers/net/ethernet/mellanox/mlxsw/ |
| H A D | item.h | 258 #define __ITEM_NAME(_type, _cname, _iname) \ argument 259 mlxsw_##_type##_##_cname##_##_iname##_item 266 #define MLXSW_ITEM8(_type, _cname, _iname, _offset, _shift, _sizebits) \ argument 267 static struct mlxsw_item __ITEM_NAME(_type, _cname, _iname) = { \ 271 .name = #_type "_" #_cname "_" #_iname, \ 273 static inline u8 mlxsw_##_type##_##_cname##_##_iname##_get(const char *buf) \ 275 return __mlxsw_item_get8(buf, &__ITEM_NAME(_type, _cname, _iname), 0); \ 277 static inline void mlxsw_##_type##_##_cname##_##_iname##_set(char *buf, u8 val)\ 279 __mlxsw_item_set8(buf, &__ITEM_NAME(_type, _cname, _iname), 0, val); \ 282 #define MLXSW_ITEM8_INDEXED(_type, _cname, _iname, _offset, _shift, _sizebits, \ argument [all …]
|
| /OK3568_Linux_fs/u-boot/include/ |
| H A D | linker_lists.h | 111 #define llsym(_type, _name, _list) \ argument 112 ((_type *)&_u_boot_list_2_##_list##_2_##_name) 149 #define ll_entry_declare(_type, _name, _list) \ argument 150 _type _u_boot_list_2_##_list##_2_##_name __aligned(4) \ 170 #define ll_entry_declare_list(_type, _name, _list) \ argument 171 _type _u_boot_list_2_##_list##_2_##_name[] __aligned(4) \ 199 #define ll_entry_start(_type, _list) \ argument 203 (_type *)&start; \ 222 #define ll_entry_end(_type, _list) \ argument 226 (_type *)&end; \ [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/phl/ |
| H A D | phl_list.h | 23 #define phl_container_of(_ptr, _type, _member) container_of(_ptr, _type, _member) argument 24 #define phl_list_for_loop(_pos, _type, _head, _member) \ argument 25 list_for_each_entry(_pos, _type, _head, _member) 26 #define phl_list_for_loop_safe(_pos, _n, _type, _head, _member) \ argument 27 list_for_each_entry_safe(_pos, _n, _type, _head, _member) 32 #define phl_container_of(_ptr, _type, _member) container_of(_ptr, _type, _member) argument 33 #define phl_list_for_loop(_pos, _type, _head, _member) \ argument 35 #define phl_list_for_loop_safe(_pos, _n, _type, _head, _member) \ argument 40 #define phl_container_of(_ptr, _type, _member) container_of(_ptr, _type, _member) argument 41 #define phl_list_for_loop(_pos, _type, _head, _member) \ argument [all …]
|
| H A D | phl_util.h | 114 #define rtw_phl_is_ap_category(_type) (_type == PHL_RTYPE_AP ||\ argument 115 _type == PHL_RTYPE_P2P_GO ||\ 116 _type == PHL_RTYPE_VAP) 117 #define rtw_phl_is_client_category(_type) (_type == PHL_RTYPE_STATION ||\ argument 118 _type == PHL_RTYPE_P2P_GC ||\ 119 _type == PHL_RTYPE_TDLS)
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/phl/ |
| H A D | phl_list.h | 23 #define phl_container_of(_ptr, _type, _member) container_of(_ptr, _type, _member) argument 24 #define phl_list_for_loop(_pos, _type, _head, _member) \ argument 25 list_for_each_entry(_pos, _type, _head, _member) 26 #define phl_list_for_loop_safe(_pos, _n, _type, _head, _member) \ argument 27 list_for_each_entry_safe(_pos, _n, _type, _head, _member) 32 #define phl_container_of(_ptr, _type, _member) container_of(_ptr, _type, _member) argument 33 #define phl_list_for_loop(_pos, _type, _head, _member) \ argument 35 #define phl_list_for_loop_safe(_pos, _n, _type, _head, _member) \ argument 40 #define phl_container_of(_ptr, _type, _member) container_of(_ptr, _type, _member) argument 41 #define phl_list_for_loop(_pos, _type, _head, _member) \ argument [all …]
|
| /OK3568_Linux_fs/kernel/kernel/trace/ |
| H A D | trace_export.c | 86 #define __field_ext(_type, _item, _filter_type) { \ argument 87 .type = #_type, .name = #_item, \ 88 .size = sizeof(_type), .align = __alignof__(_type), \ 89 is_signed_type(_type), .filter_type = _filter_type }, 93 #define __field_ext_packed(_type, _item, _filter_type) { \ argument 94 .type = #_type, .name = #_item, \ 95 .size = sizeof(_type), .align = 1, \ 96 is_signed_type(_type), .filter_type = _filter_type }, 99 #define __field(_type, _item) __field_ext(_type, _item, FILTER_OTHER) argument 102 #define __field_fn(_type, _item) __field_ext(_type, _item, FILTER_TRACE_FN) argument [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/vmwgfx/ |
| H A D | vmwgfx_blit.c | 36 #define VMW_FIND_FIRST_DIFF(_type) \ argument 37 static size_t vmw_find_first_diff_ ## _type \ 38 (const _type * dst, const _type * src, size_t size)\ 42 for (i = 0; i < size; i += sizeof(_type)) { \ 57 #define VMW_FIND_LAST_DIFF(_type) \ argument 58 static ssize_t vmw_find_last_diff_ ## _type( \ 59 const _type * dst, const _type * src, size_t size) \ 65 size -= sizeof(_type); \ 93 #define SPILL(_var, _type) ((unsigned long) _var & (sizeof(_type) - 1)) argument 103 #define VMW_TRY_FIND_FIRST_DIFF(_type) \ argument [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/sequence/io/detail/ |
| H A D | manip.hpp | 158 inline detail::name##_type<Char, Traits> \ 161 return detail::name##_type<Char, Traits>(s); \ 164 inline detail::name##_type<char> \ 167 return detail::name##_type<char>(std::basic_string<char>(s)); \ 170 inline detail::name##_type<wchar_t> \ 173 return detail::name##_type<wchar_t>(std::basic_string<wchar_t>(s)); \ 176 inline detail::name##_type<char> \ 179 return detail::name##_type<char>(std::basic_string<char>(1, c)); \ 182 inline detail::name##_type<wchar_t> \ 185 return detail::name##_type<wchar_t>(std::basic_string<wchar_t>(1, c)); \ [all …]
|
| /OK3568_Linux_fs/kernel/include/rdma/ |
| H A 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 …]
|
| /OK3568_Linux_fs/kernel/arch/x86/include/asm/ |
| H A D | percpu.h | 405 #define DEFINE_EARLY_PER_CPU(_type, _name, _initvalue) \ argument 406 DEFINE_PER_CPU(_type, _name) = _initvalue; \ 407 __typeof__(_type) _name##_early_map[NR_CPUS] __initdata = \ 409 __typeof__(_type) *_name##_early_ptr __refdata = _name##_early_map 411 #define DEFINE_EARLY_PER_CPU_READ_MOSTLY(_type, _name, _initvalue) \ argument 412 DEFINE_PER_CPU_READ_MOSTLY(_type, _name) = _initvalue; \ 413 __typeof__(_type) _name##_early_map[NR_CPUS] __initdata = \ 415 __typeof__(_type) *_name##_early_ptr __refdata = _name##_early_map 420 #define DECLARE_EARLY_PER_CPU(_type, _name) \ argument 421 DECLARE_PER_CPU(_type, _name); \ [all …]
|
| /OK3568_Linux_fs/external/rk_pcba_test/pcba_minui/ |
| H A D | safe_iop.h | 476 #define MAKE_UADD(_prefix, _bits, _type, _max) \ argument 478 int safe_add##_prefix##_bits (_type *result, _type value, _type a) { \ 482 #define MAKE_SADD(_prefix, _bits, _type, _max) \ argument 484 int safe_add##_prefix##_bits(_type *result, _type value, _type a) { \ 488 #define MAKE_USUB(_prefix, _bits, _type) \ argument 490 int safe_sub##_prefix##_bits(_type *result, _type value, _type a) { \ 494 #define MAKE_SSUB(_prefix, _bits, _type, _min, _max) \ argument 496 int safe_sub##_prefix##_bits(_type *result, _type value, _type a) { \ 500 #define MAKE_UMUL(_prefix, _bits, _type, _max) \ argument 502 int safe_mul##_prefix##_bits(_type *result, _type value, _type a) { \ [all …]
|
| /OK3568_Linux_fs/external/recovery/ |
| H A D | safe_iop.h | 476 #define MAKE_UADD(_prefix, _bits, _type, _max) \ argument 478 int safe_add##_prefix##_bits (_type *result, _type value, _type a) { \ 482 #define MAKE_SADD(_prefix, _bits, _type, _max) \ argument 484 int safe_add##_prefix##_bits(_type *result, _type value, _type a) { \ 488 #define MAKE_USUB(_prefix, _bits, _type) \ argument 490 int safe_sub##_prefix##_bits(_type *result, _type value, _type a) { \ 494 #define MAKE_SSUB(_prefix, _bits, _type, _min, _max) \ argument 496 int safe_sub##_prefix##_bits(_type *result, _type value, _type a) { \ 500 #define MAKE_UMUL(_prefix, _bits, _type, _max) \ argument 502 int safe_mul##_prefix##_bits(_type *result, _type value, _type a) { \ [all …]
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/pysh/ |
| H A D | pyshlex.py | 552 self._type = TK_TOKEN 614 self._type = TK_NEWLINE 622 self._type = TK_OP 636 self._type = TK_COMMENT 718 heredoc.pendings[:0] = [(self._token, self._type, heredoc.name)] 721 self._type = type 731 if self._type!=TK_TOKEN: 734 self._type = TK_HERENAME 737 if self._type==TK_NEWLINE: 741 self._heredoc.pendings.append((self._token, self._type, delim)) [all …]
|
| /OK3568_Linux_fs/kernel/tools/perf/ui/ |
| H A D | hist.c | 340 #define __HPP_COLOR_PERCENT_FN(_type, _field) \ argument 346 static int hpp__color_##_type(struct perf_hpp_fmt *fmt, \ 353 #define __HPP_ENTRY_PERCENT_FN(_type, _field) \ argument 354 static int hpp__entry_##_type(struct perf_hpp_fmt *fmt, \ 361 #define __HPP_SORT_FN(_type, _field) \ argument 362 static int64_t hpp__sort_##_type(struct perf_hpp_fmt *fmt __maybe_unused, \ 368 #define __HPP_COLOR_ACC_PERCENT_FN(_type, _field) \ argument 374 static int hpp__color_##_type(struct perf_hpp_fmt *fmt, \ 381 #define __HPP_ENTRY_ACC_PERCENT_FN(_type, _field) \ argument 382 static int hpp__entry_##_type(struct perf_hpp_fmt *fmt, \ [all …]
|
| /OK3568_Linux_fs/kernel/arch/mips/include/asm/ |
| H A 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
|
| /OK3568_Linux_fs/external/xserver/include/ |
| H A D | list.h | 424 #define nt_list_append(_entry, _list, _type, _member) \ argument 426 _type *__iterator = _list; \ 448 #define nt_list_insert(_entry, _list, _type, _member) \ argument 450 nt_list_append((_list)->_member, _entry, _type, _member); \ 469 #define nt_list_del(_entry, _list, _type, _member) \ argument 471 _type *__e = _entry; \ 476 _type *__prev = _list; \
|
| /OK3568_Linux_fs/kernel/drivers/regulator/ |
| H A D | max77826-regulator.c | 114 #define MAX77826_VOLT_RANGE(_type) \ argument 115 ((MAX77826_ ## _type ## _VOLT_MAX - \ 116 MAX77826_ ## _type ## _VOLT_MIN) / \ 117 MAX77826_ ## _type ## _VOLT_STEP + 1) 119 #define MAX77826_LDO(_id, _type) \ argument 126 .min_uV = MAX77826_ ## _type ## _LDO_VOLT_MIN, \ 127 .uV_step = MAX77826_ ## _type ## _LDO_VOLT_STEP, \ 128 .n_voltages = MAX77826_VOLT_RANGE(_type ## _LDO), \
|
| /OK3568_Linux_fs/u-boot/include/fsl-mc/ |
| H A D | fsl_mc_cmd.h | 71 #define MC_PREP_OP(_ext, _param, _offset, _width, _type, _arg) \ argument 74 #define MC_EXT_OP(_ext, _param, _offset, _width, _type, _arg) \ argument 75 (_arg = (_type)mc_dec(cpu_to_le64(_ext[_param]), (_offset), (_width))) 77 #define MC_CMD_OP(_cmd, _param, _offset, _width, _type, _arg) \ argument 80 #define MC_RSP_OP(_cmd, _param, _offset, _width, _type, _arg) \ argument 81 (_arg = (_type)mc_dec(_cmd.params[_param], (_offset), (_width)))
|
| /OK3568_Linux_fs/kernel/include/trace/ |
| H A D | trace_events.h | 406 #define __field_ext(_type, _item, _filter_type) { \ argument 407 .type = #_type, .name = #_item, \ 408 .size = sizeof(_type), .align = ALIGN_STRUCTFIELD(_type), \ 409 .is_signed = is_signed_type(_type), .filter_type = _filter_type }, 412 #define __field_struct_ext(_type, _item, _filter_type) { \ argument 413 .type = #_type, .name = #_item, \ 414 .size = sizeof(_type), .align = ALIGN_STRUCTFIELD(_type), \ 424 #define __array(_type, _item, _len) { \ argument 425 .type = #_type"["__stringify(_len)"]", .name = #_item, \ 426 .size = sizeof(_type[_len]), .align = ALIGN_STRUCTFIELD(_type), \ [all …]
|
| /OK3568_Linux_fs/kernel/drivers/iio/adc/ |
| H A 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, \
|
| /OK3568_Linux_fs/kernel/scripts/gdb/linux/ |
| H A 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
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/progs/ |
| H A D | netif_receive_skb.c | 52 #define TEST_BTF(_str, _type, _flags, _expected, ...) \ argument 56 static const char _ptrtype[64] = #_type; \ 58 static _type _ptrdata = __VA_ARGS__; \ 67 _ptr.type_id = bpf_core_type_id_kernel(_type); \ 88 #define TEST_BTF_C(_str, _type, _flags, ...) \ argument 89 TEST_BTF(_str, _type, _flags, "(" #_type ")" #__VA_ARGS__, \
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/msm/adreno/ |
| H A D | a6xx_gpu_state.h | 123 #define CLUSTER_DBGAHB(_id, _base, _type, _reg) \ argument 124 { .name = #_id, .statetype = _type, .base = _base, \ 172 #define HLSQ_DBG_REGS(_base, _type, _array) \ argument 173 { .val0 = _base, .val1 = _type, .registers = _array, \ 182 #define SHADER(_type, _size) \ argument 183 { .type = _type, .name = #_type, .size = _size }
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/ |
| H A D | argument.hpp | 30 BOOST_PP_CAT(BOOST_PP_CAT(_, BOOST_PP_INC(n)), _type); \ 33 BOOST_PP_CAT(BOOST_PP_CAT(_, BOOST_PP_INC(n)), _type)(); \ 37 using spirit::BOOST_PP_CAT(BOOST_PP_CAT(_, n), _type); \ 45 BOOST_PP_CAT(BOOST_PP_CAT(_, BOOST_PP_INC(n)), _type); \ 49 using spirit::BOOST_PP_CAT(BOOST_PP_CAT(_, n), _type); \
|
| /OK3568_Linux_fs/kernel/drivers/hwmon/ |
| H A 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, \
|