| /bionic/libc/kernel/uapi/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 …]
|
| /bionic/libc/include/sys/ |
| D | endian.h | 57 #define __swap16gen(x) __statement({ \ argument 64 #define __swap32gen(x) __statement({ \ argument 73 #define __swap64gen(x) __statement({ \ argument 89 #define __swap16gen(x) \ argument 92 #define __swap32gen(x) \ argument 97 #define __swap64gen(x) \ argument 118 #define __swap16(x) __statement({ \ argument 125 #define __swap32(x) __statement({ \ argument 132 #define __swap64(x) __statement({ \ argument 183 #define htole16(x) (x) argument [all …]
|
| D | cdefs.h | 48 #define __has_feature(x) 0 argument 51 #define __has_include(x) 0 argument 54 #define __has_builtin(x) 0 argument 57 #define __has_attribute(x) 0 argument 73 #define __GNUC_PREREQ(x, y) \ argument 77 #define __GNUC_PREREQ(x, y) 0 argument 85 #define __static_cast(x,y) static_cast<x>(y) argument 89 #define __static_cast(x,y) (x)y argument 100 #define ___STRING(x) __STRING(x) argument 101 #define ___CONCAT(x,y) __CONCAT(x,y) argument [all …]
|
| D | param.h | 39 #define howmany(x, y) (((x)+((y)-1))/(y)) argument 41 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) argument 42 #define powerof2(x) ((((x)-1)&(x))==0) argument
|
| /bionic/libc/kernel/uapi/linux/ |
| D | swab.h | 25 #define ___constant_swab16(x) ((__u16)( (((__u16)(x) & (__u16)0x00ffU) << 8) | (((__u16)(x) & (… argument 26 #define ___constant_swab32(x) ((__u32)( (((__u32)(x) & (__u32)0x000000ffUL) << 24) | (((__u32)(… argument 27 #define ___constant_swab64(x) ((__u64)( (((__u64)(x) & (__u64)0x00000000000000ffULL) << 56) | (… 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 | kernel.h | 22 #define __ALIGN_KERNEL(x, a) __ALIGN_KERNEL_MASK(x, (typeof(x))(a) - 1) argument 24 #define __ALIGN_KERNEL_MASK(x, mask) (((x) + (mask)) & ~(mask)) argument
|
| /bionic/linker/ |
| D | linker_debug.h | 62 #define _PRINTVF(v, x...) \ argument 67 #define _PRINTVF(v, x...) \ argument 73 #define PRINT(x...) _PRINTVF(-1, x) argument 74 #define INFO(x...) _PRINTVF(0, x) argument 75 #define TRACE(x...) _PRINTVF(1, x) argument 78 #define DEBUG(x...) _PRINTVF(2, "DEBUG: " x) argument 80 #define DEBUG(x...) do {} while (0) argument 83 #define TRACE_TYPE(t, x...) do { if (DO_TRACE_##t) { TRACE(x); } } while (0) argument
|
| /bionic/libc/arch-common/bionic/ |
| D | asm_multiarch.h | 30 # define ASM_PTR_SIZE(x) .quad x argument 31 # define ASM_ALIGN(x) argument 33 # define ASM_PTR_SIZE(x) .long x argument 34 # define ASM_ALIGN(x) .align x argument
|
| /bionic/libm/include/ |
| D | math.h | 85 #define fpclassify(x) \ argument 90 #define isfinite(x) \ argument 94 #define isinf(x) \ argument 98 #define isnan(x) \ argument 102 #define isnormal(x) \ argument 108 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument 109 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument 110 #define isless(x, y) __builtin_isless((x), (y)) argument 111 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument 112 #define islessgreater(x, y) __builtin_islessgreater((x), (y)) argument [all …]
|
| /bionic/libm/upstream-freebsd/lib/msun/src/ |
| D | imprecise.c | 38 #define WARN_IMPRECISE(x) \ argument 41 #define WARN_IMPRECISE(x) argument 47 #define DECLARE_WEAK(x)\ argument 52 imprecise_powl(long double x, long double y) in imprecise_powl()
|
| D | s_scalbln.c | 34 scalbln (double x, long n) in scalbln() 49 scalblnf (float x, long n) in scalblnf() 64 scalblnl (long double x, long n) in scalblnl()
|
| D | e_sqrtl.c | 38 inc(long double x) in inc() 54 dec(long double x) in dec() 76 sqrtl(long double x) in sqrtl()
|
| /bionic/libc/include/ |
| D | byteswap.h | 34 #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/arch-x86_64/include/machine/ |
| D | endian.h | 32 #define __swap32md(x) __statement({ \ argument 39 #define __swap64md(x) __statement({ \ argument 46 #define __swap16md(x) __statement({ \ argument
|
| D | asm.h | 40 #define PIC_PLT(x) x@PLT argument 41 #define PIC_GOT(x) x@GOTPCREL(%rip) argument
|
| /bionic/libc/arch-x86/include/machine/ |
| D | endian.h | 32 #define __swap32md(x) __statement({ \ argument 39 #define __swap64md(x) __statement({ \ argument 45 #define __swap16md(x) __statement({ \ argument
|
| D | asm.h | 48 #define PIC_PLT(x) x@PLT argument 49 #define PIC_GOT(x) x@GOT(%ebx) argument 50 #define PIC_GOTOFF(x) x@GOTOFF(%ebx) argument
|
| /bionic/libc/arch-arm64/include/machine/ |
| D | endian.h | 37 #define __swap16md(x) ({ \ argument 44 #define __swap32md(x) __builtin_bswap32(x) argument 45 #define __swap64md(x) __builtin_bswap64(x) argument
|
| /bionic/libc/arch-arm/include/machine/ |
| D | endian.h | 47 #define __swap16md(x) ({ \ argument 53 #define __swap32md(x) ({ \ argument 59 #define __swap64md(x) ({ \ argument
|
| /bionic/libc/arch-mips64/include/machine/ |
| D | endian.h | 35 #define __swap16md(x) ({ \ argument 42 #define __swap32md(x) ({ \ argument 49 #define __swap64md(x) ({ \ argument
|
| /bionic/libc/arch-mips/include/machine/ |
| D | endian.h | 35 #define __swap16md(x) ({ \ argument 42 #define __swap32md(x) ({ \ argument 49 #define __swap64md(x) ({ \ argument
|
| /bionic/libm/ |
| D | sincos.c | 38 void sincos(double x, double* p_sin, double* p_cos) { in sincos() 43 void sincosf(float x, float* p_sinf, float* p_cosf) { in sincosf() 48 void sincosl(long double x, long double* p_sinl, long double* p_cosl) { in sincosl()
|
| /bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
| D | gdtoa.h | 50 #define ANSI(x) () argument 53 #define ANSI(x) x argument 144 #define __strtopd(s,se,x) strtord(s,se,1,x) argument 145 #define __strtopdd(s,se,x) strtordd(s,se,1,x) argument 146 #define __strtopf(s,se,x) strtorf(s,se,1,x) argument 147 #define __strtopQ(s,se,x) strtorQ(s,se,1,x) argument 148 #define __strtopx(s,se,x) strtorx(s,se,1,x) argument 149 #define __strtopxL(s,se,x) strtorxL(s,se,1,x) argument
|