/bionic/libc/include/netinet/ |
D | in6.h | 33 #define IN6_IS_ADDR_UNSPECIFIED(a) \ argument 39 #define IN6_IS_ADDR_LOOPBACK(a) \ argument 45 #define IN6_IS_ADDR_V4COMPAT(a) \ argument 52 #define IN6_IS_ADDR_V4MAPPED(a) \ argument 57 #define IN6_IS_ADDR_LINKLOCAL(a) \ argument 60 #define IN6_IS_ADDR_SITELOCAL(a) \ argument 64 #define IN6_IS_ADDR_ULA(a) \ argument 67 #define IN6_IS_ADDR_MULTICAST(a) \ argument 78 #define IPV6_ADDR_MC_SCOPE(a) \ argument 81 #define IN6_IS_ADDR_MC_NODELOCAL(a) \ argument [all …]
|
/bionic/libc/include/sys/ |
D | time.h | 45 #define timerclear(a) \ argument 48 #define timerisset(a) \ argument 51 #define timercmp(a, b, op) \ argument 56 #define timeradd(a, b, res) \ argument 66 #define timersub(a, b, res) \ argument
|
/bionic/libc/kernel/arch-arm/asm/arch/ |
D | io.h | 19 #define __io(a) ((void __iomem *)(PCIO_BASE + (a))) argument 20 #define __mem_pci(a) (a) argument 26 #define omap_readb(a) (*(volatile unsigned char *)IO_ADDRESS(a)) argument 27 #define omap_readw(a) (*(volatile unsigned short *)IO_ADDRESS(a)) argument 28 #define omap_readl(a) (*(volatile unsigned int *)IO_ADDRESS(a)) argument 30 #define omap_writeb(v,a) (*(volatile unsigned char *)IO_ADDRESS(a) = (v)) argument 31 #define omap_writew(v,a) (*(volatile unsigned short *)IO_ADDRESS(a) = (v)) argument 32 #define omap_writel(v,a) (*(volatile unsigned int *)IO_ADDRESS(a) = (v)) argument
|
/bionic/libc/stdlib/ |
D | qsort.c | 37 #define min(a, b) (a) < (b) ? a : b argument 53 #define SWAPINIT(a, es) swaptype = ((char *)a - (char *)0) % sizeof(long) || \ argument 57 swapfunc(char *a, char *b, int n, int swaptype) in swapfunc() 65 #define swap(a, b) \ argument 73 #define vecswap(a, b, n) if ((n) > 0) swapfunc(a, b, n, swaptype) argument 76 med3(char *a, char *b, char *c, int (*cmp)(const void *, const void *)) in med3() 88 char *a = aa; in qsort() local
|
D | strtod.c | 198 #define Sign_Extend(a,b) if (b < 0) a |= 0xffff0000; argument 227 #define Storeinc(a,b,c) \ argument 231 #define Storeinc(a,b,c) \ argument 328 #define rounded_product(a,b) a = rnd_prod(a, b) argument 329 #define rounded_quotient(a,b) a = rnd_quot(a, b) argument 336 #define rounded_product(a,b) a *= b argument 337 #define rounded_quotient(a,b) a /= b argument 469 multadd in multadd() argument 666 (a, b) Bigint *a, *b; in mult() argument 885 (a, b) Bigint *a, *b; in cmp() argument [all …]
|
/bionic/libc/bionic/ |
D | pthread_internal.h | 53 static __inline__ void timespec_add( struct timespec* a, const struct timespec* b ) in timespec_add() 63 static __inline__ void timespec_sub( struct timespec* a, const struct timespec* b ) in timespec_sub() 73 static __inline__ void timespec_zero( struct timespec* a ) in timespec_zero() 78 static __inline__ int timespec_is_zero( const struct timespec* a ) in timespec_is_zero() 83 static __inline__ int timespec_cmp( const struct timespec* a, const struct timespec* b ) in timespec_cmp() 92 static __inline__ int timespec_cmp0( const struct timespec* a ) in timespec_cmp0()
|
D | md5.c | 67 #define DOIT(a,b,c,d,k,s,i,OP) \ argument 70 #define DO1(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,F) argument 71 #define DO2(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,G) argument 72 #define DO3(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,H) argument 73 #define DO4(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,I) argument 202 unsigned int a:32; member
|
D | hash.h | 45 #define min(a,b) (((a)>(b))?(b):(a)) argument
|
D | sha1.c | 80 do_R01(u_int32_t *a, u_int32_t *b, u_int32_t *c, u_int32_t *d, u_int32_t *e, CHAR64LONG16 *block) in do_R01() 90 do_R2(u_int32_t *a, u_int32_t *b, u_int32_t *c, u_int32_t *d, u_int32_t *e, CHAR64LONG16 *block) in do_R2() 100 do_R3(u_int32_t *a, u_int32_t *b, u_int32_t *c, u_int32_t *d, u_int32_t *e, CHAR64LONG16 *block) in do_R3() 110 do_R4(u_int32_t *a, u_int32_t *b, u_int32_t *c, u_int32_t *d, u_int32_t *e, CHAR64LONG16 *block) in do_R4() 127 u_int32_t a, b, c, d, e; local
|
/bionic/libc/kernel/arch-sh/asm/ |
D | io_generic.h | 12 #define IO_CONCAT(a,b) _IO_CONCAT(a,b) argument 13 #define _IO_CONCAT(a,b) a ## _ ## b argument
|
D | segment.h | 26 #define segment_eq(a,b) ((a).seg == (b).seg) argument
|
/bionic/libc/kernel/arch-arm/asm/ |
D | a.out.h | 30 #define N_TXTADDR(a) (0x00008000) argument 32 #define N_TRSIZE(a) ((a).a_trsize) argument 33 #define N_DRSIZE(a) ((a).a_drsize) argument 34 #define N_SYMSIZE(a) ((a).a_syms) argument
|
/bionic/libc/netbsd/nameser/ |
D | ns_samedomain.c | 54 ns_samedomain(const char *a, const char *b) { in ns_samedomain() 153 ns_subdomain(const char *a, const char *b) { in ns_subdomain() 201 ns_samename(const char *a, const char *b) { in ns_samename()
|
/bionic/libc/kernel/arch-x86/asm/ |
D | a.out.h | 27 #define N_TRSIZE(a) ((a).a_trsize) argument 28 #define N_DRSIZE(a) ((a).a_drsize) argument 29 #define N_SYMSIZE(a) ((a).a_syms) argument
|
D | apic_32.h | 28 #define apic_printk(v, s, a...) do { if ((v) <= apic_verbosity) printk(s, ##a); } while (0) argument
|
D | desc_32.h | 55 #define write_ldt_entry(dt, entry, a, b) write_dt_entry(dt, entry, a, b) argument 56 #define write_gdt_entry(dt, entry, a, b) write_dt_entry(dt, entry, a, b) argument 57 #define write_idt_entry(dt, entry, a, b) write_dt_entry(dt, entry, a, b) argument
|
/bionic/libc/kernel/common/linux/ |
D | jiffies.h | 64 #define time_after(a,b) (typecheck(unsigned long, a) && typecheck(unsigned long, b) && ((long… argument 65 #define time_before(a,b) time_after(b,a) argument 66 #define time_after_eq(a,b) (typecheck(unsigned long, a) && typecheck(unsigned long, b) && ((l… argument 67 #define time_before_eq(a,b) time_after_eq(b,a) argument
|
D | version.h | 13 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) argument
|
D | in.h | 169 #define IN_CLASSA(a) ((((long int) (a)) & 0x80000000) == 0) argument 175 #define IN_CLASSB(a) ((((long int) (a)) & 0xc0000000) == 0x80000000) argument 181 #define IN_CLASSC(a) ((((long int) (a)) & 0xe0000000) == 0xc0000000) argument 186 #define IN_CLASSD(a) ((((long int) (a)) & 0xf0000000) == 0xe0000000) argument 187 #define IN_MULTICAST(a) IN_CLASSD(a) argument 190 #define IN_EXPERIMENTAL(a) ((((long int) (a)) & 0xf0000000) == 0xf0000000) argument 191 #define IN_BADCLASS(a) IN_EXPERIMENTAL((a)) argument 202 #define IN_LOOPBACK(a) ((((long int) (a)) & 0xff000000) == 0x7f000000) argument
|
/bionic/libm/bsdsrc/ |
D | mathimpl.h | 64 double a; member
|
/bionic/libc/netbsd/resolv/ |
D | res_mkquery.c | 105 #define UNUSED(a) (void)&a argument 107 #define UNUSED(a) a = a argument
|
/bionic/libm/src/ |
D | e_jnf.c | 34 float a, b, temp, di; in __ieee754_jnf() local 168 float a, b, temp; in __ieee754_ynf() local
|
D | e_jn.c | 58 double a, b, temp, di; in __ieee754_jn() local 215 double a, b, temp; in __ieee754_yn() local
|
D | e_hypotf.c | 26 float a=x,b=y,t1,t2,y1,y2,w; in __ieee754_hypotf() local
|
/bionic/libc/netbsd/net/ |
D | reentrant.h | 148 #define mutex_init(m, a) __libc_mutex_init((m), (a)) argument 167 #define cond_init(c, t, a) __libc_cond_init((c), (a)) argument 184 #define rwlock_init(l, a) __libc_rwlock_init((l), (a)) argument 222 #define thr_create(tp, ta, f, a) __libc_thr_create((tp), (ta), (f), (a)) argument
|