Home
last modified time | relevance | path

Searched refs:arg1 (Results 1 – 133 of 133) sorted by relevance

/linux-4.1.27/arch/m68k/include/asm/
Dlinkage.h21 #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 …]
Dmath-emu.h245 .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.1.27/arch/x86/include/asm/
Dlinkage.h29 #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 …]
Dparavirt_types.h618 #define PVOP_CALL1(rettype, op, arg1) \ argument
619 __PVOP_CALL(rettype, op, "", "", PVOP_CALL_ARG1(arg1))
620 #define PVOP_VCALL1(op, arg1) \ argument
621 __PVOP_VCALL(op, "", "", PVOP_CALL_ARG1(arg1))
623 #define PVOP_CALLEE1(rettype, op, arg1) \ argument
624 __PVOP_CALLEESAVE(rettype, op, "", "", PVOP_CALL_ARG1(arg1))
625 #define PVOP_VCALLEE1(op, arg1) \ argument
626 __PVOP_VCALLEESAVE(op, "", "", PVOP_CALL_ARG1(arg1))
629 #define PVOP_CALL2(rettype, op, arg1, arg2) \ argument
630 __PVOP_CALL(rettype, op, "", "", PVOP_CALL_ARG1(arg1), \
[all …]
Dlguest_hcall.h48 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.1.27/arch/cris/include/arch-v10/arch/
Dunistd.h26 #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.1.27/arch/cris/include/arch-v32/arch/
Dunistd.h27 #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.1.27/arch/ia64/include/asm/
Dparavirt_privop.h315 #define PARAVIRT_BR1(op, type, arg1) \ argument
316 register unsigned long __##arg1 asm ("r8") = arg1; \
321 : PARAVIRT_OP(op), "0"(__##arg1) \
324 #define PARAVIRT_BR1_RET(op, type, arg1) \ argument
326 register unsigned long __##arg1 asm ("r8") = arg1; \
330 : PARAVIRT_OP(op), "0"(__##arg1) \
333 #define PARAVIRT_BR1_VOID(op, type, arg1) \ argument
334 register void *__##arg1 asm ("r8") = arg1; \
339 : PARAVIRT_OP(op), "0"(__##arg1) \
342 #define PARAVIRT_BR2(op, type, arg1, arg2) \ argument
[all …]
/linux-4.1.27/arch/x86/um/shared/sysdep/
Dstub_32.h24 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()
Dstub_64.h29 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.1.27/arch/parisc/include/asm/
Dunistd.h112 #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 …]
Dasmregs.h27 arg1: .reg %r25
/linux-4.1.27/arch/sparc/include/asm/
Dsmp_32.h59 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()
Dirq_64.h44 void *arg1, void *arg2);
/linux-4.1.27/arch/parisc/kernel/
Dreal2.S80 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 …]
Dpacache.S84 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 …]
Dhpmc.S156 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 */
Dperf_asm.S105 ;* 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
Dhead.S68 stw,ma %arg1,4(%r1)
199 ldo PDC_PSW_SET_DEFAULTS(%r0),%arg1 /* 2 */
Dentry.S1985 copy %ret1, %arg1
2016 LDREG 16(%arg1), %arg1
2017 bve,l (%arg1), %rp
2029 bb,>=,n %arg1, 30, 1f
2030 depwi 0,31,2, %arg1
2031 LDREG 0(%arg1), %arg1
2033 be,l 0(%sr4,%arg1), %sr0, %r31
Dfirmware.c1409 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.1.27/drivers/lguest/
Dhypercalls.c68 __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.1.27/arch/tile/include/uapi/arch/
Dsim.h231 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.1.27/arch/x86/crypto/sha-mb/
Dsha1_x8_avx2.S221 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 …]
Dsha1_mb_mgr_submit_avx2.S62 arg1 = %rdi define
69 #define state arg1
175 # "state" and "args" are the same address, arg1
Dsha1_mb_mgr_flush_avx2.S61 #define arg1 %rdi macro
65 #define state arg1
84 #define tmp3 %arg1
201 # "state" and "args" are the same address, arg1
/linux-4.1.27/drivers/net/ethernet/qlogic/qlcnic/
Dqlcnic_ctx.c180 u32 arg1, arg2, arg3; in qlcnic_fw_cmd_set_drv_version() local
193 memcpy(&arg1, drv_string, sizeof(u32)); in qlcnic_fw_cmd_set_drv_version()
197 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 …]
Dqlcnic_83xx_init.c110 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()
Dqlcnic_83xx_hw.c2012 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.1.27/arch/arm/mach-bcm/
Dbcm_kona_smc.c30 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()
Dbcm_kona_smc.h28 unsigned arg1,
/linux-4.1.27/arch/mips/include/asm/
Dkvm_para.h47 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.1.27/arch/x86/crypto/
Daesni-intel_avx-x86_64.S183 #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 …]
Daesni-intel_asm.S93 #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 …]
Dcrct10dif-pcl-asm_64.S65 #define arg1 %rdi macro
Dsalsa20-x86_64-asm_64.S9 # x = arg1
816 # x = arg1
903 # x = arg1
Dsalsa20-i586-asm_32.S25 # x = arg1
959 # x = arg1
1083 # x = arg1
Dsha512-avx-asm.S93 # Input message (arg1)
Dsha512-ssse3-asm.S90 # Input message (arg1)
/linux-4.1.27/arch/alpha/include/asm/
Dpal.h41 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.1.27/arch/mips/kernel/
Dsyscall.c202 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()
Drelocate_kernel.S18 PTR_L a1, arg1
154 arg1: PTR 0x0 label
/linux-4.1.27/arch/arm/mach-omap2/
Domap-secure.c37 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()
Domap-secure.h62 u32 arg1, u32 arg2, u32 arg3, u32 arg4);
69 u32 arg1, u32 arg2, u32 arg3, u32 arg4);
/linux-4.1.27/arch/x86/lguest/
Dboot.c108 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.1.27/arch/sparc/kernel/
Dsun4m_smp.c160 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()
Dsun4d_smp.c271 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()
Dleon_smp.c364 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()
Dhead_64.S173 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
Dentry.S797 add %sp, STACKFRAME_SZ, %o0 ! arg1 = pt_regs ptr
888 mov %fp, %o1 ! arg1: usp
Dirq_64.c294 void *arg1, void *arg2) in irq_install_pre_handler() argument
/linux-4.1.27/arch/ia64/kernel/
Dsal.c358 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()
Desi.c102 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()
Dbrl_emu.c18 unsigned long fkt, arg1, arg2, arg3; member
154 rv.arg1 = next_ip; in ia64_emulate_brl()
Dsigframe.h14 unsigned long arg1; /* siginfo pointer */ member
Dtraps.c392 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
Dparavirt.c85 unsigned long arg1) \
87 ia64_native_ ## name(arg0, arg1); \
326 unsigned long arg1); \
Dasm-offsets.c197 DEFINE(IA64_SIGFRAME_ARG1_OFFSET, offsetof (struct sigframe, arg1)); in foo()
Dsignal.c359 err |= __put_user(&frame->info, &frame->arg1); in setup_frame()
Dptrace.c1209 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.1.27/Documentation/trace/
Duprobetracer.txt114 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.1.27/net/ceph/crush/
Dmapper.c793 w[0] = curstep->arg1; in crush_do_rule()
798 if (curstep->arg1 > 0) in crush_do_rule()
799 choose_tries = curstep->arg1; in crush_do_rule()
803 if (curstep->arg1 > 0) in crush_do_rule()
804 choose_leaf_tries = curstep->arg1; in crush_do_rule()
808 if (curstep->arg1 >= 0) in crush_do_rule()
809 choose_local_retries = curstep->arg1; in crush_do_rule()
813 if (curstep->arg1 >= 0) in crush_do_rule()
814 choose_local_fallback_retries = curstep->arg1; in crush_do_rule()
818 if (curstep->arg1 >= 0) in crush_do_rule()
[all …]
/linux-4.1.27/drivers/net/ethernet/qlogic/netxen/
Dnetxen_nic_ctx.c63 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 …]
Dnetxen_nic.h691 u32 arg1; member
/linux-4.1.27/arch/x86/math-emu/
Dfpu_emu.h192 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,
Dpoly.h62 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.1.27/arch/arm/firmware/
Dtrusted_foundations.c34 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.1.27/arch/tile/include/hv/
Ddrv_xgbe_intf.h183 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.1.27/drivers/net/fddi/skfp/h/
Dtargetos.h67 #define FDDI_TRACE(string, arg1, arg2, arg3) // Performance analysis. argument
69 #define NDD_TRACE(string, arg1, arg2, arg3) // Performance analysis. argument
/linux-4.1.27/arch/frv/include/asm/
Dmath-emu.h230 .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.1.27/drivers/lguest/x86/
Dcore.c635 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.1.27/arch/sh/kernel/
Dsh_bios.c28 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.1.27/fs/
Dfilesystems.c184 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.1.27/arch/x86/kernel/
Dirq_32.c81 u32 *isp, *prev_esp, arg1, arg2; in execute_on_irq_stack() local
107 : "=a" (arg1), "=d" (arg2), "=b" (isp) in execute_on_irq_stack()
Dentry_64.S393 leaq 8(%rsp),%rdi # &ptregs -> arg1
402 movq %rsp,%rdi # &ptregs -> arg1
/linux-4.1.27/drivers/net/ethernet/ibm/ehea/
Dehea_phyp.c50 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.1.27/drivers/infiniband/hw/ehca/
Dhcp_if.c94 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.1.27/arch/ia64/hp/sim/
Dhpsim_ssc.h34 extern long ia64_ssc (long arg0, long arg1, long arg2, long arg3, int nr);
/linux-4.1.27/arch/ia64/hp/sim/boot/
Dssc.h33 extern long ssc (long arg0, long arg1, long arg2, long arg3, int nr);
/linux-4.1.27/arch/arm/mach-exynos/
Dsmc.h33 extern void exynos_smc(u32 cmd, u32 arg1, u32 arg2, u32 arg3);
/linux-4.1.27/Documentation/filesystems/
Dautofs4-mount-control.txt182 __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.1.27/drivers/gpu/drm/nouveau/
Dnouveau_chan.h45 u32 handle, u32 arg0, u32 arg1,
Dnouveau_drm.c149 u32 arg0, arg1; in nouveau_accel_init() local
207 arg1 = 1; in nouveau_accel_init()
218 arg1 = NvDmaTT; in nouveau_accel_init()
221 arg1 = NvDmaTT; in nouveau_accel_init()
224 ret = nouveau_channel_new(drm, &drm->device, NVDRM_CHAN, arg0, arg1, in nouveau_accel_init()
Dnouveau_chan.c395 u32 handle, u32 arg0, u32 arg1, in nouveau_channel_new() argument
416 ret = nouveau_channel_init(*pchan, arg0, arg1); in nouveau_channel_new()
/linux-4.1.27/arch/arm/mach-omap1/
Dpm.c209 unsigned long arg0 = 0, arg1 = 0; in omap1_pm_suspend() local
329 arg1 = arm_sleep_save[ARM_SLEEP_SAVE_ARM_IDLECT2]; in omap1_pm_suspend()
337 omap_sram_suspend(arg0, arg1); in omap1_pm_suspend()
/linux-4.1.27/arch/powerpc/include/asm/
Dps3stor.h69 u64 arg1, u64 arg2, u64 arg3, u64 arg4);
/linux-4.1.27/drivers/leds/
Ddell-led.c48 u32 arg1; member
155 args.arg1 = token->location; in dell_micmute_led_set()
/linux-4.1.27/drivers/firmware/
Dqcom_scm.c330 static s32 qcom_scm_call_atomic1(u32 svc, u32 cmd, u32 arg1) in qcom_scm_call_atomic1() argument
336 register u32 r2 asm("r2") = arg1; in qcom_scm_call_atomic1()
/linux-4.1.27/arch/arm/vfp/
Dvfphw.S54 .macro DBGSTR3, str, arg1, arg2, arg3
59 mov r1, \arg1
/linux-4.1.27/include/linux/crush/
Dcrush.h35 __s32 arg1; member
/linux-4.1.27/drivers/pnp/pnpbios/
Dbioscalls.c80 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.1.27/drivers/ps3/
Dps3stor_lib.c326 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.1.27/arch/arm/crypto/
Dsha512-armv7-neon.S85 rw23q, rw1415q, rw9, rw10, interleave_op, arg1) \ argument
89 interleave_op(arg1); \
196 interleave_op1, arg1, interleave_op2, arg2) \ argument
200 interleave_op1(arg1); \
/linux-4.1.27/drivers/scsi/qla4xxx/
Dql4_83xx.c923 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()
Dql4_83xx.h217 __le32 arg1; member
/linux-4.1.27/drivers/platform/x86/
Dfujitsu-laptop.c211 static int call_fext_func(int cmd, int arg0, int arg1, int arg2) in call_fext_func() argument
233 params[2].integer.value = arg1; in call_fext_func()
240 cmd, arg0, arg1, arg2); in call_fext_func()
246 cmd, arg0, arg1, arg2, (int)value); in call_fext_func()
Dasus-wmi.c155 u32 arg1; member
259 static int asus_wmi_evaluate_method(u32 method_id, u32 arg0, u32 arg1, in asus_wmi_evaluate_method() argument
264 .arg1 = arg1, in asus_wmi_evaluate_method()
1625 .arg1 = asus->debug.ctrl_param, in show_call()
/linux-4.1.27/arch/sh/lib64/
Dstrcpy.S4 ! arg1: source
/linux-4.1.27/drivers/net/wireless/ath/wcn36xx/
Dsmd.h112 int wcn36xx_smd_dump_cmd_req(struct wcn36xx *wcn, u32 arg1, u32 arg2,
Dsmd.c1726 int wcn36xx_smd_dump_cmd_req(struct wcn36xx *wcn, u32 arg1, u32 arg2, in wcn36xx_smd_dump_cmd_req() argument
1735 msg_body.arg1 = arg1; in wcn36xx_smd_dump_cmd_req()
Dhal.h3726 u32 arg1; member
/linux-4.1.27/arch/m32r/platforms/m32700ut/
Ddot.gdbinit_200MHz_16MB88 set $nr_entries = $arg1
112 set $nr_entries = $arg1
Ddot.gdbinit_400MHz_32MB88 set $nr_entries = $arg1
112 set $nr_entries = $arg1
Ddot.gdbinit_300MHz_32MB88 set $nr_entries = $arg1
112 set $nr_entries = $arg1
/linux-4.1.27/include/xen/interface/
Dxen.h362 } arg1; member
/linux-4.1.27/drivers/net/ethernet/toshiba/
Dps3_gelic_wireless.c160 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.1.27/arch/x86/xen/
Dmmu.c733 op.arg1.mfn = pfn_to_mfn(pfn); in xen_do_pin()
1262 op->arg1.linear_addr = addr & PAGE_MASK; in xen_flush_tlb_single()
1300 args->op.arg1.linear_addr = start; in xen_flush_tlb_others()
1333 op.arg1.mfn = mfn; in __xen_write_cr3()
1496 op.arg1.mfn = pfn_to_mfn(pfn); in pin_pagetable_pfn()
1542 op->arg1.mfn = pfn_to_mfn(pfn); in __pin_pagetable_pfn()
Denlighten.c579 op->arg1.linear_addr = (unsigned long)addr; in xen_set_ldt()
/linux-4.1.27/Documentation/vm/
Dhwpoison.txt82 arg1: PR_MCE_KILL_CLEAR: Revert to system default
83 arg1: PR_MCE_KILL_SET: arg2 defines thread specific mode
/linux-4.1.27/arch/mips/cavium-octeon/
Dsmp.c303 extern void kernel_entry(unsigned long arg1, ...);
/linux-4.1.27/drivers/pinctrl/sh-pfc/
Dpfc-r8a7778.c1275 #define SH_PFC_MUX1(name, arg1) \ argument
1276 static const unsigned int name ##_mux[] = { arg1##_MARK }
1277 #define SH_PFC_MUX2(name, arg1, arg2) \ argument
1278 static const unsigned int name ##_mux[] = { arg1##_MARK, arg2##_MARK, }
1279 #define SH_PFC_MUX3(name, arg1, arg2, arg3) \ argument
1280 static const unsigned int name ##_mux[] = { arg1##_MARK, arg2##_MARK, \
1282 #define SH_PFC_MUX4(name, arg1, arg2, arg3, arg4) \ argument
1283 static const unsigned int name ##_mux[] = { arg1##_MARK, arg2##_MARK, \
1285 #define SH_PFC_MUX8(name, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) \ argument
1286 static const unsigned int name ##_mux[] = { arg1##_MARK, arg2##_MARK, \
/linux-4.1.27/drivers/net/wireless/rt2x00/
Drt2800lib.h156 const u8 arg0, const u8 arg1);
Drt61pci.c147 const u8 arg0, const u8 arg1) in rt61pci_mcu_request() argument
161 rt2x00_set_field32(&reg, H2M_MAILBOX_CSR_ARG1, arg1); in rt61pci_mcu_request()
Drt2800lib.c433 const u8 arg0, const u8 arg1) in rt2800_mcu_request() argument
453 rt2x00_set_field32(&reg, H2M_MAILBOX_CSR_ARG1, arg1); in rt2800_mcu_request()
/linux-4.1.27/arch/m68k/kernel/
Dhead.S428 .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.1.27/drivers/scsi/qla2xxx/
Dqla_nx2.h259 uint32_t arg1; member
Dqla_nx2.c601 qla8044_wr_reg_indirect(vha, p_entry->arg1, p_entry->arg2); in qla8044_write_list()
627 qla8044_read_write_crb_reg(vha, p_entry->arg1, in qla8044_read_write_list()
722 qla8044_poll_reg(vha, p_entry->arg1, in qla8044_poll_list()
728 p_entry->arg1, delay, in qla8044_poll_list()
737 p_entry->arg1, &value); in qla8044_poll_list()
817 qla8044_rmw_crb_reg(vha, p_entry->arg1, in qla8044_read_modify_write()
/linux-4.1.27/arch/sh/kernel/cpu/sh3/
Dentry.S498 mov r15, r5 ! pass saved registers as arg1
/linux-4.1.27/arch/m32r/platforms/mappi/
Ddot.gdbinit124 set $nr_entries = $arg1
Ddot.gdbinit.nommu124 set $nr_entries = $arg1
/linux-4.1.27/drivers/message/fusion/
Dmptbase.h271 u32 arg1; member
Dmptbase.c917 mf->u.frame.linkage.arg1 = 0; in mpt_get_msg_frame()
1034 if (cpu_to_le32(mf->u.frame.linkage.arg1) == 0xdeadbeaf) in mpt_free_msg_frame()
1037 mf->u.frame.linkage.arg1 = cpu_to_le32(0xdeadbeaf); in mpt_free_msg_frame()
Dmptscsih.c608 (le32_to_cpu(mf->u.frame.linkage.arg1) == 0xdeadbeaf)) in mptscsih_io_done()
/linux-4.1.27/arch/s390/kernel/
Dcompat_wrapper.c111 COMPAT_SYSCALL_WRAP3(sysfs, int, option, unsigned long, arg1, unsigned long, arg2);
/linux-4.1.27/sound/oss/
Dwaveartist.c341 unsigned int arg1, unsigned int arg2) in waveartist_cmd3() argument
346 vals[1] = arg1; in waveartist_cmd3()
/linux-4.1.27/Documentation/
Dkernel-doc-nano-HOWTO.txt56 * @arg1: Describe the first argument to foobar.
/linux-4.1.27/arch/cris/arch-v10/kernel/
Dentry.S571 move.d [$r10+TASK_pid], $r10 ; current->pid as arg1.
/linux-4.1.27/scripts/
Dcheckpatch.pl5045 my $arg1 = $3;
5058 "$call() should probably be ${call}_t($cast, $arg1, $arg2)\n" . "$here\n$stat\n");
/linux-4.1.27/include/linux/
Dsyscalls.h700 unsigned long arg1, unsigned long arg2);
/linux-4.1.27/net/ceph/
Dosdmap.c328 r->steps[j].arg1 = ceph_decode_32(p); in crush_decode()
/linux-4.1.27/drivers/scsi/lpfc/
Dlpfc_hbadisc.c795 lpfc_workq_post_event(struct lpfc_hba *phba, void *arg1, void *arg2, in lpfc_workq_post_event() argument
809 evtp->evt_arg1 = arg1; in lpfc_workq_post_event()
/linux-4.1.27/Documentation/networking/
Dfilter.txt782 In-kernel functions foo() and bar() with prototype: u64 (*)(u64 arg1, u64
/linux-4.1.27/fs/nfs/
Dnfs4proc.c8531 nfs_alloc_no_seqid(struct nfs_seqid_counter *arg1, gfp_t arg2) in nfs_alloc_no_seqid() argument