Home
last modified time | relevance | path

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

12345678910>>...14

/bionic/libc/kernel/uapi/linux/byteorder/
Dbig_endian.h31 #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 …]
Dlittle_endian.h31 #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/kernel/uapi/linux/
Dswab.h25 #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
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) (x… argument
52 #define __swab16(x) (__u16) __builtin_bswap16((__u16) (x)) argument
55 #define __swab16(x) (__builtin_constant_p((__u16) (x)) ? ___constant_swab16(x) : __fswab16(x)) argument
59 #define __swab32(x) (__u32) __builtin_bswap32((__u32) (x)) argument
61 #define __swab32(x) (__builtin_constant_p((__u32) (x)) ? ___constant_swab32(x) : __fswab32(x)) argument
65 #define __swab64(x) (__u64) __builtin_bswap64((__u64) (x)) argument
[all …]
Da.out.h77 #define N_BADMAG(x) (N_MAGIC(x) != OMAGIC && N_MAGIC(x) != NMAGIC && N_MAGIC(x) != ZMAGIC && N_MAGI… 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) == Q… 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 …]
Dmtio.h115 #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 …]
/bionic/libc/include/sys/
Dendian.h58 #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 …]
Dcdefs.h47 #define __has_feature(x) 0 argument
50 #define __has_include(x) 0 argument
53 #define __has_builtin(x) 0 argument
56 #define __has_attribute(x) 0 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
99 #define __CONCAT(x,y) x/**/y argument
100 #define __STRING(x) "x" argument
[all …]
Dparam.h43 #define howmany(x, y) (((x)+((y)-1))/(y)) argument
45 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) argument
46 #define powerof2(x) ((((x)-1)&(x))==0) argument
/bionic/linker/
Dlinker_debug.h63 #define _PRINTVF(v, x...) \ argument
68 #define _PRINTVF(v, x...) \ argument
74 #define PRINT(x...) _PRINTVF(-1, x) argument
75 #define INFO(x...) _PRINTVF(0, x) argument
76 #define TRACE(x...) _PRINTVF(1, x) argument
79 #define DEBUG(x...) _PRINTVF(2, "DEBUG: " x) argument
81 #define DEBUG(x...) do {} while (0) argument
84 #define TRACE_TYPE(t, x...) do { if (DO_TRACE_##t) { TRACE(x); } } while (0) argument
101 #define MARK(x) do {} while (0) argument
Dlinker_globals.h39 #define DL_ERR(fmt, x...) \ argument
45 #define DL_WARN(fmt, x...) \ argument
53 #define DL_ERR_AND_LOG(fmt, x...) \ argument
/bionic/libm/
Dfabs.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()
Dsincos.c38 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/include/
Dcomplex.h48 #define CMPLX(x, y) ((double complex){ x, y }) argument
49 #define CMPLXF(x, y) ((float complex){ x, y }) argument
50 #define CMPLXL(x, y) ((long double complex){ x, y }) argument
52 #define CMPLX(x, y) __builtin_complex((double)(x), (double)(y)) argument
53 #define CMPLXF(x, y) __builtin_complex((float)(x), (float)(y)) argument
54 #define CMPLXL(x, y) __builtin_complex((long double)(x), (long double)(y)) argument
Dbyteswap.h35 #define bswap_16(x) __swap16(x) argument
36 #define bswap_32(x) __swap32(x) argument
37 #define bswap_64(x) __swap64(x) argument
Dmath.h55 #define fpclassify(x) \ argument
58 #define isfinite(x) __builtin_isfinite(x) argument
59 #define isinf(x) __builtin_isinf(x) argument
60 #define isnan(x) __builtin_isnan(x) argument
61 #define isnormal(x) __builtin_isnormal(x) argument
63 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument
64 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument
65 #define isless(x, y) __builtin_isless((x), (y)) argument
66 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument
67 #define islessgreater(x, y) __builtin_islessgreater((x), (y)) argument
[all …]
/bionic/libm/upstream-freebsd/lib/msun/src/
Dimprecise.c38 #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()
Ds_scalbln.c36 scalbln(double x, long n) in scalbln()
43 scalblnf(float x, long n) in scalblnf()
50 scalblnl(long double x, long n) in scalblnl()
De_sqrtl.c38 inc(long double x) in inc()
54 dec(long double x) in dec()
76 sqrtl(long double x) in sqrtl()
Dcatrig.c37 #define isinf(x) (fabs(x) == INFINITY) argument
39 #define isnan(x) ((x) != (x)) argument
42 #define signbit(x) (__builtin_signbit(x)) argument
153 do_hard_work(double x, double y, double *rx, int *B_is_usable, double *B, in do_hard_work()
277 double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinh() local
358 double x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; in cacos() local
457 double x, y; in clog_for_large_values() local
504 sum_squares(double x, double y) in sum_squares()
524 real_part_reciprocal(double x, double y) in real_part_reciprocal()
569 double x, y, ax, ay, rx, ry; in catanh() local
Dcatrigf.c51 #define isinf(x) (fabsf(x) == INFINITY) argument
53 #define isnan(x) ((x) != (x)) argument
56 #define signbit(x) (__builtin_signbitf(x)) argument
88 do_hard_work(float x, float y, float *rx, int *B_is_usable, float *B, in do_hard_work()
148 float x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinhf() local
203 float x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; in cacosf() local
280 float x, y; in clog_for_large_values() local
304 sum_squares(float x, float y) in sum_squares()
314 real_part_reciprocal(float x, float y) in real_part_reciprocal()
341 float x, y, ax, ay, rx, ry; in catanhf() local
/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
/bionic/libc/arch-x86/include/machine/
Dasm.h48 #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/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/arch-x86_64/include/machine/
Dasm.h40 #define PIC_PLT(x) x@PLT argument
41 #define PIC_GOT(x) x@GOTPCREL(%rip) argument

12345678910>>...14