Home
last modified time | relevance | path

Searched refs:_type (Results 1 – 25 of 45) sorted by relevance

12

/linux-3.4.99/arch/mips/include/asm/
Dmips_machine.h25 #define MIPS_MACHINE(_type, _id, _name, _setup) \ argument
26 static const char machine_name_##_type[] __initconst \
28 static const char machine_id_##_type[] __initconst \
30 static struct mips_machine machine_##_type \
33 .mach_type = _type, \
34 .mach_id = machine_id_##_type, \
35 .mach_name = machine_name_##_type, \
/linux-3.4.99/drivers/staging/tidspbridge/dynload/
Ddoff.h243 u16 _type; member
249 u16 _type;
258 u16 _type; /* relocation type */ member
260 u16 _type; /* relocation type */ member
269 u16 _type; /* relocation type */ member
271 u16 _type; /* relocation type */ member
280 u16 _type; /* relocation type */ member
282 u16 _type; /* relocation type */ member
292 #define TYPE _u_reloc._r_sym._type
/linux-3.4.99/drivers/net/ethernet/sfc/
Dmcdi.h96 #define MCDI_ARRAY_PTR(_buf, _field, _type, _index) \ argument
99 (_index) * MC_CMD_ ## _type ## _TYPEDEF_LEN)
109 #define MCDI_ARRAY_FIELD(_buf, _field1, _type, _index, _field2) \ argument
112 (MCDI_ARRAY_PTR(_buf, _field1, _type, _index) + \
113 (MC_CMD_ ## _type ## _TYPEDEF_ ## _field2 ## _OFST & ~3))), \
114 MC_CMD_ ## _type ## _TYPEDEF_ ## _field2 ## _LBN & 0x1f, \
115 (MC_CMD_ ## _type ## _TYPEDEF_ ## _field2 ## _LBN & 0x1f) + \
116 MC_CMD_ ## _type ## _TYPEDEF_ ## _field2 ## _WIDTH - 1)
/linux-3.4.99/arch/arm/include/asm/mach/
Darch.h68 #define MACHINE_START(_type,_name) \ argument
69 static const struct machine_desc __mach_desc_##_type \
72 .nr = MACH_TYPE_##_type, \
/linux-3.4.99/arch/x86/include/asm/
Dpercpu.h552 #define DEFINE_EARLY_PER_CPU(_type, _name, _initvalue) \ argument
553 DEFINE_PER_CPU(_type, _name) = _initvalue; \
554 __typeof__(_type) _name##_early_map[NR_CPUS] __initdata = \
556 __typeof__(_type) *_name##_early_ptr __refdata = _name##_early_map
561 #define DECLARE_EARLY_PER_CPU(_type, _name) \ argument
562 DECLARE_PER_CPU(_type, _name); \
563 extern __typeof__(_type) *_name##_early_ptr; \
564 extern __typeof__(_type) _name##_early_map[]
574 #define DEFINE_EARLY_PER_CPU(_type, _name, _initvalue) \ argument
575 DEFINE_PER_CPU(_type, _name) = _initvalue
[all …]
/linux-3.4.99/include/drm/
Ddrm_hashtab.h40 #define drm_hash_entry(_ptr, _type, _member) container_of(_ptr, _type, _member) argument
/linux-3.4.99/arch/arm/plat-mxc/include/mach/
Dhardware.h120 #define imx_map_entry(soc, name, _type) { \ argument
124 .type = _type, \
/linux-3.4.99/drivers/net/wireless/ath/ath9k/
Dar9003_mci.h250 #define MCI_GPM_SET_TYPE_OPCODE(_p_gpm, _type, _opcode) do { \ argument
251 *(((u8 *)(_p_gpm)) + MCI_GPM_COEX_B_GPM_TYPE) = (_type) & 0xff; \
255 #define MCI_GPM_IS_CAL_TYPE(_type) ((_type) <= MCI_GPM_WLAN_CAL_DONE) argument
Dhtc.h200 #define INC_VIF(_priv, _type) do { \ argument
201 switch (_type) { \
216 #define DEC_VIF(_priv, _type) do { \ argument
217 switch (_type) { \
/linux-3.4.99/drivers/net/ethernet/broadcom/
Dcnic.h354 #define CDU_VALID_DATA(_cid, _region, _type) \ argument
355 (((_cid) << 8) | (((_region)&0xf)<<4) | (((_type)&0xf)))
357 #define CDU_CRC8(_cid, _region, _type) \ argument
358 (calc_crc8(CDU_VALID_DATA(_cid, _region, _type), 0xff))
360 #define CDU_RSRVD_VALUE_TYPE_A(_cid, _region, _type) \ argument
361 (0x80 | ((CDU_CRC8(_cid, _region, _type)) & 0x7f))
/linux-3.4.99/arch/arm/mach-mxs/include/mach/
Dmxs.h72 #define mxs_map_entry(soc, name, _type) { \ argument
76 .type = _type, \
/linux-3.4.99/include/net/sctp/
Dconstants.h142 #define SCTP_SUBTYPE_CONSTRUCTOR(_name, _type, _elt) \ argument
144 SCTP_ST_## _name (_type _arg) \
/linux-3.4.99/arch/powerpc/kernel/
Dsys_ppc32.c593 asmlinkage long compat_sys_add_key(const char __user *_type, in compat_sys_add_key() argument
599 return sys_add_key(_type, _description, _payload, plen, ringid); in compat_sys_add_key()
602 asmlinkage long compat_sys_request_key(const char __user *_type, in compat_sys_request_key() argument
607 return sys_request_key(_type, _description, _callout_info, destringid); in compat_sys_request_key()
/linux-3.4.99/net/sctp/
Dsm_statetable.c71 #define DO_LOOKUP(_max, _type, _table) \ argument
75 if ((event_subtype._type > (_max))) { \
77 _table, event_subtype._type, _max); \
80 rtn = &_table[event_subtype._type][(int)state]; \
/linux-3.4.99/security/keys/
Dkeyctl.c29 const char __user *_type, in key_get_type_from_user() argument
34 ret = strncpy_from_user(type, _type, len); in key_get_type_from_user()
54 SYSCALL_DEFINE5(add_key, const char __user *, _type, in SYSCALL_DEFINE5() argument
71 ret = key_get_type_from_user(type, _type, sizeof(type)); in SYSCALL_DEFINE5()
147 SYSCALL_DEFINE4(request_key, const char __user *, _type, in SYSCALL_DEFINE4() argument
160 ret = key_get_type_from_user(type, _type, sizeof(type)); in SYSCALL_DEFINE4()
579 const char __user *_type, in keyctl_keyring_search() argument
589 ret = key_get_type_from_user(type, _type, sizeof(type)); in keyctl_keyring_search()
/linux-3.4.99/arch/arm/kernel/
Dkprobes.h348 #define DECODE_HEADER(_type, _mask, _value, _regs) \ argument
349 {.bits = (_type) | ((_regs) << DECODE_TYPE_BITS)}, \
/linux-3.4.99/fs/fscache/
Dobject-list.c171 char _type[3], *type; in fscache_objlist_show() local
266 sprintf(_type, "%02u", in fscache_objlist_show()
268 type = _type; in fscache_objlist_show()
/linux-3.4.99/drivers/acpi/acpica/
Dacobject.h121 #define ACPI_COMMON_BUFFER_INFO(_type) \ argument
122 _type *pointer; \
/linux-3.4.99/drivers/hwmon/pmbus/
Dpmbus_core.c812 #define PMBUS_ADD_ATTR(data, _name, _idx, _mode, _type, _show, _set) \ argument
815 = &data->_type##s[data->num_##_type##s].attribute; \
827 #define PMBUS_ADD_GET_ATTR(data, _name, _type, _idx) \ argument
828 PMBUS_ADD_ATTR(data, _name, _idx, S_IRUGO, _type, \
829 pmbus_show_##_type, NULL)
831 #define PMBUS_ADD_SET_ATTR(data, _name, _type, _idx) \ argument
832 PMBUS_ADD_ATTR(data, _name, _idx, S_IWUSR | S_IRUGO, _type, \
833 pmbus_show_##_type, pmbus_set_##_type)
/linux-3.4.99/drivers/staging/iio/
Diio.h180 #define IIO_CHAN(_type, _mod, _indexed, _proc, _name, _chan, _chan2, \ argument
182 { .type = _type, \
/linux-3.4.99/fs/ceph/
Dxattr.c86 #define CEPH_XATTR_NAME(_type, _name) XATTR_CEPH_PREFIX #_type "." #_name argument
88 #define XATTR_NAME_CEPH(_type, _name) \ argument
90 .name = CEPH_XATTR_NAME(_type, _name), \
91 .name_size = sizeof (CEPH_XATTR_NAME(_type, _name)), \
92 .getxattr_cb = ceph_vxattrcb_ ## _type ## _ ## _name, \
/linux-3.4.99/drivers/xen/
Dtmem.c261 #define _oswiz(_type, _ind) ((_type << SWIZ_BITS) | (_ind & SWIZ_MASK)) argument
/linux-3.4.99/include/linux/
Dmoduleparam.h31 #define __MODULE_PARM_TYPE(name, _type) \ argument
32 __MODULE_INFO(parmtype, name##type, #name ":" _type)
/linux-3.4.99/Documentation/hwmon/
Dw8379349 temp[1-4]_type.
55 temp[5-6]_type is 4).
/linux-3.4.99/drivers/usb/gadget/
Dpxa27x_udc.h257 #define PXA_EP_DEF(_idx, _addr, dir, _type, maxpkt, _config, iface, altset) \ argument
264 .type = _type, .fifo_size = maxpkt, \

12