Home
last modified time | relevance | path

Searched refs:__X32_SYSCALL_BIT (Results 1 – 11 of 11) sorted by relevance

/external/kernel-headers/original/uapi/asm-x86/asm/
Dunistd_x32.h4 #define __NR_read (__X32_SYSCALL_BIT + 0)
5 #define __NR_write (__X32_SYSCALL_BIT + 1)
6 #define __NR_open (__X32_SYSCALL_BIT + 2)
7 #define __NR_close (__X32_SYSCALL_BIT + 3)
8 #define __NR_stat (__X32_SYSCALL_BIT + 4)
9 #define __NR_fstat (__X32_SYSCALL_BIT + 5)
10 #define __NR_lstat (__X32_SYSCALL_BIT + 6)
11 #define __NR_poll (__X32_SYSCALL_BIT + 7)
12 #define __NR_lseek (__X32_SYSCALL_BIT + 8)
13 #define __NR_mmap (__X32_SYSCALL_BIT + 9)
[all …]
Dunistd.h5 #define __X32_SYSCALL_BIT 0x40000000 macro
/external/strace/
Dscno.head1 #if defined __X32_SYSCALL_BIT && defined __NR_read \
2 && (__X32_SYSCALL_BIT & __NR_read) == __X32_SYSCALL_BIT
3 # define SYSCALL_BIT __X32_SYSCALL_BIT
Dscno.h2 #if defined __X32_SYSCALL_BIT && defined __NR_read \
3 && (__X32_SYSCALL_BIT & __NR_read) == __X32_SYSCALL_BIT
4 # define SYSCALL_BIT __X32_SYSCALL_BIT
Dsyscall.c1321 #if defined X32_PERSONALITY_NUMBER && defined __X32_SYSCALL_BIT in syscall_name()
1323 scno &= ~__X32_SYSCALL_BIT; in syscall_name()
DChangeLog8099 syscall_name: clear __X32_SYSCALL_BIT from syscall number on x32.
8101 * syscall.c (syscall_name) [X32_PERSONALITY_NUMBER && __X32_SYSCALL_BIT]:
8102 Clear __X32_SYSCALL_BIT from scno on x32 personality.
32177 While at it, also fixed x32 detection to use __X32_SYSCALL_BIT,
32188 on scno & __X32_SYSCALL_BIT.
32302 Remove __X32_SYSCALL_MASK and use __X32_SYSCALL_BIT instead.
33176 (__X32_SYSCALL_BIT): Define if not defined.
/external/strace/linux/x86_64/
Dget_scno.c47 #ifndef __X32_SYSCALL_BIT in arch_get_scno()
48 # define __X32_SYSCALL_BIT 0x40000000 in arch_get_scno() macro
68 if (scno & __X32_SYSCALL_BIT) { in arch_get_scno()
78 scno -= __X32_SYSCALL_BIT; in arch_get_scno()
102 scno &= ~__X32_SYSCALL_BIT; in arch_get_scno()
/external/strace/tests/
Dnsyscalls.c63 #if defined __X32_SYSCALL_BIT && defined __NR_read \
64 && (__X32_SYSCALL_BIT & __NR_read) != 0
65 # define SYSCALL_BIT __X32_SYSCALL_BIT
/external/strace/tests-mx32/
Dnsyscalls.c63 #if defined __X32_SYSCALL_BIT && defined __NR_read \
64 && (__X32_SYSCALL_BIT & __NR_read) != 0
65 # define SYSCALL_BIT __X32_SYSCALL_BIT
/external/strace/tests-m32/
Dnsyscalls.c63 #if defined __X32_SYSCALL_BIT && defined __NR_read \
64 && (__X32_SYSCALL_BIT & __NR_read) != 0
65 # define SYSCALL_BIT __X32_SYSCALL_BIT
/external/openssh/
Dsandbox-seccomp-filter.c232 #if defined(__x86_64__) && defined(__ILP32__) && defined(__X32_SYSCALL_BIT)
238 SC_ALLOW(__NR_clock_gettime & ~__X32_SYSCALL_BIT);