Searched refs:__mod (Results 1 – 6 of 6) sorted by relevance
/linux-4.4.14/drivers/scsi/bfa/ |
D | bfa_modules.h | 66 #define BFA_MODULE(__mod) \ argument 67 static void bfa_ ## __mod ## _meminfo( \ 71 static void bfa_ ## __mod ## _attach(struct bfa_s *bfa, \ 74 static void bfa_ ## __mod ## _detach(struct bfa_s *bfa); \ 75 static void bfa_ ## __mod ## _start(struct bfa_s *bfa); \ 76 static void bfa_ ## __mod ## _stop(struct bfa_s *bfa); \ 77 static void bfa_ ## __mod ## _iocdisable(struct bfa_s *bfa); \ 79 extern struct bfa_module_s hal_mod_ ## __mod; \ 80 struct bfa_module_s hal_mod_ ## __mod = { \ 81 bfa_ ## __mod ## _meminfo, \ [all …]
|
D | bfa_cs.h | 82 #define BFA_TRC_MOD(__mod) ((BFA_TRC_ ## __mod) << BFA_TRC_MOD_SH) argument 87 #define BFA_TRC_FILE(__mod, __submod) \ argument 88 static int __trc_fileno = ((BFA_TRC_ ## __mod ## _ ## __submod) | \ 89 BFA_TRC_MOD(__mod)) 149 #define bfa_sm_fault(__mod, __event) do { \ argument 150 bfa_trc(__mod, (((u32)0xDEAD << 16) | __event)); \
|
D | bfa_svc.h | 114 #define BFA_FCXP_FROM_TAG(__mod, __tag) (&(__mod)->fcxp_list[__tag]) argument 434 #define BFA_LPS_FROM_TAG(__mod, __tag) (&(__mod)->lps_arr[__tag]) argument
|
/linux-4.4.14/arch/x86/include/asm/ |
D | div64.h | 23 unsigned long __upper, __low, __high, __mod, __base; \ 26 __mod = n & (__base - 1); \ 35 asm("divl %2" : "=a" (__low), "=d" (__mod) \ 39 __mod; \
|
/linux-4.4.14/fs/xfs/ |
D | xfs_linux.h | 232 unsigned long __upper, __low, __high, __mod; in xfs_do_div() local 240 asm("divl %2":"=a" (__low), "=d" (__mod):"rm" (b), "0" (__low), "1" (__upper)); in xfs_do_div() 243 return __mod; in xfs_do_div() 259 unsigned long __upper, __low, __high, __mod; in xfs_do_mod() local 267 asm("divl %2":"=a" (__low), "=d" (__mod):"rm" (b), "0" (__low), "1" (__upper)); in xfs_do_mod() 269 return __mod; in xfs_do_mod()
|
/linux-4.4.14/include/linux/ |
D | module.h | 611 struct module *__mod = (mod); \ 612 __mod ? __mod->name : "kernel"; \
|