| /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 72 ((_ext)[_param] |= cpu_to_le64(mc_enc((_offset), (_width), _arg))) 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 78 ((_cmd).params[_param] |= mc_enc((_offset), (_width), _arg)) 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/drivers/usb/dwc2/ |
| H A D | params.c | 643 #define CHECK_RANGE(_param, _min, _max, _def) do { \ argument 644 if ((int)(hsotg->params._param) < (_min) || \ 645 (hsotg->params._param) > (_max)) { \ 647 __func__, #_param, hsotg->params._param); \ 648 hsotg->params._param = (_def); \ 652 #define CHECK_BOOL(_param, _check) do { \ argument 653 if (hsotg->params._param && !(_check)) { \ 655 __func__, #_param, hsotg->params._param); \ 656 hsotg->params._param = false; \
|
| H A D | debugfs.c | 661 #define print_param(_seq, _ptr, _param) \ argument 662 seq_printf((_seq), "%-30s: %d\n", #_param, (_ptr)->_param) 664 #define print_param_hex(_seq, _ptr, _param) \ argument 665 seq_printf((_seq), "%-30s: 0x%x\n", #_param, (_ptr)->_param)
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/phl/ |
| H A D | phl_ecsa_export.h | 139 #define rtw_phl_ecsa_start(_phl, _role, _param) RTW_PHL_STATUS_SUCCESS argument 141 #define rtw_phl_ecsa_get_param(_phl, _param) RTW_PHL_STATUS_SUCCESS argument 143 #define rtw_phl_ecsa_extend_option_hdlr(_extend_option, _param) argument
|
| H A D | phl_cmd_scan.c | 21 #define param_to_phlcom(_param) (_param->wifi_role->phl_com) argument
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/phl/ |
| H A D | phl_ecsa_export.h | 139 #define rtw_phl_ecsa_start(_phl, _role, _param) RTW_PHL_STATUS_SUCCESS argument 141 #define rtw_phl_ecsa_get_param(_phl, _param) RTW_PHL_STATUS_SUCCESS argument 143 #define rtw_phl_ecsa_extend_option_hdlr(_extend_option, _param) argument
|
| H A D | phl_cmd_scan.c | 21 #define param_to_phlcom(_param) (_param->wifi_role->phl_com) argument
|
| /OK3568_Linux_fs/kernel/drivers/accessibility/braille/ |
| H A D | braille_console.c | 144 unsigned long code, void *_param) in keyboard_notifier_call() argument 146 struct keyboard_notifier_param *param = _param; in keyboard_notifier_call() 263 unsigned long code, void *_param) in vt_notifier_call() argument 265 struct vt_notifier_param *param = _param; in vt_notifier_call()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/include/ |
| H A D | basic_asm.h | 23 #define __STACK_FRAME_PARAM(_param) (32 + ((_param)*8)) argument
|
| /OK3568_Linux_fs/kernel/include/acpi/ |
| H A D | acoutput.h | 374 register type _param = (type) (param); \ 375 function (ACPI_DEBUG_PARAMETERS, _param); \ 376 return (_param); \
|
| /OK3568_Linux_fs/kernel/drivers/dma/fsl-dpaa2-qdma/ |
| H A D | dpdmai.c | 36 #define MC_CMD_OP(_cmd, _param, _offset, _width, _type, _arg) \ argument 37 ((_cmd).params[_param] |= mc_enc((_offset), (_width), _arg))
|
| /OK3568_Linux_fs/kernel/drivers/tty/vt/ |
| H A D | vc_screen.c | 85 vcs_notifier(struct notifier_block *nb, unsigned long code, void *_param) in vcs_notifier() argument 87 struct vt_notifier_param *param = _param; in vcs_notifier()
|
| /OK3568_Linux_fs/kernel/drivers/scsi/csiostor/ |
| H A D | csio_hw.c | 1929 u32 _param[1]; in csio_hw_check_fwconfig() local 1941 _param[0] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) | in csio_hw_check_fwconfig() 1945 ARRAY_SIZE(_param), _param, NULL, false, NULL); in csio_hw_check_fwconfig() 1953 ARRAY_SIZE(_param), _param); in csio_hw_check_fwconfig() 1962 *param = _param[0]; in csio_hw_check_fwconfig()
|
| /OK3568_Linux_fs/kernel/drivers/accessibility/speakup/ |
| H A D | main.c | 2215 unsigned long code, void *_param) in keyboard_notifier_call() argument 2217 struct keyboard_notifier_param *param = _param; in keyboard_notifier_call() 2285 unsigned long code, void *_param) in vt_notifier_call() argument 2287 struct vt_notifier_param *param = _param; in vt_notifier_call()
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | probe-finder.c | 1115 struct dwarf_callback_param _param = {.data = (void *)pf, in find_probe_point_by_func() local 1117 dwarf_getfuncs(&pf->cu_die, probe_point_search_cb, &_param, 0); in find_probe_point_by_func() 1118 return _param.retval; in find_probe_point_by_func()
|
| H A D | parse-events.c | 684 void *_param) in add_bpf_event() argument 687 struct __add_bpf_event_param *param = _param; in add_bpf_event()
|
| /OK3568_Linux_fs/kernel/kernel/ |
| H A D | cpu.c | 926 static int take_cpu_down(void *_param) in take_cpu_down() argument
|