Lines Matching refs:ret
17 long ret; in stub_syscall0() local
19 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall)); in stub_syscall0()
21 return ret; in stub_syscall0()
26 long ret; in stub_syscall1() local
28 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1)); in stub_syscall1()
30 return ret; in stub_syscall1()
35 long ret; in stub_syscall2() local
37 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall2()
40 return ret; in stub_syscall2()
45 long ret; in stub_syscall3() local
47 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall3()
50 return ret; in stub_syscall3()
56 long ret; in stub_syscall4() local
58 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall4()
61 return ret; in stub_syscall4()
67 long ret; in stub_syscall5() local
69 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall5()
72 return ret; in stub_syscall5()