/bionic/libc/kernel/uapi/linux/byteorder/ |
D | little_endian.h | 29 #define __constant_htonl(x) ((__force __be32) ___constant_swab32((x))) argument 30 #define __constant_ntohl(x) ___constant_swab32((__force __be32) (x)) argument 31 #define __constant_htons(x) ((__force __be16) ___constant_swab16((x))) argument 32 #define __constant_ntohs(x) ___constant_swab16((__force __be16) (x)) argument 33 #define __constant_cpu_to_le64(x) ((__force __le64) (__u64) (x)) argument 34 #define __constant_le64_to_cpu(x) ((__force __u64) (__le64) (x)) argument 35 #define __constant_cpu_to_le32(x) ((__force __le32) (__u32) (x)) argument 36 #define __constant_le32_to_cpu(x) ((__force __u32) (__le32) (x)) argument 37 #define __constant_cpu_to_le16(x) ((__force __le16) (__u16) (x)) argument 38 #define __constant_le16_to_cpu(x) ((__force __u16) (__le16) (x)) argument [all …]
|
D | big_endian.h | 29 #define __constant_htonl(x) ((__force __be32) (__u32) (x)) argument 30 #define __constant_ntohl(x) ((__force __u32) (__be32) (x)) argument 31 #define __constant_htons(x) ((__force __be16) (__u16) (x)) argument 32 #define __constant_ntohs(x) ((__force __u16) (__be16) (x)) argument 33 #define __constant_cpu_to_le64(x) ((__force __le64) ___constant_swab64((x))) argument 34 #define __constant_le64_to_cpu(x) ___constant_swab64((__force __u64) (__le64) (x)) argument 35 #define __constant_cpu_to_le32(x) ((__force __le32) ___constant_swab32((x))) argument 36 #define __constant_le32_to_cpu(x) ___constant_swab32((__force __u32) (__le32) (x)) argument 37 #define __constant_cpu_to_le16(x) ((__force __le16) ___constant_swab16((x))) argument 38 #define __constant_le16_to_cpu(x) ___constant_swab16((__force __u16) (__le16) (x)) argument [all …]
|
/bionic/libc/include/sys/ |
D | endian.h | 48 #define __swap64(x) __BIONIC_CAST(static_cast,uint64_t,__builtin_bswap64(x)) argument 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(__BIONIC_CAST(static_cast,u_int32_t,(x))) argument 74 #define NTOHS(x) (x) = ntohs(__BIONIC_CAST(static_cast,u_int16_t,(x))) argument 75 #define HTONL(x) (x) = htonl(__BIONIC_CAST(static_cast,u_int32_t,(x))) argument [all …]
|
/bionic/libm/ |
D | builtins.cpp | 21 double fabs(double x) { in fabs() 35 float fabsf(float x) { in fabsf() 40 long double fabsl(long double x) { return __builtin_fabsl(x); } in fabsl() 42 long double fabsl(long double x) { in fabsl() 49 float ceilf(float x) { return __builtin_ceilf(x); } in ceilf() 50 double ceil(double x) { return __builtin_ceil(x); } in ceil() 52 float floorf(float x) { return __builtin_floorf(x); } in floorf() 53 double floor(double x) { return __builtin_floor(x); } in floor() 55 float fmaf(float x, float y, float z) { return __builtin_fmaf(x, y, z); } in fmaf() 56 double fma(double x, double y, double z) { return __builtin_fma(x, y, z); } in fma() [all …]
|
/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) (x… argument 27 #define ___constant_swab64(x) ((__u64) ((((__u64) (x) & (__u64) 0x00000000000000ffULL) << 56) | (((… argument 28 #define ___constant_swahw32(x) ((__u32) ((((__u32) (x) & (__u32) 0x0000ffffUL) << 16) | (((__u32) (… argument 29 #define ___constant_swahb32(x) ((__u32) ((((__u32) (x) & (__u32) 0x00ff00ffUL) << 8) | (((__u32) (x… argument 54 #define __swab16(x) (__u16) __builtin_bswap16((__u16) (x)) argument 55 #define __swab32(x) (__u32) __builtin_bswap32((__u32) (x)) argument 56 #define __swab64(x) (__u64) __builtin_bswap64((__u64) (x)) argument 60 #define __swahw32(x) (__builtin_constant_p((__u32) (x)) ? ___constant_swahw32(x) : __fswahw32(x)) argument 61 #define __swahb32(x) (__builtin_constant_p((__u32) (x)) ? ___constant_swahb32(x) : __fswahb32(x)) argument
|
D | a.out.h | 66 #define N_BADMAG(x) (N_MAGIC(x) != OMAGIC && N_MAGIC(x) != NMAGIC && N_MAGIC(x) != ZMAGIC && N_MAGI… argument 68 #define _N_HDROFF(x) (1024 - sizeof(struct exec)) argument 70 #define N_TXTOFF(x) (N_MAGIC(x) == ZMAGIC ? _N_HDROFF((x)) + sizeof(struct exec) : (N_MAGIC(x) == Q… argument 73 #define N_DATOFF(x) (N_TXTOFF(x) + (x).a_text) argument 76 #define N_TRELOFF(x) (N_DATOFF(x) + (x).a_data) argument 79 #define N_DRELOFF(x) (N_TRELOFF(x) + N_TRSIZE(x)) argument 82 #define N_SYMOFF(x) (N_DRELOFF(x) + N_DRSIZE(x)) argument 85 #define N_STROFF(x) (N_SYMOFF(x) + N_SYMSIZE(x)) argument 88 #define N_TXTADDR(x) (N_MAGIC(x) == QMAGIC ? PAGE_SIZE : 0) argument 98 #define _N_SEGMENT_ROUND(x) ALIGN(x, SEGMENT_SIZE) argument [all …]
|
D | const.h | 29 #define _UL(x) (_AC(x, UL)) argument 30 #define _ULL(x) (_AC(x, ULL)) argument 31 #define _BITUL(x) (_UL(1) << (x)) argument 32 #define _BITULL(x) (_ULL(1) << (x)) argument
|
D | mtio.h | 96 #define GMT_EOF(x) ((x) & 0x80000000) argument 97 #define GMT_BOT(x) ((x) & 0x40000000) argument 98 #define GMT_EOT(x) ((x) & 0x20000000) argument 99 #define GMT_SM(x) ((x) & 0x10000000) argument 100 #define GMT_EOD(x) ((x) & 0x08000000) argument 101 #define GMT_WR_PROT(x) ((x) & 0x04000000) argument 102 #define GMT_ONLINE(x) ((x) & 0x01000000) argument 103 #define GMT_D_6250(x) ((x) & 0x00800000) argument 104 #define GMT_D_1600(x) ((x) & 0x00400000) argument 105 #define GMT_D_800(x) ((x) & 0x00200000) argument [all …]
|
/bionic/linker/ |
D | linker_debug.h | 71 #define _PRINTVF(v, x...) \ argument 76 #define PRINT(x...) _PRINTVF(LINKER_VERBOSITY_PRINT, x) argument 77 #define INFO(x...) _PRINTVF(LINKER_VERBOSITY_INFO, x) argument 78 #define TRACE(x...) _PRINTVF(LINKER_VERBOSITY_TRACE, x) argument 81 #define DEBUG(x...) _PRINTVF(LINKER_VERBOSITY_DEBUG, "DEBUG: " x) argument 83 #define DEBUG(x...) do {} while (0) argument 86 #define TRACE_TYPE(t, x...) do { if (DO_TRACE_##t) { TRACE(x); } } while (0) argument
|
D | linker_globals.h | 39 #define DL_ERR(fmt, x...) \ argument 44 #define DL_WARN(fmt, x...) \ argument 54 #define DL_ERR_AND_LOG(fmt, x...) \ argument 60 #define DL_OPEN_ERR(fmt, x...) \ argument 66 #define DL_SYM_ERR(fmt, x...) \ argument
|
/bionic/libc/include/ |
D | math.h | 63 #define fpclassify(x) __builtin_fpclassify(FP_NAN, FP_INFINITE, FP_NORMAL, FP_SUBNORMAL, FP_ZERO, x) argument 65 #define isfinite(x) __builtin_isfinite(x) argument 67 #define isinf(x) __builtin_isinf(x) argument 69 #define isnan(x) __builtin_isnan(x) argument 71 #define isnormal(x) __builtin_isnormal(x) argument 73 #define signbit(x) \ argument 307 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument 308 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument 309 #define isless(x, y) __builtin_isless((x), (y)) argument 310 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument [all …]
|
D | byteswap.h | 43 #define bswap_16(x) __swap16(x) argument 49 #define bswap_32(x) __swap32(x) argument 55 #define bswap_64(x) __swap64(x) argument
|
D | complex.h | 47 #define CMPLX(x, y) ((double complex){ x, y }) argument 48 #define CMPLXF(x, y) ((float complex){ x, y }) argument 49 #define CMPLXL(x, y) ((long double complex){ x, y }) argument
|
/bionic/linker/arch/arm64/ |
D | tlsdesc_resolver.S | 90 #define SAVE_REG(x, slot) \ argument 94 #define SAVE_GPR_PAIR(x, y, slot) \ argument 99 #define SAVE_VEC_PAIR(x, y, slot) \ argument 104 #define RESTORE_REG(x, slot) \ argument 108 #define RESTORE_REG_PAIR(x, y, slot) \ argument
|
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
D | gdtoa.h | 50 #define ANSI(x) () argument 53 #define ANSI(x) x argument 155 #define __strtopd(s,se,x) strtord(s,se,1,x) argument 156 #define __strtopdd(s,se,x) strtordd(s,se,1,x) argument 157 #define __strtopf(s,se,x) strtorf(s,se,1,x) argument 158 #define __strtopQ(s,se,x) strtorQ(s,se,1,x) argument 159 #define __strtopx(s,se,x) strtorx(s,se,1,x) argument 160 #define __strtopxL(s,se,x) strtorxL(s,se,1,x) argument
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | catrig.c | 39 #define isinf(x) (fabs(x) == INFINITY) argument 41 #define isnan(x) ((x) != (x)) argument 44 #define signbit(x) (__builtin_signbit(x)) argument 155 do_hard_work(double x, double y, double *rx, int *B_is_usable, double *B, in do_hard_work() 279 double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinh() local 360 double x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; in cacos() local 459 double x, y; in clog_for_large_values() local 511 sum_squares(double x, double y) in sum_squares() 531 real_part_reciprocal(double x, double y) in real_part_reciprocal() 576 double x, y, ax, ay, rx, ry; in catanh() local
|
D | catrigf.c | 53 #define isinf(x) (fabsf(x) == INFINITY) argument 55 #define isnan(x) ((x) != (x)) argument 58 #define signbit(x) (__builtin_signbitf(x)) argument 90 do_hard_work(float x, float y, float *rx, int *B_is_usable, float *B, in do_hard_work() 150 float x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinhf() local 205 float x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; in cacosf() local 282 float x, y; in clog_for_large_values() local 306 sum_squares(float x, float y) in sum_squares() 316 real_part_reciprocal(float x, float y) in real_part_reciprocal() 343 float x, y, ax, ay, rx, ry; in catanhf() local
|
D | catrigl.c | 53 #define isinf(x) (fabsl(x) == INFINITY) argument 55 #define isnan(x) ((x) != (x)) argument 58 #define signbit(x) (__builtin_signbitl(x)) argument 109 do_hard_work(long double x, long double y, long double *rx, int *B_is_usable, in do_hard_work() 169 long double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinhl() local 225 long double x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; in cacosl() local 302 long double x, y; in clog_for_large_values() local 326 sum_squares(long double x, long double y) in sum_squares() 336 real_part_reciprocal(long double x, long double y) in real_part_reciprocal() 364 long double x, y, ax, ay, rx, ry; in catanhl() local
|
D | math_private.h | 345 #define RETURNI(x) do { \ argument 363 #define ENTERIT(x) argument 364 #define RETURNI(x) RETURNF(x) argument 503 #define nan_mix(x, y) (nan_mix_op((x), (y), +)) argument 504 #define nan_mix_op(x, y, op) (((x) + 0.0L) op ((y) + 0)) argument 545 CMPLXF(float x, float y) in CMPLXF() 557 CMPLX(double x, double y) in CMPLX() 569 CMPLXL(long double x, long double y) in CMPLXL() 593 rnint(__double_t x) in rnint() 613 rnintf(__float_t x) in rnintf() [all …]
|
D | s_scalbln.c | 38 scalbln(double x, long n) in scalbln() 45 scalblnf(float x, long n) in scalblnf() 52 scalblnl(long double x, long n) in scalblnl()
|
D | e_sqrtl.c | 40 inc(long double x) in inc() 56 dec(long double x) in dec() 78 sqrtl(long double x) in sqrtl()
|
/bionic/libc/platform/bionic/ |
D | page.h | 23 #define PAGE_START(x) ((x) & PAGE_MASK) argument 26 #define PAGE_OFFSET(x) ((x) & ~PAGE_MASK) argument 30 #define PAGE_END(x) PAGE_START((x) + (PAGE_SIZE-1)) argument
|
/bionic/libc/kernel/uapi/sound/ |
D | emu10k1.h | 44 #define FXBUS(x) (0x00 + (x)) argument 45 #define EXTIN(x) (0x10 + (x)) argument 46 #define EXTOUT(x) (0x20 + (x)) argument 47 #define FXBUS2(x) (0x30 + (x)) argument 76 #define GPR(x) (FXGPREGBASE + (x)) argument 77 #define ITRAM_DATA(x) (TANKMEMDATAREGBASE + 0x00 + (x)) argument 78 #define ETRAM_DATA(x) (TANKMEMDATAREGBASE + 0x80 + (x)) argument 79 #define ITRAM_ADDR(x) (TANKMEMADDRREGBASE + 0x00 + (x)) argument 80 #define ETRAM_ADDR(x) (TANKMEMADDRREGBASE + 0x80 + (x)) argument 81 #define A_ITRAM_DATA(x) (TANKMEMDATAREGBASE + 0x00 + (x)) argument [all …]
|
/bionic/libc/private/ |
D | bionic_asm_x86.h | 47 #define PIC_PLT(x) x@PLT argument 48 #define PIC_GOT(x) x@GOT(%ebx) argument 49 #define PIC_GOTOFF(x) x@GOTOFF(%ebx) argument
|
/bionic/libc/upstream-netbsd/common/lib/libc/hash/sha1/ |
D | sha1.c | 67 #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30); argument 68 #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30); argument 69 #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30); argument 70 #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30); argument 71 #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30); argument 100 #define nR0(v,w,x,y,z,i) R0(*v,*w,*x,*y,*z,i) argument 101 #define nR1(v,w,x,y,z,i) R1(*v,*w,*x,*y,*z,i) argument 102 #define nR2(v,w,x,y,z,i) R2(*v,*w,*x,*y,*z,i) argument 103 #define nR3(v,w,x,y,z,i) R3(*v,*w,*x,*y,*z,i) argument 104 #define nR4(v,w,x,y,z,i) R4(*v,*w,*x,*y,*z,i) argument
|