/linux-4.4.14/arch/m68k/include/asm/ |
D | linkage.h | 21 #define __asmlinkage_protect1(ret, arg1) \ argument 22 __asmlinkage_protect_n(ret, "m" (arg1)) 23 #define __asmlinkage_protect2(ret, arg1, arg2) \ argument 24 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2)) 25 #define __asmlinkage_protect3(ret, arg1, arg2, arg3) \ argument 26 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3)) 27 #define __asmlinkage_protect4(ret, arg1, arg2, arg3, arg4) \ argument 28 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3), \ 30 #define __asmlinkage_protect5(ret, arg1, arg2, arg3, arg4, arg5) \ argument 31 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3), \ [all …]
|
D | math-emu.h | 245 .macro movestack nr,arg1,arg2,arg3,arg4,arg5 248 move.l \arg1,-(%sp) 252 .macro printf bit=-1,string,nr=0,arg1,arg2,arg3,arg4,arg5 270 movestack \nr,\arg1,\arg2,\arg3,\arg4,\arg5
|
/linux-4.4.14/arch/x86/include/asm/ |
D | linkage.h | 29 #define __asmlinkage_protect1(ret, arg1) \ argument 30 __asmlinkage_protect_n(ret, "m" (arg1)) 31 #define __asmlinkage_protect2(ret, arg1, arg2) \ argument 32 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2)) 33 #define __asmlinkage_protect3(ret, arg1, arg2, arg3) \ argument 34 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3)) 35 #define __asmlinkage_protect4(ret, arg1, arg2, arg3, arg4) \ argument 36 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3), \ 38 #define __asmlinkage_protect5(ret, arg1, arg2, arg3, arg4, arg5) \ argument 39 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3), \ [all …]
|
D | paravirt_types.h | 631 #define PVOP_CALL1(rettype, op, arg1) \ argument 632 __PVOP_CALL(rettype, op, "", "", PVOP_CALL_ARG1(arg1)) 633 #define PVOP_VCALL1(op, arg1) \ argument 634 __PVOP_VCALL(op, "", "", PVOP_CALL_ARG1(arg1)) 636 #define PVOP_CALLEE1(rettype, op, arg1) \ argument 637 __PVOP_CALLEESAVE(rettype, op, "", "", PVOP_CALL_ARG1(arg1)) 638 #define PVOP_VCALLEE1(op, arg1) \ argument 639 __PVOP_VCALLEESAVE(op, "", "", PVOP_CALL_ARG1(arg1)) 642 #define PVOP_CALL2(rettype, op, arg1, arg2) \ argument 643 __PVOP_CALL(rettype, op, "", "", PVOP_CALL_ARG1(arg1), \ [all …]
|
D | lguest_hcall.h | 48 unsigned long arg1, unsigned long arg2, unsigned long arg3, in hcall() argument 56 : "a"(call), "b"(arg1), "c"(arg2), "d"(arg3), "S"(arg4) in hcall() 71 unsigned long arg0, arg1, arg2, arg3, arg4; member
|
/linux-4.4.14/arch/cris/include/arch-v32/arch/ |
D | unistd.h | 27 #define _syscall1(type,name,type1,arg1) \ argument 28 type name(type1 arg1) \ 30 register long __a __asm__ ("r10") = (long) arg1; \ 45 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument 46 type name(type1 arg1,type2 arg2) \ 48 register long __a __asm__ ("r10") = (long) arg1; \ 64 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument 65 type name(type1 arg1,type2 arg2,type3 arg3) \ 67 register long __a __asm__ ("r10") = (long) arg1; \ 84 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ argument [all …]
|
/linux-4.4.14/arch/cris/include/arch-v10/arch/ |
D | unistd.h | 26 #define _syscall1(type,name,type1,arg1) \ argument 27 type name(type1 arg1) \ 29 register long __a __asm__ ("r10") = (long) arg1; \ 43 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument 44 type name(type1 arg1,type2 arg2) \ 46 register long __a __asm__ ("r10") = (long) arg1; \ 61 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument 62 type name(type1 arg1,type2 arg2,type3 arg3) \ 64 register long __a __asm__ ("r10") = (long) arg1; \ 80 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ argument [all …]
|
/linux-4.4.14/arch/x86/um/shared/sysdep/ |
D | stub_32.h | 24 static inline long stub_syscall1(long syscall, long arg1) in stub_syscall1() argument 28 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1)); in stub_syscall1() 33 static inline long stub_syscall2(long syscall, long arg1, long arg2) in stub_syscall2() argument 37 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall2() 43 static inline long stub_syscall3(long syscall, long arg1, long arg2, long arg3) in stub_syscall3() argument 47 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall3() 53 static inline long stub_syscall4(long syscall, long arg1, long arg2, long arg3, in stub_syscall4() argument 58 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall4() 64 static inline long stub_syscall5(long syscall, long arg1, long arg2, long arg3, in stub_syscall5() argument 69 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall5()
|
D | stub_64.h | 29 static inline long stub_syscall2(long syscall, long arg1, long arg2) in stub_syscall2() argument 35 : "0" (syscall), "D" (arg1), "S" (arg2) : __syscall_clobber ); in stub_syscall2() 40 static inline long stub_syscall3(long syscall, long arg1, long arg2, long arg3) in stub_syscall3() argument 46 : "0" (syscall), "D" (arg1), "S" (arg2), "d" (arg3) in stub_syscall3() 52 static inline long stub_syscall4(long syscall, long arg1, long arg2, long arg3, in stub_syscall4() argument 59 : "0" (syscall), "D" (arg1), "S" (arg2), "d" (arg3), in stub_syscall4() 66 static inline long stub_syscall5(long syscall, long arg1, long arg2, long arg3, in stub_syscall5() argument 73 : "0" (syscall), "D" (arg1), "S" (arg2), "d" (arg3), in stub_syscall5()
|
/linux-4.4.14/arch/parisc/include/asm/ |
D | unistd.h | 112 #define _syscall1(type,name,type1,arg1) \ argument 113 type name(type1 arg1) \ 115 return K_INLINE_SYSCALL(name, 1, arg1); \ 118 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument 119 type name(type1 arg1, type2 arg2) \ 121 return K_INLINE_SYSCALL(name, 2, arg1, arg2); \ 124 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument 125 type name(type1 arg1, type2 arg2, type3 arg3) \ 127 return K_INLINE_SYSCALL(name, 3, arg1, arg2, arg3); \ 130 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ argument [all …]
|
D | asmregs.h | 27 arg1: .reg %r25
|
/linux-4.4.14/arch/sparc/include/asm/ |
D | smp_32.h | 59 void (*cross_call)(smpfunc_t func, cpumask_t mask, unsigned long arg1, 73 static inline void xc1(smpfunc_t func, unsigned long arg1) in xc1() argument 75 sparc32_ipi_ops->cross_call(func, *cpu_online_mask, arg1, 0, 0, 0); in xc1() 77 static inline void xc2(smpfunc_t func, unsigned long arg1, unsigned long arg2) in xc2() argument 79 sparc32_ipi_ops->cross_call(func, *cpu_online_mask, arg1, arg2, 0, 0); in xc2() 82 static inline void xc3(smpfunc_t func, unsigned long arg1, unsigned long arg2, in xc3() argument 86 arg1, arg2, arg3, 0); in xc3() 89 static inline void xc4(smpfunc_t func, unsigned long arg1, unsigned long arg2, in xc4() argument 93 arg1, arg2, arg3, arg4); in xc4()
|
D | irq_64.h | 44 void *arg1, void *arg2);
|
/linux-4.4.14/arch/parisc/kernel/ |
D | real2.S | 80 ldw 0(%arg1), %arg0 /* note overwriting arg0 */ 81 ldw -8(%arg1), %arg2 82 ldw -12(%arg1), %arg3 83 ldw -4(%arg1), %arg1 /* obviously must do this one last! */ 250 ldo 64(%arg1), %r29 254 ldd 0*REG_SZ(%arg1), %arg0 /* note overwriting arg0 */ 255 ldd 2*REG_SZ(%arg1), %arg2 256 ldd 3*REG_SZ(%arg1), %arg3 257 ldd 4*REG_SZ(%arg1), %r22 258 ldd 5*REG_SZ(%arg1), %r21 [all …]
|
D | pacache.S | 84 LDREG ITLB_OFF_STRIDE(%r1), %arg1 100 pitlbe,m %arg1(%sr1, %r28) /* Last pitlbe and addr adjust */ 114 pitlbe,m %arg1(%sr1, %r28) /* pitlbe for one loop */ 127 LDREG DTLB_OFF_STRIDE(%r1), %arg1 143 pdtlbe,m %arg1(%sr1, %r28) /* Last pdtlbe and addr adjust */ 157 pdtlbe,m %arg1(%sr1, %r28) /* pdtlbe for one loop */ 207 LDREG ICACHE_STRIDE(%r1), %arg1 218 fice,m %arg1(%sr1, %arg0) /* Last fice and addr adjust */ 227 fice,m %arg1(%sr1, %arg0) 228 fice,m %arg1(%sr1, %arg0) [all …]
|
D | hpmc.S | 156 ldo PDC_PIM_HPMC(%r0),arg1 /* Transfer HPMC data */ 172 ldo 0(%r0),arg1 /* log IO errors */ 197 ldo PDC_IODC_READ(%r0),arg1 217 ldo ENTRY_INIT_MOD_DEV(%r0), arg1 275 ldo 0(%r0),arg1 /* do reset */
|
D | perf_asm.S | 105 ;* arg1 : bit length of rdr 112 ;* arg1 : bit length of rdr 150 extrd,u arg1,63,6,%r1 ; setup shift amount by bits to move 1355 ;* arg1 points to is loaded and moved into the staging register. 1361 ;* arg1 = buffer pointer 1368 ;* arg1 = buffer pointer
|
D | head.S | 68 stw,ma %arg1,4(%r1) 199 ldo PDC_PSW_SET_DEFAULTS(%r0),%arg1 /* 2 */
|
D | entry.S | 1997 copy %ret1, %arg1 2028 LDREG 16(%arg1), %arg1 2029 bve,l (%arg1), %rp 2041 bb,>=,n %arg1, 30, 1f 2042 depwi 0,31,2, %arg1 2043 LDREG 0(%arg1), %arg1 2045 be,l 0(%sr4,%arg1), %sr0, %r31
|
D | firmware.c | 1409 unsigned int arg1; member 1426 real_stack.arg1 = va_arg(args, unsigned int); in real32_call() 1449 unsigned long arg1; member 1477 real64_stack.arg1 = va_arg(args, unsigned long); in real64_call()
|
/linux-4.4.14/drivers/lguest/ |
D | hypercalls.c | 68 __lgread(cpu, msg, args->arg1, sizeof(msg)); in do_hcall() 77 if (args->arg1) in do_hcall() 88 guest_new_pagetable(cpu, args->arg1); in do_hcall() 91 guest_set_stack(cpu, args->arg1, args->arg2, args->arg3); in do_hcall() 95 guest_set_pte(cpu, args->arg1, args->arg2, in do_hcall() 98 guest_set_pte(cpu, args->arg1, args->arg2, __pte(args->arg3)); in do_hcall() 102 guest_set_pgd(cpu->lg, args->arg1, args->arg2); in do_hcall() 106 guest_set_pmd(cpu->lg, args->arg1, args->arg2); in do_hcall() 110 guest_set_clockevent(cpu, args->arg1); in do_hcall() 114 cpu->ts = args->arg1; in do_hcall()
|
/linux-4.4.14/arch/tile/include/uapi/arch/ |
D | sim.h | 231 static __inline long _sim_syscall1(int val, long arg1) in _sim_syscall1() argument 235 : "=R00" (result) : "R00" (val), "R01" (arg1)); in _sim_syscall1() 239 static __inline long _sim_syscall2(int val, long arg1, long arg2) in _sim_syscall2() argument 244 : "R00" (val), "R01" (arg1), "R02" (arg2)); in _sim_syscall2() 253 static __inline long _sim_syscall3(int val, long arg1, long arg2, long arg3) in _sim_syscall3() argument 259 : "R00" (val), "R01" (arg1), "R02" (arg2), in _sim_syscall3() 264 static __inline long _sim_syscall4(int val, long arg1, long arg2, long arg3, in _sim_syscall4() argument 271 : "R00" (val), "R01" (arg1), "R02" (arg2), in _sim_syscall4() 276 static __inline long _sim_syscall5(int val, long arg1, long arg2, long arg3, in _sim_syscall5() argument 283 : "R00" (val), "R01" (arg1), "R02" (arg2), in _sim_syscall5()
|
/linux-4.4.14/arch/x86/crypto/sha-mb/ |
D | sha1_x8_avx2.S | 221 arg1 = %rdi define 309 vmovdqu 0*32(arg1), A 310 vmovdqu 1*32(arg1), B 311 vmovdqu 2*32(arg1), C 312 vmovdqu 3*32(arg1), D 313 vmovdqu 4*32(arg1), E 316 mov _data_ptr+0*8(arg1),inp0 317 mov _data_ptr+1*8(arg1),inp1 318 mov _data_ptr+2*8(arg1),inp2 319 mov _data_ptr+3*8(arg1),inp3 [all …]
|
D | sha1_mb_mgr_submit_avx2.S | 62 arg1 = %rdi define 69 #define state arg1 175 # "state" and "args" are the same address, arg1
|
D | sha1_mb_mgr_flush_avx2.S | 61 #define arg1 %rdi macro 65 #define state arg1 84 #define tmp3 %arg1 201 # "state" and "args" are the same address, arg1
|
/linux-4.4.14/drivers/net/ethernet/qlogic/qlcnic/ |
D | qlcnic_ctx.c | 178 u32 arg1, arg2, arg3; in qlcnic_fw_cmd_set_drv_version() local 191 memcpy(&arg1, drv_string, sizeof(u32)); in qlcnic_fw_cmd_set_drv_version() 195 cmd.req.arg[1] = arg1; in qlcnic_fw_cmd_set_drv_version() 1027 u32 arg1; in qlcnic_config_port_mirroring() local 1036 arg1 = id | (enable_mirroring ? BIT_4 : 0); in qlcnic_config_port_mirroring() 1037 arg1 |= pci_func << 8; in qlcnic_config_port_mirroring() 1044 cmd.req.arg[1] = arg1; in qlcnic_config_port_mirroring() 1065 u32 arg1; in qlcnic_get_port_stats() local 1084 arg1 = func | QLCNIC_STATS_VERSION << 8 | QLCNIC_STATS_PORT << 12; in qlcnic_get_port_stats() 1085 arg1 |= rx_tx << 15 | stats_size << 16; in qlcnic_get_port_stats() [all …]
|
D | qlcnic_83xx_init.c | 110 u32 arg1; member 1808 qlcnic_83xx_wrt_reg_indirect(p_dev, entry->arg1, in qlcnic_83xx_write_list() 1826 qlcnic_83xx_read_write_crb_reg(p_dev, entry->arg1, in qlcnic_83xx_read_write_list() 1841 unsigned long arg1, arg2; in qlcnic_83xx_poll_list() local 1852 qlcnic_83xx_poll_reg(p_dev, entry->arg1, in qlcnic_83xx_poll_list() 1857 arg1 = entry->arg1; in qlcnic_83xx_poll_list() 1861 arg1, delay, in qlcnic_83xx_poll_list() 1864 QLCRD32(p_dev, arg1, &err); in qlcnic_83xx_poll_list() 1917 qlcnic_83xx_rmw_crb_reg(p_dev, entry->arg1, in qlcnic_83xx_read_modify_write()
|
D | qlcnic_83xx_hw.c | 2012 u32 temp, arg1; in qlcnic_83xx_config_hw_lro() local 2026 arg1 = lro_bit_mask | temp; in qlcnic_83xx_config_hw_lro() 2027 cmd.req.arg[1] = arg1; in qlcnic_83xx_config_hw_lro()
|
/linux-4.4.14/arch/arm/mach-bcm/ |
D | bcm_kona_smc.c | 30 unsigned arg1; member 152 writel_relaxed(data->arg1, args++); in __bcm_kona_smc() 163 unsigned bcm_kona_smc(unsigned service_id, unsigned arg0, unsigned arg1, in bcm_kona_smc() argument 170 data.arg1 = arg1; in bcm_kona_smc()
|
D | bcm_kona_smc.h | 28 unsigned arg1,
|
/linux-4.4.14/arch/mips/include/asm/ |
D | kvm_para.h | 47 unsigned long arg0, unsigned long arg1) in kvm_hypercall2() argument 56 a1 = arg1; in kvm_hypercall2() 66 unsigned long arg0, unsigned long arg1, unsigned long arg2) in kvm_hypercall3() argument 76 a1 = arg1; in kvm_hypercall3()
|
/linux-4.4.14/arch/x86/crypto/ |
D | aesni-intel_avx-x86_64.S | 183 #define arg1 %rdi macro 232 vpxor (arg1), \XMM0, \XMM0 236 vaesenc 16*i(arg1), \XMM0, \XMM0 240 vaesenclast 16*10(arg1), \XMM0, \XMM0 304 vmovdqa \T1, HashKey_k(arg1) 307 vmovdqa \T5, HashKey_2(arg1) # [HashKey_2] = HashKey^2<<1 mod poly 310 vmovdqa \T1, HashKey_2_k(arg1) 313 vmovdqa \T5, HashKey_3(arg1) 316 vmovdqa \T1, HashKey_3_k(arg1) 319 vmovdqa \T5, HashKey_4(arg1) [all …]
|
D | aesni-intel_asm.S | 93 #define arg1 rdi macro 103 #define keysize 2*15*16(%arg1) 266 MOVADQ (%arg1),\TMP2 273 lea 0x10(%arg1),%r10 347 MOVADQ 0(%arg1),\TMP1 364 movaps 0x10*\index(%arg1), \TMP1 377 movaps 0x10*\index(%arg1), \TMP1 389 lea 0xa0(%arg1),%r10 488 MOVADQ 0(%arg1),\TMP2 495 lea 0x10(%arg1),%r10 [all …]
|
D | crct10dif-pcl-asm_64.S | 65 #define arg1 %rdi macro
|
D | salsa20-x86_64-asm_64.S | 9 # x = arg1 816 # x = arg1 903 # x = arg1
|
D | salsa20-i586-asm_32.S | 25 # x = arg1 959 # x = arg1 1083 # x = arg1
|
D | sha512-ssse3-asm.S | 90 # Input message (arg1)
|
D | sha512-avx-asm.S | 93 # Input message (arg1)
|
/linux-4.4.14/arch/alpha/include/asm/ |
D | pal.h | 41 extern inline void NAME(TYPE0 arg0, TYPE1 arg1) \ 44 register TYPE1 __r17 __asm__("$17") = arg1; \ 66 extern inline RTYPE NAME(TYPE0 arg0, TYPE1 arg1) \ 70 register TYPE1 __r17 __asm__("$17") = arg1; \ 97 #define __tbi(nr,arg,arg1...) \ argument 104 :"0" (__r16),"i" (PAL_tbi) ,##arg1 \
|
/linux-4.4.14/arch/mips/kernel/ |
D | syscall.c | 202 SYSCALL_DEFINE3(sysmips, long, cmd, long, arg1, long, arg2) in SYSCALL_DEFINE3() argument 206 return mips_atomic_set(arg1, arg2); in SYSCALL_DEFINE3() 209 if (arg1 & ~3) in SYSCALL_DEFINE3() 212 if (arg1 & 1) in SYSCALL_DEFINE3() 216 if (arg1 & 2) in SYSCALL_DEFINE3()
|
D | relocate_kernel.S | 18 PTR_L a1, arg1 154 arg1: PTR 0x0 label
|
/linux-4.4.14/net/ceph/crush/ |
D | mapper.c | 836 if ((curstep->arg1 >= 0 && in crush_do_rule() 837 curstep->arg1 < map->max_devices) || in crush_do_rule() 838 (-1-curstep->arg1 < map->max_buckets && in crush_do_rule() 839 map->buckets[-1-curstep->arg1])) { in crush_do_rule() 840 w[0] = curstep->arg1; in crush_do_rule() 843 dprintk(" bad take value %d\n", curstep->arg1); in crush_do_rule() 848 if (curstep->arg1 > 0) in crush_do_rule() 849 choose_tries = curstep->arg1; in crush_do_rule() 853 if (curstep->arg1 > 0) in crush_do_rule() 854 choose_leaf_tries = curstep->arg1; in crush_do_rule() [all …]
|
/linux-4.4.14/arch/arm/mach-omap2/ |
D | omap-secure.c | 37 u32 omap_secure_dispatcher(u32 idx, u32 flag, u32 nargs, u32 arg1, u32 arg2, in omap_secure_dispatcher() argument 44 param[1] = arg1; in omap_secure_dispatcher() 90 u32 arg1, u32 arg2, u32 arg3, u32 arg4) in rx51_secure_dispatcher() argument 96 param[1] = arg1; in rx51_secure_dispatcher()
|
D | omap-secure.h | 62 u32 arg1, u32 arg2, u32 arg3, u32 arg4); 69 u32 arg1, u32 arg2, u32 arg3, u32 arg4);
|
/linux-4.4.14/arch/x86/lguest/ |
D | boot.c | 108 static void async_hcall(unsigned long call, unsigned long arg1, in async_hcall() argument 124 hcall(call, arg1, arg2, arg3, arg4); in async_hcall() 127 lguest_data.hcalls[next_call].arg1 = arg1; in async_hcall() 154 static void lazy_hcall1(unsigned long call, unsigned long arg1) in lazy_hcall1() argument 157 hcall(call, arg1, 0, 0, 0); in lazy_hcall1() 159 async_hcall(call, arg1, 0, 0, 0); in lazy_hcall1() 164 unsigned long arg1, in lazy_hcall2() argument 168 hcall(call, arg1, arg2, 0, 0); in lazy_hcall2() 170 async_hcall(call, arg1, arg2, 0, 0); in lazy_hcall2() 174 unsigned long arg1, in lazy_hcall3() argument [all …]
|
/linux-4.4.14/arch/sparc/kernel/ |
D | sun4m_smp.c | 160 unsigned long arg1; member 172 static void sun4m_cross_call(smpfunc_t func, cpumask_t mask, unsigned long arg1, in sun4m_cross_call() argument 183 ccall_info.arg1 = arg1; in sun4m_cross_call() 235 ccall_info.func(ccall_info.arg1, ccall_info.arg2, ccall_info.arg3, in smp4m_cross_call_irq()
|
D | sun4d_smp.c | 271 unsigned long arg1; member 283 static void sun4d_cross_call(smpfunc_t func, cpumask_t mask, unsigned long arg1, in sun4d_cross_call() argument 299 register unsigned long a1 asm("i1") = arg1; in sun4d_cross_call() 358 ccall_info.func(ccall_info.arg1, ccall_info.arg2, ccall_info.arg3, in smp4d_cross_call_irq()
|
D | leon_smp.c | 364 unsigned long arg1; member 376 static void leon_cross_call(smpfunc_t func, cpumask_t mask, unsigned long arg1, in leon_cross_call() argument 389 register unsigned long a1 asm("i1") = arg1; in leon_cross_call() 451 ccall_info.func(ccall_info.arg1, ccall_info.arg2, ccall_info.arg3, in leon_cross_call_irq()
|
D | head_64.S | 173 stx %l2, [%sp + 2047 + 128 + 0x18] ! arg1, 0 198 stx %l4, [%sp + 2047 + 128 + 0x18] ! arg1, prom_root_node 221 stx %l2, [%sp + 2047 + 128 + 0x18] ! arg1, "/chosen" 241 stx %l4, [%sp + 2047 + 128 + 0x18] ! arg1, chosen_node 261 stx %l2, [%sp + 2047 + 128 + 0x18] ! arg1: "translate" 296 stx %l3, [%sp + 2047 + 128 + 0x18] ! arg1: "map" 348 stx %l2, [%sp + 2047 + 128 + 0x18] ! arg1, "/cpu" 370 stx %l4, [%sp + 2047 + 128 + 0x18] ! arg1, cpu_node
|
D | irq_64.c | 294 void *arg1, void *arg2) in irq_install_pre_handler() argument
|
D | entry.S | 797 add %sp, STACKFRAME_SZ, %o0 ! arg1 = pt_regs ptr 888 mov %fp, %o1 ! arg1: usp
|
/linux-4.4.14/tools/testing/selftests/x86/ |
D | ptrace_syscall.c | 43 uint32_t nr, arg0, arg1, arg2, arg3, arg4, arg5; member 60 "+b" (args->arg0), "+c" (args->arg1), "+d" (args->arg2), in do_full_int80() 130 .arg0 = 10, .arg1 = 11, .arg2 = 12, in test_sys32_regs() 137 args.arg0 != 10 || args.arg1 != 11 || args.arg2 != 12 || in test_sys32_regs() 149 args.arg1 = SIGUSR1; in test_sys32_regs() 152 args.arg0 != getpid() || args.arg1 != SIGUSR1 || args.arg2 != 12 || in test_sys32_regs()
|
/linux-4.4.14/arch/ia64/kernel/ |
D | sal.c | 358 ia64_sal_oemcall(struct ia64_sal_retval *isrvp, u64 oemfunc, u64 arg1, in ia64_sal_oemcall() argument 363 SAL_CALL(*isrvp, oemfunc, arg1, arg2, arg3, arg4, arg5, arg6, arg7); in ia64_sal_oemcall() 369 ia64_sal_oemcall_nolock(struct ia64_sal_retval *isrvp, u64 oemfunc, u64 arg1, in ia64_sal_oemcall_nolock() argument 375 SAL_CALL_NOLOCK(*isrvp, oemfunc, arg1, arg2, arg3, arg4, arg5, arg6, in ia64_sal_oemcall_nolock() 383 u64 arg1, u64 arg2, u64 arg3, u64 arg4, u64 arg5, in ia64_sal_oemcall_reentrant() argument 388 SAL_CALL_REENTRANT(*isrvp, oemfunc, arg1, arg2, arg3, arg4, arg5, arg6, in ia64_sal_oemcall_reentrant()
|
D | esi.c | 102 u64 arg1, u64 arg2, u64 arg3, u64 arg4, u64 arg5, u64 arg6, in ia64_esi_call() argument 133 *isrvp = (*esi_proc)(func, arg1, arg2, arg3, in ia64_esi_call() 153 u64 func, u64 arg1, u64 arg2, u64 arg3, u64 arg4, in ia64_esi_call_phys() argument 179 esi_params[1] = arg1; in ia64_esi_call_phys()
|
D | brl_emu.c | 18 unsigned long fkt, arg1, arg2, arg3; member 154 rv.arg1 = next_ip; in ia64_emulate_brl()
|
D | sigframe.h | 14 unsigned long arg1; /* siginfo pointer */ member
|
D | traps.c | 392 unsigned long fkt, arg1, arg2, arg3; member 396 ia64_illegal_op_fault (unsigned long ec, long arg1, long arg2, long arg3, in ia64_illegal_op_fault() argument
|
D | asm-offsets.c | 197 DEFINE(IA64_SIGFRAME_ARG1_OFFSET, offsetof (struct sigframe, arg1)); in foo()
|
D | signal.c | 359 err |= __put_user(&frame->info, &frame->arg1); in setup_frame()
|
D | ptrace.c | 1209 syscall_trace_enter (long arg0, long arg1, long arg2, long arg3, in syscall_trace_enter() argument 1222 audit_syscall_entry(regs.r15, arg0, arg1, arg2, arg3); in syscall_trace_enter() 1230 syscall_trace_leave (long arg0, long arg1, long arg2, long arg3, in syscall_trace_leave() argument
|
/linux-4.4.14/Documentation/trace/ |
D | uprobetracer.txt | 114 p:uprobes/zfree_entry /bin/zsh:0x00046420 arg1=%ip arg2=%ax 115 r:uprobes/zfree_exit /bin/zsh:0x00046420 arg1=%ip arg2=%ax 130 field:u32 arg1; offset:16; size:4; signed:0; 133 print fmt: "(%lx) arg1=%lx arg2=%lx", REC->__probe_ip, REC->arg1, REC->arg2 152 zsh-24842 [006] 258544.995456: zfree_entry: (0x446420) arg1=446420 arg2=79 153 … zsh-24842 [007] 258545.000270: zfree_exit: (0x446540 <- 0x446420) arg1=446540 arg2=0 154 zsh-24842 [002] 258545.043929: zfree_entry: (0x446420) arg1=446420 arg2=79 155 … zsh-24842 [004] 258547.046129: zfree_exit: (0x446540 <- 0x446420) arg1=446540 arg2=0
|
/linux-4.4.14/drivers/net/ethernet/qlogic/netxen/ |
D | netxen_nic_ctx.c | 63 NXWR32(adapter, NX_ARG1_CRB_OFFSET, cmd->req.arg1); in netxen_issue_cmd() 91 if (cmd->rsp.arg1) in netxen_issue_cmd() 92 cmd->rsp.arg1 = NXRD32(adapter, NX_ARG1_CRB_OFFSET); in netxen_issue_cmd() 141 cmd.req.arg1 = LSD(md_template_addr); in netxen_get_minidump_template() 245 cmd.req.arg1 = recv_ctx->context_id; in nx_fw_cmd_set_mtu() 266 cmd.req.arg1 = speed; in nx_fw_cmd_set_gbe_port() 368 cmd.req.arg1 = (u32)(phys_addr >> 32); in nx_fw_cmd_create_rx_ctx() 424 cmd.req.arg1 = recv_ctx->context_id; in nx_fw_cmd_destroy_rx_ctx() 495 cmd.req.arg1 = (u32)(phys_addr >> 32); in nx_fw_cmd_create_tx_ctx() 531 cmd.req.arg1 = adapter->tx_context_id; in nx_fw_cmd_destroy_tx_ctx() [all …]
|
D | netxen_nic.h | 691 u32 arg1; member
|
/linux-4.4.14/arch/x86/math-emu/ |
D | fpu_emu.h | 192 asmlinkage int FPU_u_sub(FPU_REG const *arg1, FPU_REG const *arg2, 195 asmlinkage int FPU_u_mul(FPU_REG const *arg1, FPU_REG const *arg2, 198 asmlinkage int FPU_u_div(FPU_REG const *arg1, FPU_REG const *arg2, 200 asmlinkage int FPU_u_add(FPU_REG const *arg1, FPU_REG const *arg2,
|
D | poly.h | 62 static inline unsigned long mul_32_32(const unsigned long arg1, in mul_32_32() argument 67 :"0"(arg1), "g"(arg2) in mul_32_32()
|
/linux-4.4.14/drivers/staging/unisys/visorinput/ |
D | visorinput.c | 543 scancode = r.activity.arg1; in visorinput_channel_interrupt() 565 xmotion = r.activity.arg1; in visorinput_channel_interrupt() 572 button = calc_button(r.activity.arg1); in visorinput_channel_interrupt() 579 button = calc_button(r.activity.arg1); in visorinput_channel_interrupt() 586 button = calc_button(r.activity.arg1); in visorinput_channel_interrupt() 596 button = calc_button(r.activity.arg1); in visorinput_channel_interrupt() 607 zmotion = r.activity.arg1; in visorinput_channel_interrupt() 612 zmotion = r.activity.arg1; in visorinput_channel_interrupt()
|
D | ultrainputreport.h | 64 u16 arg1; member
|
/linux-4.4.14/arch/arm/firmware/ |
D | trusted_foundations.c | 34 static void __naked tf_generic_smc(u32 type, u32 arg1, u32 arg2) in tf_generic_smc() argument 47 : "r" (type), "r" (arg1), "r" (arg2) in tf_generic_smc()
|
/linux-4.4.14/arch/tile/include/hv/ |
D | drv_xgbe_intf.h | 183 uint32_t arg1, uint32_t arg2); 185 int __netio_fastio4(uint32_t fastio_index, uint32_t arg0, uint32_t arg1, 188 int __netio_fastio6(uint32_t fastio_index, uint32_t arg0, uint32_t arg1, 191 int __netio_fastio9(uint32_t fastio_index, uint32_t arg0, uint32_t arg1,
|
/linux-4.4.14/drivers/net/fddi/skfp/h/ |
D | targetos.h | 67 #define FDDI_TRACE(string, arg1, arg2, arg3) // Performance analysis. argument 69 #define NDD_TRACE(string, arg1, arg2, arg3) // Performance analysis. argument
|
/linux-4.4.14/arch/frv/include/asm/ |
D | math-emu.h | 230 .macro movestack nr,arg1,arg2,arg3,arg4,arg5 233 move.l \arg1,-(%sp) 237 .macro printf bit=-1,string,nr=0,arg1,arg2,arg3,arg4,arg5 255 movestack \nr,\arg1,\arg2,\arg3,\arg4,\arg5
|
/linux-4.4.14/drivers/lguest/x86/ |
D | core.c | 635 load_guest_gdt_entry(cpu, args->arg1, args->arg2, args->arg3); in lguest_arch_do_hcall() 638 load_guest_idt_entry(cpu, args->arg1, args->arg2, args->arg3); in lguest_arch_do_hcall() 641 guest_load_tls(cpu, args->arg1); in lguest_arch_do_hcall() 659 if (!lguest_address_ok(cpu->lg, cpu->hcall->arg1, in lguest_arch_init_hypercalls() 670 cpu->lg->lguest_data = cpu->lg->mem_base + cpu->hcall->arg1; in lguest_arch_init_hypercalls()
|
/linux-4.4.14/arch/sh/kernel/ |
D | sh_bios.c | 28 static inline long sh_bios_call(long func, long arg0, long arg1, long arg2, in sh_bios_call() argument 33 register long r5 __asm__("r5") = arg1; in sh_bios_call()
|
/linux-4.4.14/arch/x86/kernel/ |
D | irq_32.c | 74 u32 *isp, *prev_esp, arg1; in execute_on_irq_stack() local 100 : "=a" (arg1), "=b" (isp) in execute_on_irq_stack()
|
/linux-4.4.14/fs/ |
D | filesystems.c | 184 SYSCALL_DEFINE3(sysfs, int, option, unsigned long, arg1, unsigned long, arg2) in SYSCALL_DEFINE3() argument 190 retval = fs_index((const char __user *) arg1); in SYSCALL_DEFINE3() 194 retval = fs_name(arg1, (char __user *) arg2); in SYSCALL_DEFINE3()
|
/linux-4.4.14/drivers/net/ethernet/ibm/ehea/ |
D | ehea_phyp.c | 50 unsigned long arg1, in ehea_plpar_hcall_norets() argument 62 ret = plpar_hcall_norets(opcode, arg1, arg2, arg3, arg4, in ehea_plpar_hcall_norets() 76 arg1, arg2, arg3, arg4, arg5, arg6, arg7); in ehea_plpar_hcall_norets() 86 unsigned long arg1, in ehea_plpar_hcall9() argument 102 arg1, arg2, arg3, arg4, arg5, in ehea_plpar_hcall9() 126 arg1, arg2, arg3, arg4, arg5, in ehea_plpar_hcall9()
|
/linux-4.4.14/drivers/staging/rdma/ehca/ |
D | hcp_if.c | 94 unsigned long arg1, in ehca_plpar_hcall_norets() argument 108 opcode, arg1, arg2, arg3, arg4, arg5, arg6, arg7); in ehca_plpar_hcall_norets() 115 ret = plpar_hcall_norets(opcode, arg1, arg2, arg3, arg4, in ehca_plpar_hcall_norets() 129 opcode, ret, arg1, arg2, arg3, in ehca_plpar_hcall_norets() 143 unsigned long arg1, in ehca_plpar_hcall9() argument 159 arg1, arg2, arg3, arg4, arg5, in ehca_plpar_hcall9() 168 arg1, arg2, arg3, arg4, arg5, in ehca_plpar_hcall9() 182 opcode, arg1, arg2, arg3, arg4, arg5, in ehca_plpar_hcall9()
|
/linux-4.4.14/drivers/net/ethernet/qlogic/qed/ |
D | qed_init_ops.c | 379 u8 arg1, arg2, tree_val; in qed_init_cmd_mode_match() local 387 arg1 = qed_init_cmd_mode_match(p_hwfn, offset, modes); in qed_init_cmd_mode_match() 389 return arg1 | arg2; in qed_init_cmd_mode_match() 391 arg1 = qed_init_cmd_mode_match(p_hwfn, offset, modes); in qed_init_cmd_mode_match() 393 return arg1 & arg2; in qed_init_cmd_mode_match()
|
/linux-4.4.14/arch/ia64/hp/sim/ |
D | hpsim_ssc.h | 34 extern long ia64_ssc (long arg0, long arg1, long arg2, long arg3, int nr);
|
/linux-4.4.14/arch/ia64/hp/sim/boot/ |
D | ssc.h | 33 extern long ssc (long arg0, long arg1, long arg2, long arg3, int nr);
|
/linux-4.4.14/arch/arm/mach-exynos/ |
D | smc.h | 33 extern void exynos_smc(u32 cmd, u32 arg1, u32 arg2, u32 arg3);
|
/linux-4.4.14/Documentation/filesystems/ |
D | autofs4-mount-control.txt | 182 __u32 arg1; /* Command parameters */ 195 The fields arg1 and arg2 are used to communicate parameters and results of 248 and sets the requested version number in structure field arg1. These 259 as the arg1 field set to the device number of the autofs mount. The 275 call and the arg1 field set to the wait queue token number, received 293 the arg1 field set to descriptor of the pipe. On success the call 326 appropriately as well as the arg1 field set to the device number of the 327 containing autofs mount. Upon return the struct field arg1 contains the 346 requested by setting the arg1 field to 1. If no expire candidates can 360 it returns the result in the arg1 field, 1 for busy and 0 otherwise. [all …]
|
/linux-4.4.14/drivers/gpu/drm/nouveau/ |
D | nouveau_chan.h | 45 u32 arg0, u32 arg1, struct nouveau_channel **);
|
D | nouveau_drm.c | 161 u32 arg0, arg1; in nouveau_accel_init() local 219 arg1 = 1; in nouveau_accel_init() 230 arg1 = NvDmaTT; in nouveau_accel_init() 233 arg1 = NvDmaTT; in nouveau_accel_init() 236 ret = nouveau_channel_new(drm, &drm->device, arg0, arg1, &drm->channel); in nouveau_accel_init()
|
D | nouveau_chan.c | 401 u32 arg0, u32 arg1, struct nouveau_channel **pchan) in nouveau_channel_new() argument 421 ret = nouveau_channel_init(*pchan, arg0, arg1); in nouveau_channel_new()
|
/linux-4.4.14/arch/arm/mach-omap1/ |
D | pm.c | 210 unsigned long arg0 = 0, arg1 = 0; in omap1_pm_suspend() local 330 arg1 = arm_sleep_save[ARM_SLEEP_SAVE_ARM_IDLECT2]; in omap1_pm_suspend() 338 omap_sram_suspend(arg0, arg1); in omap1_pm_suspend()
|
/linux-4.4.14/arch/powerpc/include/asm/ |
D | ps3stor.h | 69 u64 arg1, u64 arg2, u64 arg3, u64 arg4);
|
/linux-4.4.14/drivers/leds/ |
D | dell-led.c | 48 u32 arg1; member 155 args.arg1 = token->location; in dell_micmute_led_set()
|
/linux-4.4.14/drivers/firmware/ |
D | qcom_scm-32.c | 322 static s32 qcom_scm_call_atomic1(u32 svc, u32 cmd, u32 arg1) in qcom_scm_call_atomic1() argument 328 register u32 r2 asm("r2") = arg1; in qcom_scm_call_atomic1()
|
/linux-4.4.14/arch/arm/vfp/ |
D | vfphw.S | 54 .macro DBGSTR3, str, arg1, arg2, arg3 59 mov r1, \arg1
|
/linux-4.4.14/drivers/pnp/pnpbios/ |
D | bioscalls.c | 80 static inline u16 call_pnp_bios(u16 func, u16 arg1, u16 arg2, u16 arg3, in call_pnp_bios() argument 129 :"0"((func) | (((u32) arg1) << 16)), in call_pnp_bios()
|
/linux-4.4.14/include/linux/crush/ |
D | crush.h | 43 __s32 arg1; member
|
/linux-4.4.14/drivers/ps3/ |
D | ps3stor_lib.c | 326 u64 ps3stor_send_command(struct ps3_storage_device *dev, u64 cmd, u64 arg1, in ps3stor_send_command() argument 336 res = lv1_storage_send_device_command(dev->sbd.dev_id, cmd, arg1, in ps3stor_send_command()
|
/linux-4.4.14/drivers/scsi/qla4xxx/ |
D | ql4_83xx.c | 923 qla4_83xx_wr_reg_indirect(ha, p_entry->arg1, p_entry->arg2); in qla4_83xx_write_list() 939 qla4_83xx_read_write_crb_reg(ha, p_entry->arg1, p_entry->arg2); in qla4_83xx_read_write_list() 965 qla4_83xx_poll_reg(ha, p_entry->arg1, delay, in qla4_83xx_poll_list() 971 if (qla4_83xx_poll_reg(ha, p_entry->arg1, delay, in qla4_83xx_poll_list() 974 qla4_83xx_rd_reg_indirect(ha, p_entry->arg1, in qla4_83xx_poll_list() 1028 qla4_83xx_rmw_crb_reg(ha, p_entry->arg1, p_entry->arg2, in qla4_83xx_read_modify_write()
|
D | ql4_83xx.h | 217 __le32 arg1; member
|
/linux-4.4.14/drivers/platform/x86/ |
D | fujitsu-laptop.c | 212 static int call_fext_func(int cmd, int arg0, int arg1, int arg2) in call_fext_func() argument 234 params[2].integer.value = arg1; in call_fext_func() 241 cmd, arg0, arg1, arg2); in call_fext_func() 247 cmd, arg0, arg1, arg2, (int)value); in call_fext_func()
|
D | asus-wmi.c | 163 u32 arg1; member 290 static int asus_wmi_evaluate_method(u32 method_id, u32 arg0, u32 arg1, in asus_wmi_evaluate_method() argument 295 .arg1 = arg1, in asus_wmi_evaluate_method() 1906 .arg1 = asus->debug.ctrl_param, in show_call()
|
/linux-4.4.14/drivers/net/wireless/ath/wcn36xx/ |
D | smd.h | 112 int wcn36xx_smd_dump_cmd_req(struct wcn36xx *wcn, u32 arg1, u32 arg2,
|
D | smd.c | 1724 int wcn36xx_smd_dump_cmd_req(struct wcn36xx *wcn, u32 arg1, u32 arg2, in wcn36xx_smd_dump_cmd_req() argument 1733 msg_body.arg1 = arg1; in wcn36xx_smd_dump_cmd_req()
|
D | hal.h | 3726 u32 arg1; member
|
/linux-4.4.14/arch/sh/lib64/ |
D | strcpy.S | 4 ! arg1: source
|
/linux-4.4.14/arch/m32r/platforms/m32700ut/ |
D | dot.gdbinit_400MHz_32MB | 88 set $nr_entries = $arg1 112 set $nr_entries = $arg1
|
D | dot.gdbinit_200MHz_16MB | 88 set $nr_entries = $arg1 112 set $nr_entries = $arg1
|
D | dot.gdbinit_300MHz_32MB | 88 set $nr_entries = $arg1 112 set $nr_entries = $arg1
|
/linux-4.4.14/include/xen/interface/ |
D | xen.h | 364 } arg1; member
|
/linux-4.4.14/drivers/net/ethernet/toshiba/ |
D | ps3_gelic_wireless.c | 160 u64 arg1, arg2; in gelic_eurus_sync_cmd_worker() local 170 arg1 = (cmd->buffer) ? in gelic_eurus_sync_cmd_worker() 175 arg1 = 0; in gelic_eurus_sync_cmd_worker() 182 cmd->cmd, arg1, arg2, in gelic_eurus_sync_cmd_worker() 193 arg1 = ps3_mm_phys_to_lpar(__pa(cmd->buffer)); in gelic_eurus_sync_cmd_worker() 196 arg1 = 0; in gelic_eurus_sync_cmd_worker() 202 cmd->tag, arg1, arg2, in gelic_eurus_sync_cmd_worker() 207 cmd->tag, arg1, arg2); in gelic_eurus_sync_cmd_worker()
|
/linux-4.4.14/Documentation/vm/ |
D | hwpoison.txt | 82 arg1: PR_MCE_KILL_CLEAR: Revert to system default 83 arg1: PR_MCE_KILL_SET: arg2 defines thread specific mode
|
/linux-4.4.14/tools/testing/selftests/futex/ |
D | README | 43 Arguments: arg1=val1 #units specified for clarity where appropriate
|
/linux-4.4.14/arch/mips/cavium-octeon/ |
D | smp.c | 303 extern void kernel_entry(unsigned long arg1, ...);
|
/linux-4.4.14/drivers/pinctrl/sh-pfc/ |
D | pfc-r8a7778.c | 1281 #define SH_PFC_MUX1(name, arg1) \ argument 1282 static const unsigned int name ##_mux[] = { arg1##_MARK } 1283 #define SH_PFC_MUX2(name, arg1, arg2) \ argument 1284 static const unsigned int name ##_mux[] = { arg1##_MARK, arg2##_MARK, } 1285 #define SH_PFC_MUX3(name, arg1, arg2, arg3) \ argument 1286 static const unsigned int name ##_mux[] = { arg1##_MARK, arg2##_MARK, \ 1288 #define SH_PFC_MUX4(name, arg1, arg2, arg3, arg4) \ argument 1289 static const unsigned int name ##_mux[] = { arg1##_MARK, arg2##_MARK, \ 1291 #define SH_PFC_MUX8(name, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) \ argument 1292 static const unsigned int name ##_mux[] = { arg1##_MARK, arg2##_MARK, \
|
/linux-4.4.14/drivers/net/wireless/rt2x00/ |
D | rt2800lib.h | 156 const u8 arg0, const u8 arg1);
|
D | rt61pci.c | 147 const u8 arg0, const u8 arg1) in rt61pci_mcu_request() argument 161 rt2x00_set_field32(®, H2M_MAILBOX_CSR_ARG1, arg1); in rt61pci_mcu_request()
|
D | rt2800lib.c | 433 const u8 arg0, const u8 arg1) in rt2800_mcu_request() argument 453 rt2x00_set_field32(®, H2M_MAILBOX_CSR_ARG1, arg1); in rt2800_mcu_request()
|
/linux-4.4.14/arch/x86/xen/ |
D | mmu.c | 734 op.arg1.mfn = pfn_to_mfn(pfn); in xen_do_pin() 1102 op.arg1.mfn = pfn_to_mfn(pfn); in pin_pagetable_pfn() 1365 op->arg1.linear_addr = addr & PAGE_MASK; in xen_flush_tlb_single() 1403 args->op.arg1.linear_addr = start; in xen_flush_tlb_others() 1436 op.arg1.mfn = mfn; in __xen_write_cr3() 1654 op->arg1.mfn = pfn_to_mfn(pfn); in __pin_pagetable_pfn()
|
D | enlighten.c | 581 op->arg1.linear_addr = (unsigned long)addr; in xen_set_ldt()
|
/linux-4.4.14/arch/m68k/kernel/ |
D | head.S | 428 .macro move_stack nr,arg1,arg2,arg3,arg4 431 movel \arg1,%sp@- 436 .macro \name arg1,arg2,arg3,arg4 437 move_stack \nr,\arg1,\arg2,\arg3,\arg4 459 .macro mmu_map_eq arg1,arg2,arg3 460 mmu_map \arg1,\arg1,\arg2,\arg3
|
/linux-4.4.14/drivers/misc/ |
D | vmw_balloon.c | 200 #define VMWARE_BALLOON_CMD(cmd, arg1, arg2, result) \ argument 212 "3"(arg1), \
|
/linux-4.4.14/drivers/scsi/qla2xxx/ |
D | qla_nx2.h | 261 uint32_t arg1; member
|
D | qla_nx2.c | 600 qla8044_wr_reg_indirect(vha, p_entry->arg1, p_entry->arg2); in qla8044_write_list() 626 qla8044_read_write_crb_reg(vha, p_entry->arg1, in qla8044_read_write_list() 721 qla8044_poll_reg(vha, p_entry->arg1, in qla8044_poll_list() 727 p_entry->arg1, delay, in qla8044_poll_list() 736 p_entry->arg1, &value); in qla8044_poll_list() 816 qla8044_rmw_crb_reg(vha, p_entry->arg1, in qla8044_read_modify_write()
|
/linux-4.4.14/arch/m32r/platforms/mappi/ |
D | dot.gdbinit | 124 set $nr_entries = $arg1
|
D | dot.gdbinit.nommu | 124 set $nr_entries = $arg1
|
/linux-4.4.14/arch/sh/kernel/cpu/sh3/ |
D | entry.S | 498 mov r15, r5 ! pass saved registers as arg1
|
/linux-4.4.14/arch/s390/kernel/ |
D | compat_wrapper.c | 96 COMPAT_SYSCALL_WRAP3(sysfs, int, option, unsigned long, arg1, unsigned long, arg2);
|
/linux-4.4.14/drivers/acpi/acpica/ |
D | dbtest.c | 124 store(arg1, arg0)
|
/linux-4.4.14/drivers/message/fusion/ |
D | mptbase.h | 271 u32 arg1; member
|
D | mptbase.c | 913 mf->u.frame.linkage.arg1 = 0; in mpt_get_msg_frame() 1030 if (cpu_to_le32(mf->u.frame.linkage.arg1) == 0xdeadbeaf) in mpt_free_msg_frame() 1033 mf->u.frame.linkage.arg1 = cpu_to_le32(0xdeadbeaf); in mpt_free_msg_frame()
|
D | mptscsih.c | 608 (le32_to_cpu(mf->u.frame.linkage.arg1) == 0xdeadbeaf)) in mptscsih_io_done()
|
/linux-4.4.14/sound/oss/ |
D | waveartist.c | 341 unsigned int arg1, unsigned int arg2) in waveartist_cmd3() argument 346 vals[1] = arg1; in waveartist_cmd3()
|
/linux-4.4.14/Documentation/ |
D | kernel-doc-nano-HOWTO.txt | 56 * @arg1: Describe the first argument to foobar.
|
/linux-4.4.14/arch/cris/arch-v10/kernel/ |
D | entry.S | 571 move.d [$r10+TASK_pid], $r10 ; current->pid as arg1.
|
/linux-4.4.14/scripts/ |
D | checkpatch.pl | 5345 my $arg1 = $3; 5358 "$call() should probably be ${call}_t($cast, $arg1, $arg2)\n" . "$here\n$stat\n");
|
/linux-4.4.14/include/linux/ |
D | syscalls.h | 700 unsigned long arg1, unsigned long arg2);
|
/linux-4.4.14/net/ceph/ |
D | osdmap.c | 328 r->steps[j].arg1 = ceph_decode_32(p); in crush_decode()
|
/linux-4.4.14/drivers/scsi/lpfc/ |
D | lpfc_hbadisc.c | 770 lpfc_workq_post_event(struct lpfc_hba *phba, void *arg1, void *arg2, in lpfc_workq_post_event() argument 784 evtp->evt_arg1 = arg1; in lpfc_workq_post_event()
|
/linux-4.4.14/Documentation/networking/ |
D | filter.txt | 782 In-kernel functions foo() and bar() with prototype: u64 (*)(u64 arg1, u64
|
/linux-4.4.14/fs/nfs/ |
D | nfs4proc.c | 8688 nfs_alloc_no_seqid(struct nfs_seqid_counter *arg1, gfp_t arg2) in nfs_alloc_no_seqid() argument
|