Home
last modified time | relevance | path

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

123456

/bionic/libc/kernel/uapi/asm-generic/
Dioctl.h52 #define _IOC(dir,type,nr,size) (((dir) << _IOC_DIRSHIFT) | ((type) << _IOC_TYPESHIFT) | ((nr)… argument
55 #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0) argument
56 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size))) argument
57 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) argument
59 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) argument
60 #define _IOR_BAD(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size)) argument
61 #define _IOW_BAD(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size)) argument
62 #define _IOWR_BAD(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size)) argument
/bionic/libc/kernel/uapi/linux/
Dandroid_alarm.h46 #define ANDROID_ALARM_CLEAR(type) _IO('a', 0 | ((type) << 4)) argument
49 #define ALARM_IOW(c, type, size) _IOW('a', (c) | ((type) << 4), size) argument
50 #define ANDROID_ALARM_SET(type) ALARM_IOW(2, type, struct timespec) argument
51 #define ANDROID_ALARM_SET_AND_WAIT(type) ALARM_IOW(3, type, struct timespec) argument
52 #define ANDROID_ALARM_GET_TIME(type) ALARM_IOW(4, type, struct timespec) argument
/bionic/libc/kernel/uapi/sound/
Dfirewire.h26 unsigned int type; member
30 unsigned int type; member
35 unsigned int type; member
51 unsigned int type; member
/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/bionic/
Dgetauxval.cpp37 extern "C" unsigned long int getauxval(unsigned long int type) { in getauxval()
Dsocket.cpp21 int socket(int domain, int type, int protocol) { in socket()
Dfpclassify.cpp94 int type = __fpclassifyd(d); in __isfinite() local
100 int type = __fpclassifyf(f); in __isfinitef() local
147 int type = __fpclassifyl(ld); in __isfinitel() local
/bionic/libc/kernel/uapi/linux/netfilter/
Dxt_sctp.h51 #define bytes(type) (sizeof(type) * 8) argument
52 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { (chunkmap)[type / bytes(__u32)] |= 1 << (type … argument
54 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { (chunkmap)[type / bytes(__u32)] &= ~(1 << (t… argument
55 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ ((chunkmap)[type / bytes (__u32)] & (1 << (typ… argument
/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_fdim.c32 #define DECL(type, fn) \ argument
Ds_lrintl.c4 #define type long double macro
Ds_llrintf.c4 #define type float macro
Ds_lrintf.c4 #define type float macro
Ds_llrintl.c4 #define type long double macro
Ds_nearbyint.c44 #define DECL(type, fn, rint) \ argument
Ds_llrint.c4 #define type double macro
Ds_lroundl.c4 #define type long double macro
Ds_llroundf.c4 #define type float macro
Ds_llround.c4 #define type double macro
Ds_llroundl.c4 #define type long double macro
Ds_lroundf.c4 #define type float macro
/bionic/libc/upstream-netbsd/lib/libc/include/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
67 #define UNLINK_TYPE(list, elt, link, type) \ argument
/bionic/libc/kernel/uapi/linux/netfilter_bridge/
Debt_802_3.h37 __be16 type; member
46 __be16 type; member
62 __be16 type; member
/bionic/libc/private/
DThreadLocalBuffer.h52 #define LOCAL_INIT_THREAD_LOCAL_BUFFER(type, name, byte_count) \ argument
/bionic/libc/kernel/uapi/asm-x86/asm/
Dmtrr.h31 unsigned int type; member
39 unsigned int type; member
46 __u32 type; member
54 __u32 type; member
/bionic/libc/dns/resolv/
Dres_query.c130 int class, int type, /* class and type of query */ in res_nquery()
224 int class, int type, /* class and type of query */ in res_nsearch()
381 int class, int type, /* class and type of query */ in res_nquerydomain()

123456