Lines Matching refs:__asm__
5 __asm__ __volatile__ ( "svc 0" \
12 register long x8 __asm__("x8") = n; in __syscall0()
13 register long x0 __asm__("x0"); in __syscall0()
19 register long x8 __asm__("x8") = n; in __syscall1()
20 register long x0 __asm__("x0") = a; in __syscall1()
26 register long x8 __asm__("x8") = n; in __syscall2()
27 register long x0 __asm__("x0") = a; in __syscall2()
28 register long x1 __asm__("x1") = b; in __syscall2()
34 register long x8 __asm__("x8") = n; in __syscall3()
35 register long x0 __asm__("x0") = a; in __syscall3()
36 register long x1 __asm__("x1") = b; in __syscall3()
37 register long x2 __asm__("x2") = c; in __syscall3()
43 register long x8 __asm__("x8") = n; in __syscall4()
44 register long x0 __asm__("x0") = a; in __syscall4()
45 register long x1 __asm__("x1") = b; in __syscall4()
46 register long x2 __asm__("x2") = c; in __syscall4()
47 register long x3 __asm__("x3") = d; in __syscall4()
53 register long x8 __asm__("x8") = n; in __syscall5()
54 register long x0 __asm__("x0") = a; in __syscall5()
55 register long x1 __asm__("x1") = b; in __syscall5()
56 register long x2 __asm__("x2") = c; in __syscall5()
57 register long x3 __asm__("x3") = d; in __syscall5()
58 register long x4 __asm__("x4") = e; in __syscall5()
64 register long x8 __asm__("x8") = n; in __syscall6()
65 register long x0 __asm__("x0") = a; in __syscall6()
66 register long x1 __asm__("x1") = b; in __syscall6()
67 register long x2 __asm__("x2") = c; in __syscall6()
68 register long x3 __asm__("x3") = d; in __syscall6()
69 register long x4 __asm__("x4") = e; in __syscall6()
70 register long x5 __asm__("x5") = f; in __syscall6()