/bionic/libc/kernel/common/asm-generic/ |
D | ioctl.h | 34 #define _IOC(dir,type,nr,size) (((dir) << _IOC_DIRSHIFT) | ((type) << _IOC_TYPESHIFT) | ((nr)… argument 39 #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0) argument 40 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size))) argument 41 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) argument 42 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) argument 43 #define _IOR_BAD(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size)) argument 44 #define _IOW_BAD(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size)) argument 45 #define _IOWR_BAD(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size)) argument
|
D | percpu.h | 18 #define DEFINE_PER_CPU(type, name) __typeof__(type) per_cpu__##name argument 24 #define DECLARE_PER_CPU(type, name) extern __typeof__(type) per_cpu__##name argument
|
/bionic/libc/kernel/common/linux/ |
D | android_alarm.h | 39 #define ANDROID_ALARM_CLEAR(type) _IO('a', 0 | ((type) << 4)) argument 41 #define ANDROID_ALARM_SET(type) _IOW('a', 2 | ((type) << 4), struct timespec) argument 42 #define ANDROID_ALARM_SET_AND_WAIT(type) _IOW('a', 3 | ((type) << 4), struct timespec) argument 43 #define ANDROID_ALARM_GET_TIME(type) _IOW('a', 4 | ((type) << 4), struct timespec) argument
|
D | moduleparam.h | 32 #define __MODULE_PARM_TYPE(name, _type) __MODULE_INFO(parmtype, name##type, #name ":" _type) 67 …type, perm) param_check_##type(name, &(value)); module_param_call(name, param_set_##type, para… argument 69 #define module_param(name, type, perm) module_param_named(name, name, type, perm) argument 73 #define __param_check(name, p, type) static inline type *__check_##name(void) { return(p); } argument 95 …type, nump, perm) static struct kparam_array __param_arr_##name = { ARRAY_SIZE(array), nump, p… argument 97 #define module_param_array(name, type, nump, perm) module_param_array_named(name, name, type, num… argument
|
D | percpu.h | 29 #define alloc_percpu(type) ((type *)(__alloc_percpu(sizeof(type)))) argument
|
/bionic/libc/kernel/arch-x86/asm/ |
D | io_32.h | 25 …IO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out##bwl##_local(v… argument 26 …type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__… argument
|
D | desc_defs.h | 22 unsigned base1 : 8, type : 4, s : 1, dpl : 2, p : 1; member 39 unsigned ist : 3, zero0 : 5, type : 5, dpl : 2, p : 1; member 57 unsigned base1 : 8, type : 5, dpl : 2, p : 1; member
|
/bionic/libc/kernel/arch-x86/asm/xen/ |
D | hypercall.h | 22 …type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res) : [call] "m" (h… argument 24 …type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" : "=a" (__res), "=b"… argument 26 …type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call %[call]" : "=a" (… argument 28 …type, name, a1, a2, a3) ({ long __res, __ign1, __ign2, __ign3; asm volatile ( "call %[call]… argument 30 …type, name, a1, a2, a3, a4) ({ long __res, __ign1, __ign2, __ign3, __ign4; asm volatile ( "… argument 32 …type, name, a1, a2, a3, a4, a5) ({ long __res, __ign1, __ign2, __ign3, __ign4, __ign5; asm vo… argument
|
/bionic/libc/kernel/common/linux/netfilter_ipv4/ |
D | ipt_sctp.h | 47 #define bytes(type) (sizeof(type) * 8) argument 49 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (typ… argument 51 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] &= ~(1 << … argument 53 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ (chunkmap[type / bytes (u_int32_t)] & (1 << (t… argument
|
/bionic/libc/kernel/common/linux/netfilter/ |
D | xt_sctp.h | 49 #define bytes(type) (sizeof(type) * 8) argument 51 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (typ… argument 53 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] &= ~(1 << … argument 55 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ (chunkmap[type / bytes (u_int32_t)] & (1 << (t… argument
|
/bionic/libm/src/ |
D | s_lround.c | 32 #ifndef type 34 #define type double macro 50 static const type dtype_min = DTYPE_MIN - 0.5; 51 static const type dtype_max = DTYPE_MAX + 0.5; 56 fn(type x) in fn()
|
D | s_fdim.c | 32 #define DECL(type, fn) \ argument 33 type \ 34 fn(type x, type y) \
|
D | s_nearbyint.c | 40 #define DECL(type, fn, rint) \ argument 41 type \ 42 fn(type x) \ 44 type ret; \
|
D | s_lrint.c | 31 #ifndef type 33 #define type double macro 47 fn(type x) in fn()
|
/bionic/libc/kernel/arch-arm/asm/ |
D | domain.h | 24 #define domain_val(dom,type) ((type) << (2*(dom))) argument 29 #define modify_domain(dom,type) do { } while (0) argument
|
/bionic/libc/include/netinet/ |
D | ip_icmp.h | 205 #define ICMP_INFOTYPE(type) \ argument 206 ((type) == ICMP_ECHOREPLY || (type) == ICMP_ECHO || \ 207 (type) == ICMP_ROUTERADVERT || (type) == ICMP_ROUTERSOLICIT || \ 208 (type) == ICMP_TSTAMP || (type) == ICMP_TSTAMPREPLY || \ 209 (type) == ICMP_IREQ || (type) == ICMP_IREQREPLY || \ 210 (type) == ICMP_MASKREQ || (type) == ICMP_MASKREPLY)
|
/bionic/libc/tzcode/ |
D | private.h | 145 Please use a compiler that supports a 64-bit integer type (or wider); 263 #define TYPE_BIT(type) (sizeof (type) * CHAR_BIT) argument 267 #define TYPE_SIGNED(type) (((type) -1) < 0) argument 276 #define TYPE_INTEGRAL(type) (((type) 0.5) != 0.5) argument 286 #define INT_STRLEN_MAXIMUM(type) \ argument 287 ((TYPE_BIT(type) - TYPE_SIGNED(type)) * 302 / 1000 + \ 288 1 + TYPE_SIGNED(type))
|
/bionic/libc/arch-x86/bionic/ |
D | crtbegin_so.S | 13 .type _init, @function 19 .type __INIT_ARRAY__, @object 26 .type __FINI_ARRAY__, @object 34 .type __CTOR_LIST__, @object
|
D | atomics_x86.S | 12 .type __futex_wait, @function 32 .type __futex_wake, @function 47 .type __futex_syscall3, @function 62 .type __futex_syscall4, @function 81 .type __atomic_cmpxchg, @function 101 .type __atomic_swap, @function 119 .type __atomic_dec, @function 148 .type __atomic_inc, @function
|
/bionic/libc/unistd/ |
D | popen.c | 52 popen(const char *program, const char *type) in popen() argument 59 if ((*type != 'r' && *type != 'w') || type[1] != '\0') { in popen() 89 if (*type == 'r') { in popen() 116 if (*type == 'r') { in popen() 117 iop = fdopen(pdes[0], type); in popen() 120 iop = fdopen(pdes[1], type); in popen()
|
/bionic/libc/kernel/arch-arm/asm/arch/ |
D | board.h | 117 int type:4; member 160 #define omap_get_config(tag, type) ((const type *) __omap_get_config((tag), sizeof(type), 0)) argument 161 #define omap_get_nr_config(tag, type, nr) ((const type *) __omap_get_config((tag), sizeof(type), … argument
|
/bionic/libc/include/sys/ |
D | queue.h | 84 #define LIST_HEAD(name, type) \ argument 86 struct type *lh_first; /* first element */ \ 92 #define LIST_ENTRY(type) \ argument 94 struct type *le_next; /* next element */ \ 95 struct type **le_prev; /* address of previous next element */ \ 150 #define SLIST_HEAD(name, type) \ argument 152 struct type *slh_first; /* first element */ \ 158 #define SLIST_ENTRY(type) \ argument 160 struct type *sle_next; /* next element */ \ 184 #define SLIST_REMOVE(head, elm, type, field) do { \ argument [all …]
|
/bionic/libc/arch-arm/bionic/ |
D | atomics_arm.S | 32 .type __atomic_cmpxchg, %function 34 .type __atomic_swap, %function 36 .type __atomic_dec, %function 38 .type __atomic_inc, %function 181 .type __futex_wait, %function 184 .type __futex_wake, %function 187 .type __futex_syscall3, %function 190 .type __futex_syscall4, %function
|
/bionic/libc/private/isc/ |
D | list.h | 24 #define LIST(type) struct { type *head, *tail; } argument 28 #define LINK(type) struct { type *prev, *next; } argument 29 #define INIT_LINK_TYPE(elt, link, type) \ argument 31 (elt)->link.prev = (type *)(-1); \ 32 (elt)->link.next = (type *)(-1); \ 66 #define UNLINK_TYPE(list, elt, link, type) \ argument 77 INIT_LINK_TYPE(elt, link, type); \
|
/bionic/libc/netbsd/resolv/ |
D | res_query.c | 129 int class, int type, /* class and type of query */ in res_nquery() argument 145 printf(";; res_query(%s, %d, %d)\n", name, class, type); in res_nquery() 148 n = res_nmkquery(statp, QUERY, name, class, type, NULL, 0, NULL, in res_nquery() 223 int class, int type, /* class and type of query */ in res_nsearch() argument 248 return (res_nquery(statp, cp, class, type, answer, anslen)); in res_nsearch() 257 ret = res_nquerydomain(statp, name, NULL, class, type, in res_nsearch() 285 class, type, in res_nsearch() 341 ret = res_nquerydomain(statp, name, NULL, class, type, in res_nsearch() 371 int class, int type, /* class and type of query */ in res_nquerydomain() argument 382 name, domain?domain:"<Nil>", class, type); in res_nquerydomain() [all …]
|