/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-3/include/linux/byteorder/ |
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 | 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 | 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-3/include/sys/ |
D | endian.h | 55 #define __swap16gen(x) __statement({ \ argument 56 __uint16_t __swap16gen_x = (x); \ 62 #define __swap32gen(x) __statement({ \ argument 63 __uint32_t __swap32gen_x = (x); \ 71 #define __swap64gen(x) __statement({ \ argument 72 __uint64_t __swap64gen_x = (x); \ 87 #define __swap16gen(x) \ argument 88 (__uint16_t)(((__uint16_t)(x) & 0xff) << 8 | ((__uint16_t)(x) & 0xff00) >> 8) 90 #define __swap32gen(x) \ argument 91 (__uint32_t)(((__uint32_t)(x) & 0xff) << 24 | \ [all …]
|
D | cdefs.h | 58 #define __GNUC_PREREQ__(x, y) \ argument 59 ((__GNUC__ == (x) && __GNUC_MINOR__ >= (y)) || \ 60 (__GNUC__ > (x))) 62 #define __GNUC_PREREQ__(x, y) 0 argument 70 #define __static_cast(x,y) static_cast<x>(y) argument 74 #define __static_cast(x,y) (x)y argument 85 #define ___STRING(x) __STRING(x) argument 86 #define ___CONCAT(x,y) __CONCAT(x,y) argument 90 #define __CONCAT(x,y) x ## y argument 91 #define __STRING(x) #x 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/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/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/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/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/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/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/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/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
|
D | uaccess.h | 39 #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 …x,ptr,err) do { unsigned long __gu_addr = (unsigned long)(ptr); unsigned long __gu_val; __c… argument 45 …x,addr,err) __asm__ __volatile__( "1: ldrbt %1,[%2],#0\n" "2:\n" " .section .fixup,\"ax\"\… argument 47 …lf(x,__gu_addr,err) ({ unsigned long __b1, __b2; __get_user_asm_byte(__b1, __gu_addr, err); … argument 49 …lf(x,__gu_addr,err) ({ unsigned long __b1, __b2; __get_user_asm_byte(__b1, __gu_addr, err); … argument 51 …x,addr,err) __asm__ __volatile__( "1: ldrt %1,[%2],#0\n" "2:\n" " .section .fixup,\"ax\"\n… argument 52 #define __put_user(x,ptr) ({ long __pu_err = 0; __put_user_err((x),(ptr),__pu_err); __pu_err… argument [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: [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/ndk/platforms/android-9/include/ |
D | math.h | 96 #define fpclassify(x) \ argument 97 ((sizeof (x) == sizeof (float)) ? __fpclassifyf(x) \ 98 : (sizeof (x) == sizeof (double)) ? __fpclassifyd(x) \ 99 : __fpclassifyl(x)) 101 #define isfinite(x) \ argument 102 ((sizeof (x) == sizeof (float)) ? __isfinitef(x) \ 103 : (sizeof (x) == sizeof (double)) ? __isfinite(x) \ 104 : __isfinitel(x)) 105 #define isinf(x) \ argument 106 ((sizeof (x) == sizeof (float)) ? __isinff(x) \ [all …]
|
/development/ndk/platforms/android-3/include/ |
D | math.h | 96 #define fpclassify(x) \ argument 97 ((sizeof (x) == sizeof (float)) ? __fpclassifyf(x) \ 98 : (sizeof (x) == sizeof (double)) ? __fpclassifyd(x) \ 99 : __fpclassifyl(x)) 101 #define isfinite(x) \ argument 102 ((sizeof (x) == sizeof (float)) ? __isfinitef(x) \ 103 : (sizeof (x) == sizeof (double)) ? __isfinite(x) \ 104 : __isfinitel(x)) 105 #define isinf(x) \ argument 106 ((sizeof (x) == sizeof (float)) ? __isinff(x) \ [all …]
|
/development/tools/axl/ |
D | chewperf.py | 16 for x in range(len(rawLines)): 17 line = rawLines[x].split() 20 ts = int(rawLines[x - 1].split()[-1]) 48 lines = [x for x in rawLines if "Pulled" in x] 52 chewed = [[int(x.split()[sidx + 2]), int(x.split()[sidx + 4])] for x in lines] 56 chewed = [[x[1] - t0, x[0]] for x in chewed] 59 bytes = sum(x[1] for x in chewed) 63 for x in chewed: 64 bucket = x[0] / 1000 65 bytes = x[1] [all …]
|
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
D | uaccess_32.h | 36 #define set_fs(x) (current_thread_info()->addr_limit = (x)) argument 47 #define __get_user_x(size,ret,x,ptr) __asm__ __volatile__("call __get_user_" #size :"=a" (ret),… argument 49 …x,ptr) ({ int __ret_gu; unsigned long __val_gu; __chk_user_ptr(ptr); switch(sizeof (*(ptr))… 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 54 #define __put_user_8(x, ptr) __asm__ __volatile__("call __put_user_8":"=a" (__ret_pu):"A" ((typeof(… argument 55 #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 57 #define __get_user(x,ptr) __get_user_nocheck((x),(ptr),sizeof(*(ptr))) argument [all …]
|
/development/ndk/platforms/android-9/include/sys/ |
D | cdefs.h | 52 #define __GNUC_PREREQ__(x, y) \ argument 53 ((__GNUC__ == (x) && __GNUC_MINOR__ >= (y)) || \ 54 (__GNUC__ > (x))) 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 [all …]
|