Home
last modified time | relevance | path

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

12345678910>>...14

/bionic/libc/kernel/uapi/linux/byteorder/
Dbig_endian.h29 #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 …]
Dlittle_endian.h29 #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 …]
/bionic/libc/include/sys/
Dendian.h48 #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 …]
Dparam.h50 #define howmany(x, y) (((x)+((y)-1))/(y)) argument
52 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) argument
61 #define powerof2(x) \ argument
/bionic/libm/
Dbuiltins.cpp21 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 …]
Dfake_long_double.c40 long double powl(long double x, long double y) { return pow(x, y); } in powl()
42 void sincosl(long double x, long double* s, long double* c) { sincos(x, (double*) s, (double*) c); } in sincosl()
47 long double tgammal(long double x) { return tgamma(x); } in tgammal()
52 long double expl(long double x) { return exp(x); } in expl()
53 long double exp2l(long double x) { return exp2(x); } in exp2l()
54 long double logl(long double x) { return log(x); } in logl()
55 long double log2l(long double x) { return log2(x); } in log2l()
/bionic/linker/
Dlinker_debug.h64 #define _PRINTVF(v, x...) \ argument
69 #define _PRINTVF(v, x...) \ argument
75 #define PRINT(x...) _PRINTVF(-1, x) argument
76 #define INFO(x...) _PRINTVF(0, x) argument
77 #define TRACE(x...) _PRINTVF(1, x) argument
80 #define DEBUG(x...) _PRINTVF(2, "DEBUG: " x) argument
82 #define DEBUG(x...) do {} while (0) argument
85 #define TRACE_TYPE(t, x...) do { if (DO_TRACE_##t) { TRACE(x); } } while (0) argument
102 #define MARK(x) do {} while (0) argument
Dlinker_globals.h39 #define DL_ERR(fmt, x...) \ argument
44 #define DL_WARN(fmt, x...) \ argument
54 #define DL_ERR_AND_LOG(fmt, x...) \ argument
/bionic/libc/kernel/uapi/linux/
Dswab.h24 #define ___constant_swab16(x) ((__u16) ((((__u16) (x) & (__u16) 0x00ffU) << 8) | (((__u16) (x) & (_… argument
25 #define ___constant_swab32(x) ((__u32) ((((__u32) (x) & (__u32) 0x000000ffUL) << 24) | (((__u32) (x… argument
26 #define ___constant_swab64(x) ((__u64) ((((__u64) (x) & (__u64) 0x00000000000000ffULL) << 56) | (((… argument
27 #define ___constant_swahw32(x) ((__u32) ((((__u32) (x) & (__u32) 0x0000ffffUL) << 16) | (((__u32) (… argument
28 #define ___constant_swahb32(x) ((__u32) ((((__u32) (x) & (__u32) 0x00ff00ffUL) << 8) | (((__u32) (x… argument
53 #define __swab16(x) (__u16) __builtin_bswap16((__u16) (x)) argument
54 #define __swab32(x) (__u32) __builtin_bswap32((__u32) (x)) argument
55 #define __swab64(x) (__u64) __builtin_bswap64((__u64) (x)) argument
56 #define __swahw32(x) (__builtin_constant_p((__u32) (x)) ? ___constant_swahw32(x) : __fswahw32(x)) argument
57 #define __swahb32(x) (__builtin_constant_p((__u32) (x)) ? ___constant_swahb32(x) : __fswahb32(x)) argument
Dconst.h29 #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
Da.out.h66 #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 …]
/bionic/linker/arch/arm64/
Dtlsdesc_resolver.S90 #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/include/
Dbyteswap.h43 #define bswap_16(x) __swap16(x) argument
49 #define bswap_32(x) __swap32(x) argument
55 #define bswap_64(x) __swap64(x) argument
Dmath.h63 #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 …]
Dcomplex.h47 #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/libc/private/
Dbionic_page.h24 #define PAGE_START(x) ((x) & PAGE_MASK) argument
27 #define PAGE_OFFSET(x) ((x) & ~PAGE_MASK) argument
31 #define PAGE_END(x) PAGE_START((x) + (PAGE_SIZE-1)) argument
Dbionic_asm_x86.h47 #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
Dbionic_asm_x86_64.h39 #define PIC_PLT(x) x@PLT argument
40 #define PIC_GOT(x) x@GOTPCREL(%rip) argument
/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_scalbln.c38 scalbln(double x, long n) in scalbln()
45 scalblnf(float x, long n) in scalblnf()
52 scalblnl(long double x, long n) in scalblnl()
De_sqrtl.c40 inc(long double x) in inc()
56 dec(long double x) in dec()
78 sqrtl(long double x) in sqrtl()
Dcatrigl.c53 #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
Dcatrig.c39 #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
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
Dgdtoa.h50 #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
/bionic/libc/arch-common/bionic/
Dasm_multiarch.h30 # define ASM_PTR_SIZE(x) .quad x argument
33 # define ASM_PTR_SIZE(x) .long x argument
/bionic/libc/upstream-netbsd/android/include/
Dreentrant.h30 #define mutex_lock(x) pthread_mutex_lock(x) argument
31 #define mutex_unlock(x) pthread_mutex_unlock(x) argument

12345678910>>...14