Home
last modified time | relevance | path

Searched refs:type (Results 1 – 25 of 259) sorted by relevance

1234567891011

/development/ndk/platforms/android-21/include/linux/
Dv4l2-dv-timings.h27 #define V4L2_DV_BT_CEA_640X480P59_94 { .type = V4L2_DV_BT_656_1120, V4L2_INIT_BT_TIMINGS(640, 4…
29 #define V4L2_DV_BT_CEA_720X480I59_94 { .type = V4L2_DV_BT_656_1120, V4L2_INIT_BT_TIMINGS(720, 4…
30 #define V4L2_DV_BT_CEA_720X480P59_94 { .type = V4L2_DV_BT_656_1120, V4L2_INIT_BT_TIMINGS(720, 4…
31 #define V4L2_DV_BT_CEA_720X576I50 { .type = V4L2_DV_BT_656_1120, V4L2_INIT_BT_TIMINGS(720, 576,…
32 #define V4L2_DV_BT_CEA_720X576P50 { .type = V4L2_DV_BT_656_1120, V4L2_INIT_BT_TIMINGS(720, 576,…
34 #define V4L2_DV_BT_CEA_1280X720P24 { .type = V4L2_DV_BT_656_1120, V4L2_INIT_BT_TIMINGS(1280, 72…
35 #define V4L2_DV_BT_CEA_1280X720P25 { .type = V4L2_DV_BT_656_1120, V4L2_INIT_BT_TIMINGS(1280, 72…
36 #define V4L2_DV_BT_CEA_1280X720P30 { .type = V4L2_DV_BT_656_1120, V4L2_INIT_BT_TIMINGS(1280, 72…
37 #define V4L2_DV_BT_CEA_1280X720P50 { .type = V4L2_DV_BT_656_1120, V4L2_INIT_BT_TIMINGS(1280, 72…
39 #define V4L2_DV_BT_CEA_1280X720P60 { .type = V4L2_DV_BT_656_1120, V4L2_INIT_BT_TIMINGS(1280, 72…
[all …]
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
/development/ndk/platforms/android-9/arch-mips/include/asm/
Dio.h76type, irq) static inline void pfx##write##bwlq(type val, volatile void __iomem *mem) { vol… argument
77type, p, slow) static inline void pfx##out##bwlq##p(type val, unsigned long port) { volatile… argument
79 #define __BUILD_MEMORY_PFX(bus, bwlq, type) __BUILD_MEMORY_SINGLE(bus, bwlq, type, 1) argument
80 …ILDIO_MEM(bwlq, type) __BUILD_MEMORY_PFX(__raw_, bwlq, type) __BUILD_MEMORY_PFX(, bwlq, type) … argument
81 …e __BUILD_IOPORT_PFX(bus, bwlq, type) __BUILD_IOPORT_SINGLE(bus, bwlq, type, ,) __BUILD_IOPORT… 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
92type) static inline void writes##bwlq(volatile void __iomem *mem, const void *addr, unsigned … argument
94type) static inline void outs##bwlq(unsigned long port, const void *addr, unsigned int count)… argument
95 #define BUILDSTRING(bwlq, type) __BUILD_MEMORY_STRING(bwlq, type) __BUILD_IOPORT_STRING(bwlq, t… argument
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
/development/ndk/platforms/android-3/include/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
/development/ndk/platforms/android-21/include/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
/development/ndk/platforms/android-9/arch-x86/include/asm/
Dio_32.h30 …IO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out##bwl##_local(v… argument
31type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__… argument
/development/ndk/platforms/android-21/include/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
/development/ndk/platforms/android-9/arch-x86/include/asm/xen/
Dhypercall.h27type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res) : [call] "m" (h… argument
29type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" : "=a" (__res), "=b"… argument
30type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call %[call]" : "=a" (… argument
31type, name, a1, a2, a3) ({ long __res, __ign1, __ign2, __ign3; asm volatile ( "call %[call]… argument
32type, name, a1, a2, a3, a4) ({ long __res, __ign1, __ign2, __ign3, __ign4; asm volatile ( "… argument
34type, name, a1, a2, a3, a4, a5) ({ long __res, __ign1, __ign2, __ign3, __ign4, __ign5; asm vo… argument
/development/ndk/platforms/android-3/include/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
Dmoduleparam.h32 #define __MODULE_PARM_TYPE(name, _type) __MODULE_INFO(parmtype, name##type, #name ":" _type)
67type, 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
95type, 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
Dpercpu.h29 #define alloc_percpu(type) ((type *)(__alloc_percpu(sizeof(type)))) argument
/development/ndk/platforms/android-3/include/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
/development/ndk/platforms/android-3/include/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
/development/ndk/platforms/android-3/include/netinet/
Dip_icmp.h205 #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)
/development/ndk/platforms/android-21/include/netinet/
Dip_icmp.h205 #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)
/development/ndk/platforms/android-21/include/sys/
Dqueue.h84 #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 …]
/development/ndk/platforms/android-3/include/sys/
Dqueue.h84 #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 …]
/development/tools/apkcheck/src/com/android/apkcheck/
DFieldInfo.java34 public FieldInfo(String name, String type) { in FieldInfo() argument
36 mType = type; in FieldInfo()
54 String type = TypeUtils.ambiguousToBinaryName(mType, apiList); in normalizeType() local
55 if (!type.equals(mType)) { in normalizeType()
57 mType = type; in normalizeType()
/development/samples/ApiDemos/src/com/example/android/apis/view/
DSystemPointerIconButton.java52 int type; in onResolvePointerIcon() local
55 type = PointerIcon.TYPE_TOP_LEFT_DIAGONAL_DOUBLE_ARROW; in onResolvePointerIcon()
58 type = PointerIcon.TYPE_TOP_RIGHT_DIAGONAL_DOUBLE_ARROW; in onResolvePointerIcon()
61 type = PointerIcon.TYPE_HORIZONTAL_DOUBLE_ARROW; in onResolvePointerIcon()
64 type = PointerIcon.TYPE_VERTICAL_DOUBLE_ARROW; in onResolvePointerIcon()
67 type = PointerIcon.TYPE_ALL_SCROLL; in onResolvePointerIcon()
69 return PointerIcon.getSystemIcon(getContext(), type); in onResolvePointerIcon()
/development/ndk/platforms/android-3/arch-arm/include/asm/arch/
Dboard.h117 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
/development/ndk/sources/android/ndk_helper/
Dshader.h55 bool CompileShader( GLuint *shader, const GLenum type, std::vector<uint8_t>& data );
69 const GLenum type,
83 bool CompileShader( GLuint *shader, const GLenum type, const char *strFileName );
98 const GLenum type,
/development/ndk/platforms/android-21/include/
Dlink.h37 #define ElfW(type) Elf64_ ## type argument
39 #define ElfW(type) Elf32_ ## type
/development/ndk/platforms/android-3/arch-arm/include/asm/
Ddomain.h24 #define domain_val(dom,type) ((type) << (2*(dom))) argument
29 #define modify_domain(dom,type) do { } while (0) argument

1234567891011