Home
last modified time | relevance | path

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

12345

/bionic/libc/kernel/arch-x86/asm/xen/
Dhypercall.h27 #define _hypercall0(type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res… argument
29 #define _hypercall1(type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" :… argument
30 #define _hypercall2(type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call … argument
31 #define _hypercall3(type, name, a1, a2, a3) ({ long __res, __ign1, __ign2, __ign3; asm volatil… argument
32 #define _hypercall4(type, name, a1, a2, a3, a4) ({ long __res, __ign1, __ign2, __ign3, __ign4; … argument
34 #define _hypercall5(type, name, a1, a2, a3, a4, a5) ({ long __res, __ign1, __ign2, __ign3, __ign… argument
/bionic/libc/kernel/common/asm-generic/
Dioctl.h40 #define _IOC(dir,type,nr,size) (((dir) << _IOC_DIRSHIFT) | ((type) << _IOC_TYPESHIFT) | ((nr)… argument
44 #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0) argument
45 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size))) argument
46 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) argument
47 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) argument
49 #define _IOR_BAD(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size)) argument
50 #define _IOW_BAD(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size)) argument
51 #define _IOWR_BAD(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size)) argument
Dpercpu.h24 #define DEFINE_PER_CPU(type, name) __typeof__(type) per_cpu__##name argument
29 #define DECLARE_PER_CPU(type, name) extern __typeof__(type) per_cpu__##name argument
/bionic/libc/kernel/arch-mips/asm/
Dioctl.h45 #define _IOC(dir, type, nr, size) (((dir) << _IOC_DIRSHIFT) | ((type) << _IOC_TYPESHIFT) | ((… argument
49 #define _IO(type, nr) _IOC(_IOC_NONE, (type), (nr), 0) argument
50 #define _IOR(type, nr, size) _IOC(_IOC_READ, (type), (nr), (_IOC_TYPECHECK(size))) argument
51 #define _IOW(type, nr, size) _IOC(_IOC_WRITE, (type), (nr), (_IOC_TYPECHECK(size))) argument
52 #define _IOWR(type, nr, size) _IOC(_IOC_READ|_IOC_WRITE, (type), (nr), (_IOC_TYPECHECK(size))) argument
54 #define _IOR_BAD(type, nr, size) _IOC(_IOC_READ, (type), (nr), sizeof(size)) argument
55 #define _IOW_BAD(type, nr, size) _IOC(_IOC_WRITE, (type), (nr), sizeof(size)) argument
56 #define _IOWR_BAD(type, nr, size) _IOC(_IOC_READ|_IOC_WRITE, (type), (nr), sizeof(size)) argument
Dio.h76 #define __BUILD_MEMORY_SINGLE(pfx, bwlq, type, irq) static inline void pfx##write##bwlq(type val… argument
77 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) static inline void pfx##out##bwlq##p(typ… argument
79 #define __BUILD_MEMORY_PFX(bus, bwlq, type) __BUILD_MEMORY_SINGLE(bus, bwlq, type, 1) argument
80 #define BUILDIO_MEM(bwlq, type) __BUILD_MEMORY_PFX(__raw_, bwlq, type) __BUILD_MEMORY_PFX(, bwl… argument
81 #define __BUILD_IOPORT_PFX(bus, bwlq, type) __BUILD_IOPORT_SINGLE(bus, bwlq, type, ,) __BUILD_I… argument
82 #define BUILDIO_IOPORT(bwlq, type) __BUILD_IOPORT_PFX(, bwlq, type) __BUILD_IOPORT_PFX(__mem_, … argument
84 #define __BUILDIO(bwlq, type) __BUILD_MEMORY_SINGLE(____raw_, bwlq, type, 0) argument
92 #define __BUILD_MEMORY_STRING(bwlq, type) static inline void writes##bwlq(volatile void __iomem … argument
94 #define __BUILD_IOPORT_STRING(bwlq, type) static inline void outs##bwlq(unsigned long port, cons… argument
95 #define BUILDSTRING(bwlq, type) __BUILD_MEMORY_STRING(bwlq, type) __BUILD_IOPORT_STRING(bwlq, t… argument
/bionic/libc/kernel/common/linux/
Dandroid_alarm.h44 #define ANDROID_ALARM_CLEAR(type) _IO('a', 0 | ((type) << 4)) argument
46 #define ANDROID_ALARM_SET(type) _IOW('a', 2 | ((type) << 4), struct timespec) argument
47 #define ANDROID_ALARM_SET_AND_WAIT(type) _IOW('a', 3 | ((type) << 4), struct timespec) argument
49 #define ANDROID_ALARM_GET_TIME(type) _IOW('a', 4 | ((type) << 4), struct timespec) argument
/bionic/libc/kernel/arch-x86/asm/
Dio_32.h30 #define __BUILDIO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out#… argument
31 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { … argument
/bionic/libc/kernel/arch-arm/asm/
Ddomain.h30 #define domain_val(dom,type) ((type) << (2*(dom))) argument
34 #define modify_domain(dom,type) do { } while (0) argument
/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.h50 #define bytes(type) (sizeof(type) * 8) argument
51 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (typ… argument
52 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] &= ~(1 << … argument
54 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ (chunkmap[type / bytes (u_int32_t)] & (1 << (t… argument
/bionic/libc/kernel/common/linux/netfilter/
Dxt_sctp.h51 #define bytes(type) (sizeof(type) * 8) argument
52 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (typ… argument
54 #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/libm/upstream-freebsd/lib/msun/src/
Ds_fdim.c32 #define DECL(type, fn) \ argument
Ds_llrint.c4 #define type double macro
Ds_llrintl.c4 #define type long double macro
Ds_llrintf.c4 #define type float macro
Ds_nearbyint.c40 #define DECL(type, fn, rint) \ argument
Ds_lrintf.c4 #define type float macro
Ds_lrintl.c4 #define type long double macro
Ds_llroundl.c4 #define type long double macro
Ds_lroundl.c4 #define type long double macro
Ds_llround.c4 #define type double macro
Ds_llroundf.c4 #define type float macro
/bionic/libc/upstream-netbsd/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/bionic/
Dgetauxval.cpp37 extern "C" unsigned long int getauxval(unsigned long int type) { in getauxval()

12345