Searched refs:a1 (Results 1 - 5 of 5) sorted by relevance

/bionic/libc/kernel/arch-x86/asm/xen/
H A Dhypercall.h29 #define _hypercall1(type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1) : "1" ((long)(a1)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
30 #define _hypercall2(type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2) : "1" ((long)(a1)), "2" ((long)(a2)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
31 #define _hypercall3(type, name, a1, a2, a3) ({ long __res, __ign1, __ign2, __ign3; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2), "=d" (__ign3) : "1" ((long)(a1)), "2" ((long)(a2)), "3" ((long)(a3)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
32 #define _hypercall4(type, name, a1, a2, a3, a4) ({ long __res, __ign1, __ign2, __ign3, __ign4; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2), "=d" (__ign3), "=S" (__ign4) : "1" ((long)(a1)), "2" ((long)(a2)), "3" ((long)(a3)), "4" ((long)(a4)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
34 #define _hypercall5(type, name, a1, a2, a3, a4, a5) ({ long __res, __ign1, __ign2, __ign3, __ign4, __ign5; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2), "=d" (__ign3), "=S" (__ign4), "=D" (__ign5) : "1" ((long)(a1)), "
[all...]
/bionic/libc/kernel/arch-mips/asm/
H A Dregdef.h30 #define a1 $5 macro
75 #define a1 $5 macro
/bionic/libc/netbsd/net/
H A Dgetaddrinfo.c1637 * Find number of matching initial bits between the two addresses a1 and a2.
1642 _common_prefix_len(const struct in6_addr *a1, const struct in6_addr *a2) argument
1644 const char *p1 = (const char *)a1;
1648 for (i = 0; i < sizeof(*a1); ++i) {
1662 return sizeof(*a1) * CHAR_BIT;
1674 const struct addrinfo_sort_elem *a1 = (const struct addrinfo_sort_elem *)ptr1; local
1684 if (a1->has_src_addr != a2->has_src_addr) {
1685 return a2->has_src_addr - a1->has_src_addr;
1689 scope_src1 = _get_scope(&a1->src_addr.generic);
1690 scope_dst1 = _get_scope(a1
[all...]
/bionic/libm/src/
H A De_lgamma_r.c95 a1 = 3.22467033424113591611e-01, /* 0x3FD4A34C, 0xC4A60FAD */ variable
252 p2 = z*(a1+z*(a3+z*(a5+z*(a7+z*(a9+z*a11)))));
H A De_lgammaf_r.c29 a1 = 3.2246702909e-01, /* 0x3ea51a66 */ variable
186 p2 = z*(a1+z*(a3+z*(a5+z*(a7+z*(a9+z*a11)))));

Completed in 2001 milliseconds