Home
last modified time | relevance | path

Searched refs:__mod (Results 1 – 6 of 6) sorted by relevance

/linux-4.4.14/drivers/scsi/bfa/
Dbfa_modules.h66 #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 …]
Dbfa_cs.h82 #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)); \
Dbfa_svc.h114 #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/
Ddiv64.h23 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/
Dxfs_linux.h232 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/
Dmodule.h611 struct module *__mod = (mod); \
612 __mod ? __mod->name : "kernel"; \