Searched refs:type (Results 1 - 25 of 11053) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dtypecheck.h5 * Check at compile time that something is of a particular type.
8 #define typecheck(type,x) \
9 ({ type __dummy; \
16 * Check at compile time that 'function' is a certain type, or is a pointer
17 * to that type (needs to use typedef for the function type.)
19 #define typecheck_fn(type,function) \
20 ({ typeof(type) __tmp = function; \
H A Dpercpu-defs.h61 #define DECLARE_PER_CPU_SECTION(type, name, sec) \
63 extern __PCPU_ATTRS(sec) __typeof__(type) name
65 #define DEFINE_PER_CPU_SECTION(type, name, sec) \
70 __typeof__(type) name
75 #define DECLARE_PER_CPU_SECTION(type, name, sec) \
76 extern __PCPU_ATTRS(sec) __typeof__(type) name
78 #define DEFINE_PER_CPU_SECTION(type, name, sec) \
80 __typeof__(type) name
87 #define DECLARE_PER_CPU(type, name) \
88 DECLARE_PER_CPU_SECTION(type, nam
[all...]
H A Dauto_fs4.h38 static inline void set_autofs_type_indirect(unsigned int *type) argument
40 *type = AUTOFS_TYPE_INDIRECT;
44 static inline unsigned int autofs_type_indirect(unsigned int type) argument
46 return (type == AUTOFS_TYPE_INDIRECT);
49 static inline void set_autofs_type_direct(unsigned int *type) argument
51 *type = AUTOFS_TYPE_DIRECT;
55 static inline unsigned int autofs_type_direct(unsigned int type) argument
57 return (type == AUTOFS_TYPE_DIRECT);
60 static inline void set_autofs_type_offset(unsigned int *type) argument
62 *type
66 autofs_type_offset(unsigned int type) argument
71 autofs_type_trigger(unsigned int type) argument
81 set_autofs_type_any(unsigned int *type) argument
87 autofs_type_any(unsigned int type) argument
[all...]
H A Dkobject_ns.h40 enum kobj_ns_type type; member in struct:kobj_ns_type_operations
47 int kobj_ns_type_registered(enum kobj_ns_type type);
51 const void *kobj_ns_current(enum kobj_ns_type type);
52 const void *kobj_ns_netlink(enum kobj_ns_type type, struct sock *sk);
53 const void *kobj_ns_initial(enum kobj_ns_type type);
54 void kobj_ns_exit(enum kobj_ns_type type, const void *ns);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/include/arch-v32/arch/hwregs/
H A Dreg_rdwr.h9 #define REG_READ(type, addr) (*((volatile type *) (addr)))
13 #define REG_WRITE(type, addr, val) \
14 do { *((volatile type *) (addr)) = (val); } while(0)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-mxc/
H A Dcpu.c7 void mxc_set_cpu_type(unsigned int type) argument
9 __mxc_cpu_type = type;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/include/wx/mmedia/
H A Ddefs.h6 #define WXDLLIMPEXP_DATA_MMEDIA(type) WXEXPORT type
9 #define WXDLLIMPEXP_DATA_MMEDIA(type) WXIMPORT type
12 #define WXDLLIMPEXP_DATA_MMEDIA(type) type
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/ieee802154/
H A Dnl_policy.c28 [IEEE802154_ATTR_DEV_NAME] = { .type = NLA_STRING, },
29 [IEEE802154_ATTR_DEV_INDEX] = { .type = NLA_U32, },
30 [IEEE802154_ATTR_PHY_NAME] = { .type = NLA_STRING, },
32 [IEEE802154_ATTR_STATUS] = { .type = NLA_U8, },
33 [IEEE802154_ATTR_SHORT_ADDR] = { .type = NLA_U16, },
34 [IEEE802154_ATTR_HW_ADDR] = { .type = NLA_HW_ADDR, },
35 [IEEE802154_ATTR_PAN_ID] = { .type = NLA_U16, },
36 [IEEE802154_ATTR_CHANNEL] = { .type = NLA_U8, },
37 [IEEE802154_ATTR_PAGE] = { .type = NLA_U8, },
38 [IEEE802154_ATTR_COORD_SHORT_ADDR] = { .type
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ncftp-3.2.5/source/libncftp/
H A Dc_type.c14 FTPSetTransferType(const FTPCIPtr cip, int type) argument
23 if (cip->curTransferType != type) {
24 switch (type) {
32 type = kTypeBinary;
35 type = kTypeEbcdic;
38 type = kTypeAscii;
42 FTPLogError(cip, kDontPerror, "Bad transfer type [%c].\n", type);
46 result = FTPCmd(cip, "TYPE %c", type);
52 cip->curTransferType = type;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Ddlimpexp.h98 # define WXDLLIMPEXP_DATA_BASE(type) WXEXPORT type
101 # define WXDLLIMPEXP_DATA_BASE(type) WXIMPORT type
104 # define WXDLLIMPEXP_DATA_BASE(type) type
109 # define WXDLLIMPEXP_DATA_NET(type) WXEXPORT type
112 # define WXDLLIMPEXP_DATA_NET(type) WXIMPORT type
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iptables-1.4.12.1/libiptc/
H A Dlinux_stddef.h19 * @type: the type of the container struct this is embedded in.
23 #define container_of(ptr, type, member) ({ \
24 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
25 (type *)( (char *)__mptr - offsetof(type,member) );})
28 * Check at compile time that something is of a particular type.
31 #define typecheck(type,x) \
32 ({ type __dummy; \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/libevent-2.0.20-stable/include/event2/
H A Dkeyvalq_struct.h38 #define TAILQ_ENTRY(type) \
40 struct type *tqe_next; /* next element */ \
41 struct type **tqe_prev; /* address of previous next element */ \
47 #define TAILQ_HEAD(name, type) \
49 struct type *tqh_first; \
50 struct type **tqh_last; \
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iptables-1.4.12/src/libiptc/
H A Dlinux_stddef.h19 * @type: the type of the container struct this is embedded in.
23 #define container_of(ptr, type, member) ({ \
24 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
25 (type *)( (char *)__mptr - offsetof(type,member) );})
28 * Check at compile time that something is of a particular type.
31 #define typecheck(type,x) \
32 ({ type __dummy; \
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iptables-1.x/libiptc/
H A Dlinux_stddef.h19 * @type: the type of the container struct this is embedded in.
23 #define container_of(ptr, type, member) ({ \
24 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
25 (type *)( (char *)__mptr - offsetof(type,member) );})
28 * Check at compile time that something is of a particular type.
31 #define typecheck(type,x) \
32 ({ type __dummy; \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/s390/char/
H A Dsclp_cpi_sys.h13 const char *type, u64 level);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/acl/
H A Dcache.h35 extern int search_cachebyname( const char *name, uuidtype_t *type, uuidp_t uuid);
36 extern int add_cachebyname( const char *inname, const uuidp_t inuuid, const uuidtype_t type, const unsigned long uid);
37 extern int search_cachebyuuid( uuidp_t uuidp, char **name, uuidtype_t *type);
38 extern int add_cachebyuuid( uuidp_t inuuid, const char *inname, uuidtype_t type, const unsigned long uid);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/import/
H A Dxop.h58 char *type; member in struct:_xop__Include
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/import/
H A Dxop.h58 char *type; member in struct:_xop__Include
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ocfs2/
H A Dsysfile.c44 int type,
47 static inline int is_global_system_inode(int type);
49 int type,
56 static inline int is_global_system_inode(int type) argument
58 return type >= OCFS2_FIRST_ONLINE_SYSTEM_INODE &&
59 type <= OCFS2_LAST_GLOBAL_SYSTEM_INODE;
63 int type,
66 return slot == osb->slot_num || is_global_system_inode(type);
70 int type,
77 if (is_in_system_inode_array(osb, type, slo
62 is_in_system_inode_array(struct ocfs2_super *osb, int type, u32 slot) argument
69 ocfs2_get_system_file_inode(struct ocfs2_super *osb, int type, u32 slot) argument
99 _ocfs2_get_system_file_inode(struct ocfs2_super *osb, int type, u32 slot) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/md/
H A Ddm-exception-store.c23 struct dm_exception_store_type *type; local
25 list_for_each_entry(type, &_exception_store_types, list)
26 if (!strcmp(name, type->name))
27 return type;
34 struct dm_exception_store_type *type; local
38 type = __find_exception_store_type(name);
40 if (type && !try_module_get(type->module))
41 type = NULL;
45 return type;
74 struct dm_exception_store_type *type; local
102 put_type(struct dm_exception_store_type *type) argument
109 dm_exception_store_type_register(struct dm_exception_store_type *type) argument
124 dm_exception_store_type_unregister(struct dm_exception_store_type *type) argument
201 struct dm_exception_store_type *type = NULL; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/dbus/
H A Ddbus-memory.h58 #define dbus_new(type, count) ((type*)dbus_malloc (sizeof (type) * (count)))
59 #define dbus_new0(type, count) ((type*)dbus_malloc0 (sizeof (type) * (count)))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/include/wx/deprecated/
H A Dsetup.h61 #define WXDLLIMPEXP_DATA_DEPRECATED(type) WXEXPORT type
64 #define WXDLLIMPEXP_DATA_DEPRECATED(type) WXIMPORT type
67 #define WXDLLIMPEXP_DATA_DEPRECATED(type) type
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ceph/crush/
H A Dhash.h8 extern const char *crush_hash_name(int type);
10 extern __u32 crush_hash32(int type, __u32 a);
11 extern __u32 crush_hash32_2(int type, __u32 a, __u32 b);
12 extern __u32 crush_hash32_3(int type, __u32 a, __u32 b, __u32 c);
13 extern __u32 crush_hash32_4(int type, __u32 a, __u32 b, __u32 c, __u32 d);
14 extern __u32 crush_hash32_5(int type, __u32 a, __u32 b, __u32 c, __u32 d,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/
H A Ddisplay_sec.c27 char *get_sec_mask_str(uint32 type) argument
33 if (type & GENERIC_ALL_ACCESS)
35 if (type & GENERIC_EXECUTE_ACCESS)
37 if (type & GENERIC_WRITE_ACCESS)
39 if (type & GENERIC_READ_ACCESS)
41 if (type & MAXIMUM_ALLOWED_ACCESS)
43 if (type & SYSTEM_SECURITY_ACCESS)
45 if (type & SYNCHRONIZE_ACCESS)
47 if (type & WRITE_OWNER_ACCESS)
49 if (type
117 display_acl_type(uint16 type) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/libbb/
H A Dxatonum_template.c4 #define type long
15 unsigned type xstrtou(_range_sfx)(const char *numstr, int base,
16 unsigned type lower,
17 unsigned type upper,
20 unsigned type r;
75 unsigned type xstrtou(_range)(const char *numstr, int base,
76 unsigned type lower,
77 unsigned type upper)
82 unsigned type xstrtou(_sfx)(const char *numstr, int base,
88 unsigned type xstrto
177 #undef type macro
[all...]

Completed in 299 milliseconds

1234567891011>>