Home
last modified time | relevance | path

Searched defs:x (Results 1 – 25 of 296) sorted by relevance

12345678910>>...12

/bionic/libc/kernel/common/linux/byteorder/
Dlittle_endian.h25 #define __constant_htonl(x) ((__force __be32)___constant_swab32((x))) argument
26 #define __constant_ntohl(x) ___constant_swab32((__force __be32)(x)) argument
27 #define __constant_htons(x) ((__force __be16)___constant_swab16((x))) argument
28 #define __constant_ntohs(x) ___constant_swab16((__force __be16)(x)) argument
29 #define __constant_cpu_to_le64(x) ((__force __le64)(__u64)(x)) argument
30 #define __constant_le64_to_cpu(x) ((__force __u64)(__le64)(x)) argument
31 #define __constant_cpu_to_le32(x) ((__force __le32)(__u32)(x)) argument
32 #define __constant_le32_to_cpu(x) ((__force __u32)(__le32)(x)) argument
33 #define __constant_cpu_to_le16(x) ((__force __le16)(__u16)(x)) argument
34 #define __constant_le16_to_cpu(x) ((__force __u16)(__le16)(x)) argument
[all …]
Dbig_endian.h25 #define __constant_htonl(x) ((__force __be32)(__u32)(x)) argument
26 #define __constant_ntohl(x) ((__force __u32)(__be32)(x)) argument
27 #define __constant_htons(x) ((__force __be16)(__u16)(x)) argument
28 #define __constant_ntohs(x) ((__force __u16)(__be16)(x)) argument
29 #define __constant_cpu_to_le64(x) ((__force __le64)___constant_swab64((x))) argument
30 #define __constant_le64_to_cpu(x) ___constant_swab64((__force __u64)(__le64)(x)) argument
31 #define __constant_cpu_to_le32(x) ((__force __le32)___constant_swab32((x))) argument
32 #define __constant_le32_to_cpu(x) ___constant_swab32((__force __u32)(__le32)(x)) argument
33 #define __constant_cpu_to_le16(x) ((__force __le16)___constant_swab16((x))) argument
34 #define __constant_le16_to_cpu(x) ___constant_swab16((__force __u16)(__le16)(x)) argument
[all …]
Dswab.h17 #define ___swab16(x) ({ __u16 __x = (x); ((__u16)( (((__u16)(__x) & (__u16)0x00ffU) << 8) | … argument
19 #define ___swab32(x) ({ __u32 __x = (x); ((__u32)( (((__u32)(__x) & (__u32)0x000000ffUL) << … argument
21 #define ___swab64(x) ({ __u64 __x = (x); ((__u64)( (__u64)(((__u64)(__x) & (__u64)0x00000000… argument
23 #define ___constant_swab16(x) ((__u16)( (((__u16)(x) & (__u16)0x00ffU) << 8) | (((__u16)(x) &… argument
24 #define ___constant_swab32(x) ((__u32)( (((__u32)(x) & (__u32)0x000000ffUL) << 24) | (((__u32… argument
25 #define ___constant_swab64(x) ((__u64)( (__u64)(((__u64)(x) & (__u64)0x00000000000000ffULL) << … argument
28 #define __arch__swab16(x) ({ __u16 __tmp = (x) ; ___swab16(__tmp); }) argument
31 #define __arch__swab32(x) ({ __u32 __tmp = (x) ; ___swab32(__tmp); }) argument
34 #define __arch__swab64(x) ({ __u64 __tmp = (x) ; ___swab64(__tmp); }) argument
38 #define __arch__swab16p(x) __arch__swab16(*(x)) argument
[all …]
Dswabb.h15 #define ___swahw32(x) ({ __u32 __x = (x); ((__u32)( (((__u32)(__x) & (__u32)0x0000ffffUL) <<… argument
16 #define ___swahb32(x) ({ __u32 __x = (x); ((__u32)( (((__u32)(__x) & (__u32)0x00ff00ffUL) <<… argument
18 #define ___constant_swahw32(x) ((__u32)( (((__u32)(x) & (__u32)0x0000ffffUL) << 16) | (((__u3… argument
19 #define ___constant_swahb32(x) ((__u32)( (((__u32)(x) & (__u32)0x00ff00ffUL) << 8) | (((__u32… argument
22 #define __arch__swahw32(x) ___swahw32(x) argument
25 #define __arch__swahb32(x) ___swahb32(x) argument
29 #define __arch__swahw32p(x) __swahw32(*(x)) argument
32 #define __arch__swahb32p(x) __swahb32(*(x)) argument
36 #define __arch__swahw32s(x) do { *(x) = __swahw32p((x)); } while (0) argument
39 #define __arch__swahb32s(x) do { *(x) = __swahb32p((x)); } while (0) argument
[all …]
/bionic/libc/kernel/common/linux/mtd/
Dcfi_endian.h17 #define cpu_to_cfi8(x) (x) argument
18 #define cfi8_to_cpu(x) (x) argument
19 #define cpu_to_cfi16(x) cpu_to_le16(x) argument
20 #define cpu_to_cfi32(x) cpu_to_le32(x) argument
21 #define cpu_to_cfi64(x) cpu_to_le64(x) argument
22 #define cfi16_to_cpu(x) le16_to_cpu(x) argument
23 #define cfi32_to_cpu(x) le32_to_cpu(x) argument
24 #define cfi64_to_cpu(x) le64_to_cpu(x) argument
26 #define cpu_to_cfi8(x) (x) argument
27 #define cfi8_to_cpu(x) (x) argument
[all …]
/bionic/libc/include/sys/
Dendian.h55 #define __swap16gen(x) __statement({ \ argument
62 #define __swap32gen(x) __statement({ \ argument
71 #define __swap64gen(x) __statement({ \ argument
87 #define __swap16gen(x) \ argument
90 #define __swap32gen(x) \ argument
95 #define __swap64gen(x) \ argument
116 #define __swap16(x) __statement({ \ argument
123 #define __swap32(x) __statement({ \ argument
130 #define __swap64(x) __statement({ \ argument
197 #define htole16(x) (x) argument
[all …]
Dcdefs.h52 #define __GNUC_PREREQ__(x, y) \ argument
56 #define __GNUC_PREREQ__(x, y) 0 argument
64 #define __static_cast(x,y) static_cast<x>(y) argument
68 #define __static_cast(x,y) (x)y argument
79 #define ___STRING(x) __STRING(x) argument
80 #define ___CONCAT(x,y) __CONCAT(x,y) argument
84 #define __CONCAT(x,y) x ## y argument
85 #define __STRING(x) #x argument
100 #define __CONCAT(x,y) x/**/y argument
101 #define __STRING(x) "x" argument
[all …]
/bionic/libc/kernel/common/linux/
Dswab.h19 #define ___constant_swab16(x) ((__u16)( (((__u16)(x) & (__u16)0x00ffU) << 8) | (((__u16)(x) & (… argument
21 #define ___constant_swab32(x) ((__u32)( (((__u32)(x) & (__u32)0x000000ffUL) << 24) | (((__u32)(… argument
23 #define ___constant_swab64(x) ((__u64)( (((__u64)(x) & (__u64)0x00000000000000ffULL) << 56) | (… argument
25 #define ___constant_swahw32(x) ((__u32)( (((__u32)(x) & (__u32)0x0000ffffUL) << 16) | (((__u32)… argument
27 #define ___constant_swahb32(x) ((__u32)( (((__u32)(x) & (__u32)0x00ff00ffUL) << 8) | (((__u32)(… argument
45 #define __swab16(x) (__builtin_constant_p((__u16)(x)) ? ___constant_swab16(x) : __fswab16(x)) argument
46 #define __swab32(x) (__builtin_constant_p((__u32)(x)) ? ___constant_swab32(x) : __fswab32(x)) argument
47 #define __swab64(x) (__builtin_constant_p((__u64)(x)) ? ___constant_swab64(x) : __fswab64(x)) argument
48 #define __swahw32(x) (__builtin_constant_p((__u32)(x)) ? ___constant_swahw32(x) : __fswahw32(… argument
49 #define __swahb32(x) (__builtin_constant_p((__u32)(x)) ? ___constant_swahb32(x) : __fswahb32(… argument
Dcompiler.h23 #define __chk_user_ptr(x) (void)0 argument
24 #define __chk_io_ptr(x) (void)0 argument
25 #define __builtin_warning(x, y...) (1) argument
26 #define __acquires(x) argument
27 #define __releases(x) argument
28 #define __acquire(x) (void)0 argument
29 #define __release(x) (void)0 argument
30 #define __cond_lock(x) (x) argument
/bionic/libc/arch-x86/include/machine/
Dasm.h61 #define PIC_PLT(x) x@PLT argument
62 #define PIC_GOT(x) x@GOT(%ebx) argument
63 #define PIC_GOTOFF(x) x@GOTOFF(%ebx) argument
67 #define PIC_PLT(x) x argument
68 #define PIC_GOT(x) x argument
69 #define PIC_GOTOFF(x) x argument
73 #define _ASM_LABEL(x) x argument
75 #define CVAROFF(x, y) _C_LABEL(x) + y argument
78 # define __CONCAT(x,y) x ## y argument
79 # define __STRING(x) #x argument
[all …]
/bionic/libc/arch-arm/include/machine/
Dasm.h42 # define _C_LABEL(x) x argument
45 # define _C_LABEL(x) _ ## x argument
47 # define _C_LABEL(x) _/**/x argument
50 #define _ASM_LABEL(x) x argument
53 # define __CONCAT(x,y) x ## y argument
54 # define __STRING(x) #x argument
56 # define __CONCAT(x,y) x/**/y argument
57 # define __STRING(x) "x" argument
72 #define _ENTRY(x) \ argument
75 #define _ASM_SIZE(x) .size x, .-x; argument
[all …]
/bionic/libc/arch-x86/include/
Dendian.h33 #define __swap32md(x) ({ \ argument
40 #define __swap32md(x) ({ \ argument
49 #define __swap64md(x) ({ \ argument
55 #define __swap16md(x) ({ \ argument
/bionic/libm/include/
Dmath.h96 #define fpclassify(x) \ argument
101 #define isfinite(x) \ argument
105 #define isinf(x) \ argument
109 #define isnan(x) \ argument
113 #define isnormal(x) \ argument
119 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument
120 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument
121 #define isless(x, y) __builtin_isless((x), (y)) argument
122 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument
123 #define islessgreater(x, y) __builtin_islessgreater((x), (y)) argument
[all …]
/bionic/libc/kernel/arch-x86/asm/
Duaccess_32.h31 #define set_fs(x) (current_thread_info()->addr_limit = (x)) argument
46 #define __get_user_x(size,ret,x,ptr) __asm__ __volatile__("call __get_user_" #size :"=a" (ret),… argument
48 #define get_user(x,ptr) ({ int __ret_gu; unsigned long __val_gu; __chk_user_ptr(ptr); switch… argument
50 #define __put_user_1(x, ptr) __asm__ __volatile__("call __put_user_1":"=a" (__ret_pu):"0" ((typeof(… argument
51 #define __put_user_2(x, ptr) __asm__ __volatile__("call __put_user_2":"=a" (__ret_pu):"0" ((typeof(… argument
52 #define __put_user_4(x, ptr) __asm__ __volatile__("call __put_user_4":"=a" (__ret_pu):"0" ((typeof(… argument
53 #define __put_user_8(x, ptr) __asm__ __volatile__("call __put_user_8":"=a" (__ret_pu):"A" ((typeof(… argument
54 #define __put_user_X(x, ptr) __asm__ __volatile__("call __put_user_X":"=a" (__ret_pu):"c" (ptr)) argument
56 #define put_user(x,ptr) ({ int __ret_pu; __typeof__(*(ptr)) __pus_tmp = x; __ret_pu=0; if(… argument
58 #define __get_user(x,ptr) __get_user_nocheck((x),(ptr),sizeof(*(ptr))) argument
[all …]
Dbyteorder.h22 static __inline__ __attribute_const__ __u32 ___arch__swab32(__u32 x) in ___arch__swab32()
47 static __inline__ __attribute_const__ __u64 ___arch__swab64(__u64 x) in ___arch__swab64()
53 static __inline__ __attribute_const__ __u32 ___arch__swab32(__u32 x) in ___arch__swab32()
61 #define __arch__swab64(x) ___arch__swab64(x) argument
62 #define __arch__swab32(x) ___arch__swab32(x) argument
/bionic/linker/
Dlinker_debug.h71 #define _PRINTVF(v,f,x...) \ argument
77 #define _PRINTVF(v,f,x...) \ argument
83 #define _PRINTVF(v,f,x...) do {} while(0) argument
86 #define PRINT(x...) _PRINTVF(-1, FALSE, x) argument
87 #define INFO(x...) _PRINTVF(0, TRUE, x) argument
88 #define TRACE(x...) _PRINTVF(1, TRUE, x) argument
96 #define DEBUG(x...) _PRINTVF(2, TRUE, "DEBUG: " x) argument
98 #define DEBUG(x...) do {} while (0) argument
102 #define TRACE_TYPE(t,x...) do { if (DO_TRACE_##t) { TRACE(x); } } while (0) argument
104 #define TRACE_TYPE(t,x...) do {} while (0) argument
[all …]
/bionic/libc/include/
Dbyteswap.h34 #define bswap_16(x) swap16(x) argument
35 #define bswap_32(x) swap32(x) argument
36 #define bswap_64(x) swap64(x) argument
/bionic/libc/kernel/arch-arm/asm/
Dspinlock.h19 #define __raw_spin_is_locked(x) ((x)->lock != 0) argument
24 #define rwlock_is_locked(x) (*((volatile unsigned int *)(x)) != 0) argument
25 #define __raw_write_can_lock(x) ((x)->lock == 0x80000000) argument
26 #define __raw_read_can_lock(x) ((x)->lock < 0x80000000) argument
Duaccess.h39 #define get_user(x,p) __get_user(x,p) argument
40 #define put_user(x,p) __put_user(x,p) argument
42 #define __get_user(x,ptr) ({ long __gu_err = 0; __get_user_err((x),(ptr),__gu_err); __gu_err… argument
43 #define __get_user_error(x,ptr,err) ({ __get_user_err((x),(ptr),err); (void) 0; }) argument
44 #define __get_user_err(x,ptr,err) do { unsigned long __gu_addr = (unsigned long)(ptr); unsigne… argument
45 #define __get_user_asm_byte(x,addr,err) __asm__ __volatile__( "1: ldrbt %1,[%2],#0\n" "2:\n" … argument
47 #define __get_user_asm_half(x,__gu_addr,err) ({ unsigned long __b1, __b2; __get_user_asm_byte(… argument
49 #define __get_user_asm_half(x,__gu_addr,err) ({ unsigned long __b1, __b2; __get_user_asm_byte(… argument
51 #define __get_user_asm_word(x,addr,err) __asm__ __volatile__( "1: ldrt %1,[%2],#0\n" "2:\n" … argument
52 #define __put_user(x,ptr) ({ long __pu_err = 0; __put_user_err((x),(ptr),__pu_err); __pu_err… argument
[all …]
Dvga.h18 #define VGA_MAP_MEM(x,s) (PCIMEM_BASE + (x)) argument
20 #define vga_readb(x) (*((volatile unsigned char *)x)) argument
21 #define vga_writeb(x,y) (*((volatile unsigned char *)y) = (x)) argument
/bionic/libc/arch-sh/include/machine/
Dasm.h42 # define _C_LABEL(x) x argument
45 # define _C_LABEL(x) _ ## x argument
47 # define _C_LABEL(x) _/**/x argument
50 #define _ASM_LABEL(x) x argument
53 # define __CONCAT(x,y) x ## y argument
54 # define __STRING(x) #x argument
56 # define __CONCAT(x,y) x/**/y argument
57 # define __STRING(x) "x" argument
66 #define _ENTRY(x) \ argument
73 #define _ENTRY(x) \ argument
[all …]
/bionic/libc/kernel/arch-sh/asm/
Dbyteorder.h18 static inline __attribute_const__ __u32 ___arch__swab32(__u32 x) in ___arch__swab32()
35 static inline __attribute_const__ __u16 ___arch__swab16(__u16 x) in ___arch__swab16()
62 #define __arch__swab64(x) ___arch__swab64(x) argument
63 #define __arch__swab32(x) ___arch__swab32(x) argument
64 #define __arch__swab16(x) ___arch__swab16(x) argument
Duaccess.h27 #define put_user(x,ptr) __put_user_check((x), (ptr), sizeof(*(ptr))) argument
28 #define get_user(x,ptr) __get_user_check((x), (ptr), sizeof(*(ptr))) argument
30 #define __put_user(x,ptr) __put_user_nocheck((x), (ptr), sizeof(*(ptr))) argument
31 #define __get_user(x,ptr) __get_user_nocheck((x), (ptr), sizeof(*(ptr))) argument
34 #define __m(x) (*(struct __large_struct __user *)(x)) argument
36 #define __get_user_nocheck(x,ptr,size) ({ long __gu_err; unsigned long __gu_val; const __typ… argument
38 #define __get_user_check(x,ptr,size) ({ long __gu_err = -EFAULT; unsigned long __gu_val = 0; … argument
40 #define __put_user_nocheck(x,ptr,size) ({ long __pu_err; __typeof__(*(ptr)) __user *__pu_addr … argument
42 #define __put_user_check(x,ptr,size) ({ long __pu_err = -EFAULT; __typeof__(*(ptr)) __user *__… argument
Dspinlock.h15 #define __raw_spin_is_locked(x) ((x)->lock <= 0) argument
17 #define __raw_spin_unlock_wait(x) do { cpu_relax(); } while ((x)->lock) argument
19 #define __raw_read_can_lock(x) ((x)->lock > 0) argument
20 #define __raw_write_can_lock(x) ((x)->lock == RW_LOCK_BIAS) argument
/bionic/libc/arch-arm/include/
Dendian.h56 #define __swap16md(x) ({ \ argument
62 #define __swap32md(x) ({ \ argument
68 #define __swap64md(x) ({ \ argument

12345678910>>...12