Home
last modified time | relevance | path

Searched defs:type (Results 1 – 25 of 99) sorted by relevance

1234

/bionic/libc/kernel/arch-x86/asm/xen/
Dhypercall.h22 #define _hypercall0(type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res… argument
24 #define _hypercall1(type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" :… argument
26 #define _hypercall2(type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call … argument
28 #define _hypercall3(type, name, a1, a2, a3) ({ long __res, __ign1, __ign2, __ign3; asm volatil… argument
30 #define _hypercall4(type, name, a1, a2, a3, a4) ({ long __res, __ign1, __ign2, __ign3, __ign4; … argument
32 #define _hypercall5(type, name, a1, a2, a3, a4, a5) ({ long __res, __ign1, __ign2, __ign3, __ign… argument
/bionic/libc/kernel/common/asm-generic/
Dioctl.h34 #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
Dpercpu.h18 #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/
Dandroid_alarm.h39 #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
Dpercpu.h29 #define alloc_percpu(type) ((type *)(__alloc_percpu(sizeof(type)))) argument
/bionic/libc/kernel/arch-x86/asm/
Dio_32.h25 #define __BUILDIO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out#… argument
26 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { … argument
/bionic/libc/kernel/arch-arm/asm/
Ddomain.h24 #define domain_val(dom,type) ((type) << (2*(dom))) argument
29 #define modify_domain(dom,type) do { } while (0) argument
/bionic/libm/src/
Ds_fdim.c32 #define DECL(type, fn) \ argument
Ds_nearbyint.c40 #define DECL(type, fn, rint) \ argument
Ds_llrintf.c4 #define type float macro
Ds_llrint.c4 #define type double macro
Ds_lrintf.c4 #define type float macro
Ds_lroundl.c4 #define type long double macro
Ds_llroundf.c4 #define type float macro
Ds_lroundf.c4 #define type float macro
Ds_llroundl.c4 #define type long double macro
Ds_llround.c4 #define type double macro
Ds_lrint.c33 #define type double macro
/bionic/libc/include/sys/
Dqueue.h84 #define LIST_HEAD(name, type) \ argument
92 #define LIST_ENTRY(type) \ argument
150 #define SLIST_HEAD(name, type) \ argument
158 #define SLIST_ENTRY(type) \ argument
184 #define SLIST_REMOVE(head, elm, type, field) do { \ argument
211 #define STAILQ_HEAD(name, type) \ argument
220 #define STAILQ_ENTRY(type) \ argument
256 #define STAILQ_REMOVE(head, elm, type, field) do { \ argument
285 #define SIMPLEQ_HEAD(name, type) \ argument
294 #define SIMPLEQ_ENTRY(type) \ argument
[all …]
/bionic/libc/kernel/common/linux/netfilter_ipv4/
Dipt_sctp.h47 #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/
Dxt_sctp.h49 #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/libc/tzcode/
Dprivate.h263 #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
/bionic/libc/private/isc/
Dlist.h24 #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
66 #define UNLINK_TYPE(list, elt, link, type) \ argument
/bionic/libc/netbsd/resolv/
Dres_query.c129 int class, int type, /* class and type of query */ in res_nquery()
223 int class, int type, /* class and type of query */ in res_nsearch()
371 int class, int type, /* class and type of query */ in res_nquerydomain()
Dres_data.c177 int class, int type, /* class and type of query */ in res_mkquery()
207 int class, int type, /* class and type of query */ in res_query()
276 int class, int type, /* class and type of query */ in res_search()
291 int class, int type, /* class and type of query */ in res_querydomain()

1234