/development/ndk/platforms/android-3/include/linux/mtd/ |
D | cfi_endian.h | 17 #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 …]
|
/development/ndk/platforms/android-21/include/linux/byteorder/ |
D | big_endian.h | 31 #define __constant_htonl(x) ((__force __be32)(__u32)(x)) argument 32 #define __constant_ntohl(x) ((__force __u32)(__be32)(x)) argument 34 #define __constant_htons(x) ((__force __be16)(__u16)(x)) argument 35 #define __constant_ntohs(x) ((__force __u16)(__be16)(x)) argument 36 #define __constant_cpu_to_le64(x) ((__force __le64)___constant_swab64((x))) argument 37 #define __constant_le64_to_cpu(x) ___constant_swab64((__force __u64)(__le64)(x)) argument 39 #define __constant_cpu_to_le32(x) ((__force __le32)___constant_swab32((x))) argument 40 #define __constant_le32_to_cpu(x) ___constant_swab32((__force __u32)(__le32)(x)) argument 41 #define __constant_cpu_to_le16(x) ((__force __le16)___constant_swab16((x))) argument 42 #define __constant_le16_to_cpu(x) ___constant_swab16((__force __u16)(__le16)(x)) argument [all …]
|
D | little_endian.h | 31 #define __constant_htonl(x) ((__force __be32)___constant_swab32((x))) argument 32 #define __constant_ntohl(x) ___constant_swab32((__force __be32)(x)) argument 34 #define __constant_htons(x) ((__force __be16)___constant_swab16((x))) argument 35 #define __constant_ntohs(x) ___constant_swab16((__force __be16)(x)) argument 36 #define __constant_cpu_to_le64(x) ((__force __le64)(__u64)(x)) argument 37 #define __constant_le64_to_cpu(x) ((__force __u64)(__le64)(x)) argument 39 #define __constant_cpu_to_le32(x) ((__force __le32)(__u32)(x)) argument 40 #define __constant_le32_to_cpu(x) ((__force __u32)(__le32)(x)) argument 41 #define __constant_cpu_to_le16(x) ((__force __le16)(__u16)(x)) argument 42 #define __constant_le16_to_cpu(x) ((__force __u16)(__le16)(x)) argument [all …]
|
/development/ndk/platforms/android-3/include/linux/byteorder/ |
D | big_endian.h | 25 #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 …]
|
D | little_endian.h | 25 #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 …]
|
D | swab.h | 17 #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 …x) ((__u32)( (((__u32)(x) & (__u32)0x000000ffUL) << 24) | (((__u32)(x) & (__u32)0x0000ff00UL… argument 25 …x) ((__u64)( (__u64)(((__u64)(x) & (__u64)0x00000000000000ffULL) << 56) | (__u64)(((__u64)(x… 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 …]
|
D | swabb.h | 15 #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 …]
|
/development/ndk/platforms/android-21/include/sys/ |
D | endian.h | 58 #define htonl(x) __swap32(x) argument 59 #define htons(x) __swap16(x) argument 60 #define ntohl(x) __swap32(x) argument 61 #define ntohs(x) __swap16(x) argument 64 #define htonq(x) __swap64(x) argument 65 #define ntohq(x) __swap64(x) argument 73 #define NTOHL(x) (x) = ntohl((u_int32_t)(x)) argument 74 #define NTOHS(x) (x) = ntohs((u_int16_t)(x)) argument 75 #define HTONL(x) (x) = htonl((u_int32_t)(x)) argument 76 #define HTONS(x) (x) = htons((u_int16_t)(x)) argument [all …]
|
/development/ndk/platforms/android-3/include/sys/ |
D | endian.h | 58 #define htonl(x) __swap32(x) argument 59 #define htons(x) __swap16(x) argument 60 #define ntohl(x) __swap32(x) argument 61 #define ntohs(x) __swap16(x) argument 64 #define htonq(x) __swap64(x) argument 65 #define ntohq(x) __swap64(x) argument 73 #define NTOHL(x) (x) = ntohl((u_int32_t)(x)) argument 74 #define NTOHS(x) (x) = ntohs((u_int16_t)(x)) argument 75 #define HTONL(x) (x) = htonl((u_int32_t)(x)) argument 76 #define HTONS(x) (x) = htons((u_int16_t)(x)) argument [all …]
|
/development/ndk/platforms/android-21/include/linux/ |
D | swab.h | 25 #define ___constant_swab16(x) ((__u16)( (((__u16)(x) & (__u16)0x00ffU) << 8) | (((__u16)(x) & (… argument 26 …x) ((__u32)( (((__u32)(x) & (__u32)0x000000ffUL) << 24) | (((__u32)(x) & (__u32)0x0000ff00UL) … argument 27 …x) ((__u64)( (((__u64)(x) & (__u64)0x00000000000000ffULL) << 56) | (((__u64)(x) & (__u64)0x000… argument 29 #define ___constant_swahw32(x) ((__u32)( (((__u32)(x) & (__u32)0x0000ffffUL) << 16) | (((__u32)… argument 30 #define ___constant_swahb32(x) ((__u32)( (((__u32)(x) & (__u32)0x00ff00ffUL) << 8) | (((__u32)(… argument 55 #define __swab16(x) (__builtin_constant_p((__u16)(x)) ? ___constant_swab16(x) : __fswab16(x)) argument 56 #define __swab32(x) (__builtin_constant_p((__u32)(x)) ? ___constant_swab32(x) : __fswab32(x)) argument 57 #define __swab64(x) (__builtin_constant_p((__u64)(x)) ? ___constant_swab64(x) : __fswab64(x)) argument 59 #define __swahw32(x) (__builtin_constant_p((__u32)(x)) ? ___constant_swahw32(x) : __fswahw32(… argument 60 #define __swahb32(x) (__builtin_constant_p((__u32)(x)) ? ___constant_swahb32(x) : __fswahb32(… argument
|
D | a.out.h | 77 #define N_BADMAG(x) (N_MAGIC(x) != OMAGIC && N_MAGIC(x) != NMAGIC && N_MAGIC(x) != ZMAGIC && … argument 80 #define _N_HDROFF(x) (1024 - sizeof (struct exec)) argument 82 #define N_TXTOFF(x) (N_MAGIC(x) == ZMAGIC ? _N_HDROFF((x)) + sizeof (struct exec) : (N_MAGIC(x)… argument 86 #define N_DATOFF(x) (N_TXTOFF(x) + (x).a_text) argument 90 #define N_TRELOFF(x) (N_DATOFF(x) + (x).a_data) argument 94 #define N_DRELOFF(x) (N_TRELOFF(x) + N_TRSIZE(x)) argument 97 #define N_SYMOFF(x) (N_DRELOFF(x) + N_DRSIZE(x)) argument 101 #define N_STROFF(x) (N_SYMOFF(x) + N_SYMSIZE(x)) argument 105 #define N_TXTADDR(x) (N_MAGIC(x) == QMAGIC ? PAGE_SIZE : 0) argument 136 #define _N_SEGMENT_ROUND(x) ALIGN(x, SEGMENT_SIZE) argument [all …]
|
D | mtio.h | 115 #define GMT_EOF(x) ((x) & 0x80000000) argument 116 #define GMT_BOT(x) ((x) & 0x40000000) argument 117 #define GMT_EOT(x) ((x) & 0x20000000) argument 119 #define GMT_SM(x) ((x) & 0x10000000) argument 120 #define GMT_EOD(x) ((x) & 0x08000000) argument 121 #define GMT_WR_PROT(x) ((x) & 0x04000000) argument 122 #define GMT_ONLINE(x) ((x) & 0x01000000) argument 124 #define GMT_D_6250(x) ((x) & 0x00800000) argument 125 #define GMT_D_1600(x) ((x) & 0x00400000) argument 126 #define GMT_D_800(x) ((x) & 0x00200000) argument [all …]
|
/development/ndk/platforms/android-9/arch-mips/include/asm/sibyte/ |
D | sb1250_scd.h | 26 #define V_SYS_REVISION(x) _SB_MAKEVALUE(x, S_SYS_REVISION) argument 27 #define G_SYS_REVISION(x) _SB_GETVALUE(x, S_SYS_REVISION, M_SYS_REVISION) argument 75 #define V_SYS_L2C_SIZE(x) _SB_MAKEVALUE(x, S_SYS_L2C_SIZE) argument 76 #define G_SYS_L2C_SIZE(x) _SB_GETVALUE(x, S_SYS_L2C_SIZE, M_SYS_L2C_SIZE) argument 89 #define V_SYS_NUM_CPUS(x) _SB_MAKEVALUE(x, S_SYS_NUM_CPUS) argument 90 #define G_SYS_NUM_CPUS(x) _SB_GETVALUE(x, S_SYS_NUM_CPUS, M_SYS_NUM_CPUS) argument 94 #define V_SYS_PART(x) _SB_MAKEVALUE(x, S_SYS_PART) argument 95 #define G_SYS_PART(x) _SB_GETVALUE(x, S_SYS_PART, M_SYS_PART) argument 105 #define V_SYS_SOC_TYPE(x) _SB_MAKEVALUE(x, S_SYS_SOC_TYPE) argument 106 #define G_SYS_SOC_TYPE(x) _SB_GETVALUE(x, S_SYS_SOC_TYPE, M_SYS_SOC_TYPE) argument [all …]
|
D | bcm1480_scd.h | 40 #define V_BCM1480_SYS_PLL_DIV(x) _SB_MAKEVALUE(x, S_BCM1480_SYS_PLL_DIV) argument 41 #define G_BCM1480_SYS_PLL_DIV(x) _SB_GETVALUE(x, S_BCM1480_SYS_PLL_DIV, M_BCM1480_SYS_PLL_DIV) argument 45 #define V_BCM1480_SYS_SW_DIV(x) _SB_MAKEVALUE(x, S_BCM1480_SYS_SW_DIV) argument 46 #define G_BCM1480_SYS_SW_DIV(x) _SB_GETVALUE(x, S_BCM1480_SYS_SW_DIV, M_BCM1480_SYS_SW_DIV) argument 52 #define V_BCM1480_SYS_BOOT_MODE(x) _SB_MAKEVALUE(x, S_BCM1480_SYS_BOOT_MODE) argument 54 #define G_BCM1480_SYS_BOOT_MODE(x) _SB_GETVALUE(x, S_BCM1480_SYS_BOOT_MODE, M_BCM1480_SYS_BOOT_MODE) argument 71 #define V_BCM1480_SYS_CONFIG(x) _SB_MAKEVALUE(x, S_BCM1480_SYS_CONFIG) argument 72 #define G_BCM1480_SYS_CONFIG(x) _SB_GETVALUE(x, S_BCM1480_SYS_CONFIG, M_BCM1480_SYS_CONFIG) argument 77 #define V_BCM1480_SYS_NODEID(x) _SB_MAKEVALUE(x, S_BCM1480_SYS_NODEID) argument 79 #define G_BCM1480_SYS_NODEID(x) _SB_GETVALUE(x, S_BCM1480_SYS_NODEID, M_BCM1480_SYS_NODEID) argument [all …]
|
/development/tools/emulator/skins/WQVGA400/ |
D | layout | 17 x 0 29 x 56 34 x 0 39 x 112 44 x 77 49 x 77 54 x 53 59 x 123 64 x 77 69 x 0 [all …]
|
/development/tools/emulator/skins/WVGA854/ |
D | layout | 17 x 0 29 x 56 34 x 0 39 x 112 44 x 77 49 x 77 54 x 53 59 x 123 64 x 77 69 x 0 [all …]
|
/development/tools/emulator/skins/QVGA/ |
D | layout | 17 x 0 29 x 56 34 x 0 39 x 112 44 x 77 49 x 77 54 x 53 59 x 123 64 x 77 69 x 0 [all …]
|
/development/tools/emulator/skins/WVGA800/ |
D | layout | 17 x 0 29 x 56 34 x 0 39 x 112 44 x 77 49 x 77 54 x 53 59 x 123 64 x 77 69 x 0 [all …]
|
/development/tools/emulator/skins/WQVGA432/ |
D | layout | 17 x 0 29 x 56 34 x 0 39 x 112 44 x 77 49 x 77 54 x 53 59 x 123 64 x 77 69 x 0 [all …]
|
/development/ndk/platforms/android-9/arch-x86/include/machine/ |
D | asm.h | 61 #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 …]
|
/development/tools/emulator/skins/HVGA/ |
D | layout | 17 x 0 29 x 56 34 x 0 39 x 112 44 x 77 49 x 77 54 x 53 59 x 123 64 x 77 69 x 0 [all …]
|
/development/ndk/platforms/android-3/arch-arm/include/machine/ |
D | asm.h | 42 # 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 73 .text; _ALIGN_TEXT; .globl x; .type x,_ASM_TYPE_FUNCTION; x: .fnstart [all …]
|
/development/ndk/platforms/android-3/include/linux/ |
D | a.out.h | 73 #define N_BADMAG(x) (N_MAGIC(x) != OMAGIC && N_MAGIC(x) != NMAGIC && N_MAGIC(x) != ZMAGIC && … argument 76 #define _N_HDROFF(x) (1024 - sizeof (struct exec)) argument 79 #define N_TXTOFF(x) (N_MAGIC(x) == ZMAGIC ? _N_HDROFF((x)) + sizeof (struct exec) : (N_MAGIC(x)… argument 83 #define N_DATOFF(x) (N_TXTOFF(x) + (x).a_text) argument 87 #define N_TRELOFF(x) (N_DATOFF(x) + (x).a_data) argument 91 #define N_DRELOFF(x) (N_TRELOFF(x) + N_TRSIZE(x)) argument 95 #define N_SYMOFF(x) (N_DRELOFF(x) + N_DRSIZE(x)) argument 99 #define N_STROFF(x) (N_SYMOFF(x) + N_SYMSIZE(x)) argument 103 #define N_TXTADDR(x) (N_MAGIC(x) == QMAGIC ? PAGE_SIZE : 0) argument 131 #define _N_SEGMENT_ROUND(x) ALIGN(x, SEGMENT_SIZE) argument [all …]
|
/development/perftests/panorama/feature_stab/db_vlvm/ |
D | db_utilities.h | 61 inline int db_roundi (double x) { in db_roundi() argument 66 fld x; in db_roundi() local 71 return static_cast<int>(floor(x+0.5)); in db_roundi() 156 inline double db_sign(double x) in db_sign() argument 158 if(x>=0.0) return(1.0); in db_sign() 225 inline double db_CubRoot(double x) in db_CubRoot() argument 227 if(x>=0.0) return(pow(x,1.0/3.0)); in db_CubRoot() 228 else return(-pow(-x,1.0/3.0)); in db_CubRoot() 233 inline double db_SquareSum3(const double x[3]) in db_SquareSum3() 235 return(db_sqr(x[0])+db_sqr(x[1])+db_sqr(x[2])); in db_SquareSum3() [all …]
|
/development/ndk/platforms/android-3/arch-arm/include/asm/ |
D | byteorder.h | 18 static inline __attribute_const__ __u32 ___arch__swab32(__u32 x) in ___arch__swab32() argument 23 if (!__builtin_constant_p(x)) { in ___arch__swab32() 25 __asm__ ("eor\t%0, %1, %1, ror #16" : "=r" (t) : "r" (x)); in ___arch__swab32() 28 t = x ^ ((x << 16) | (x >> 16)); in ___arch__swab32() 30 x = (x << 24) | (x >> 8); in ___arch__swab32() 32 x ^= (t >> 8); in ___arch__swab32() 34 return x; in ___arch__swab32() 37 #define __arch__swab32(x) ___arch__swab32(x) argument
|