Home
last modified time | relevance | path

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

12345678910>>...218

/linux-3.4.99/sound/usb/
Dquirks-table.h49 .type = QUIRK_MIDI_FTDI
184 .type = QUIRK_MIDI_YAMAHA \
193 .type = QUIRK_MIDI_YAMAHA \
284 .type = QUIRK_COMPOSITE,
288 .type = QUIRK_AUDIO_STANDARD_INTERFACE
292 .type = QUIRK_AUDIO_STANDARD_INTERFACE
296 .type = QUIRK_MIDI_YAMAHA
338 .type = QUIRK_COMPOSITE,
342 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
359 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
[all …]
/linux-3.4.99/include/linux/
Dpercpu-defs.h61 #define DECLARE_PER_CPU_SECTION(type, name, sec) \ argument
63 extern __PCPU_ATTRS(sec) __typeof__(type) name
65 #define DEFINE_PER_CPU_SECTION(type, name, sec) \ argument
70 __typeof__(type) name
75 #define DECLARE_PER_CPU_SECTION(type, name, sec) \ argument
76 extern __PCPU_ATTRS(sec) __typeof__(type) name
78 #define DEFINE_PER_CPU_SECTION(type, name, sec) \ argument
80 __typeof__(type) name
87 #define DECLARE_PER_CPU(type, name) \ argument
88 DECLARE_PER_CPU_SECTION(type, name, "")
[all …]
Dquotaops.h47 struct dquot *dqget(struct super_block *sb, unsigned int id, int type);
52 struct dquot *dquot_alloc(struct super_block *sb, int type);
63 int dquot_disable(struct super_block *sb, int type, unsigned int flags);
65 static inline int dquot_suspend(struct super_block *sb, int type) in dquot_suspend() argument
67 return dquot_disable(sb, type, DQUOT_SUSPENDED); in dquot_suspend()
69 int dquot_resume(struct super_block *sb, int type);
74 int dquot_commit_info(struct super_block *sb, int type);
79 int dquot_enable(struct inode *inode, int type, int format_id,
81 int dquot_quota_on(struct super_block *sb, int type, int format_id,
84 int format_id, int type);
[all …]
Dauto_fs4.h38 static inline void set_autofs_type_indirect(unsigned int *type) in set_autofs_type_indirect() argument
40 *type = AUTOFS_TYPE_INDIRECT; in set_autofs_type_indirect()
44 static inline unsigned int autofs_type_indirect(unsigned int type) in autofs_type_indirect() argument
46 return (type == AUTOFS_TYPE_INDIRECT); in autofs_type_indirect()
49 static inline void set_autofs_type_direct(unsigned int *type) in set_autofs_type_direct() argument
51 *type = AUTOFS_TYPE_DIRECT; in set_autofs_type_direct()
55 static inline unsigned int autofs_type_direct(unsigned int type) in autofs_type_direct() argument
57 return (type == AUTOFS_TYPE_DIRECT); in autofs_type_direct()
60 static inline void set_autofs_type_offset(unsigned int *type) in set_autofs_type_offset() argument
62 *type = AUTOFS_TYPE_OFFSET; in set_autofs_type_offset()
[all …]
/linux-3.4.99/net/ieee802154/
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 = NLA_U16, },
[all …]
/linux-3.4.99/scripts/kconfig/
Dexpr.c17 e->type = E_SYMBOL; in expr_alloc_symbol()
22 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce) in expr_alloc_one() argument
25 e->type = type; in expr_alloc_one()
30 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) in expr_alloc_two() argument
33 e->type = type; in expr_alloc_two()
39 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2) in expr_alloc_comp() argument
42 e->type = type; in expr_alloc_comp()
71 switch (org->type) { in expr_copy()
90 printf("can't copy type %d\n", e->type); in expr_copy()
104 switch (e->type) { in expr_free()
[all …]
/linux-3.4.99/drivers/md/
Ddm-exception-store.c24 struct dm_exception_store_type *type; in __find_exception_store_type() local
26 list_for_each_entry(type, &_exception_store_types, list) in __find_exception_store_type()
27 if (!strcmp(name, type->name)) in __find_exception_store_type()
28 return type; in __find_exception_store_type()
35 struct dm_exception_store_type *type; in _get_exception_store_type() local
39 type = __find_exception_store_type(name); in _get_exception_store_type()
41 if (type && !try_module_get(type->module)) in _get_exception_store_type()
42 type = NULL; in _get_exception_store_type()
46 return type; in _get_exception_store_type()
75 struct dm_exception_store_type *type; in get_type() local
[all …]
/linux-3.4.99/drivers/media/video/cx88/
Dcx88-cards.c77 .type = CX88_VMUX_COMPOSITE1,
80 .type = CX88_VMUX_COMPOSITE2,
83 .type = CX88_VMUX_COMPOSITE3,
86 .type = CX88_VMUX_COMPOSITE4,
98 .type = CX88_VMUX_TELEVISION,
102 .type = CX88_VMUX_DEBUG,
106 .type = CX88_VMUX_COMPOSITE1,
110 .type = CX88_VMUX_SVIDEO,
115 .type = CX88_RADIO,
126 .type = CX88_VMUX_TELEVISION,
[all …]
/linux-3.4.99/drivers/media/common/tuners/
Dtuner-xc2028.c77 unsigned int type; member
85 unsigned int type; member
174 static void dump_firm_type_and_int_freq(unsigned int type, u16 int_freq) in dump_firm_type_and_int_freq() argument
176 if (type & BASE) in dump_firm_type_and_int_freq()
178 if (type & INIT1) in dump_firm_type_and_int_freq()
180 if (type & F8MHZ) in dump_firm_type_and_int_freq()
182 if (type & MTS) in dump_firm_type_and_int_freq()
184 if (type & D2620) in dump_firm_type_and_int_freq()
186 if (type & D2633) in dump_firm_type_and_int_freq()
188 if (type & DTV6) in dump_firm_type_and_int_freq()
[all …]
Dtuner-types.c71 .type = TUNER_PARAM_TYPE_PAL,
87 .type = TUNER_PARAM_TYPE_PAL,
103 .type = TUNER_PARAM_TYPE_NTSC,
120 .type = TUNER_PARAM_TYPE_SECAM,
137 .type = TUNER_PARAM_TYPE_PAL,
154 .type = TUNER_PARAM_TYPE_NTSC,
170 .type = TUNER_PARAM_TYPE_PAL,
186 .type = TUNER_PARAM_TYPE_NTSC,
202 .type = TUNER_PARAM_TYPE_NTSC,
213 .type = TUNER_PARAM_TYPE_PAL,
[all …]
/linux-3.4.99/arch/arm/mach-at91/
Dat91sam9x5.c35 .type = CLK_TYPE_PERIPHERAL,
40 .type = CLK_TYPE_PERIPHERAL,
45 .type = CLK_TYPE_PERIPHERAL,
50 .type = CLK_TYPE_PERIPHERAL,
55 .type = CLK_TYPE_PERIPHERAL,
60 .type = CLK_TYPE_PERIPHERAL,
66 .type = CLK_TYPE_PERIPHERAL,
71 .type = CLK_TYPE_PERIPHERAL,
76 .type = CLK_TYPE_PERIPHERAL,
81 .type = CLK_TYPE_PERIPHERAL,
[all …]
Dat91sam9g45.c39 .type = CLK_TYPE_PERIPHERAL,
44 .type = CLK_TYPE_PERIPHERAL,
49 .type = CLK_TYPE_PERIPHERAL,
54 .type = CLK_TYPE_PERIPHERAL,
59 .type = CLK_TYPE_PERIPHERAL,
64 .type = CLK_TYPE_PERIPHERAL,
69 .type = CLK_TYPE_PERIPHERAL,
74 .type = CLK_TYPE_PERIPHERAL,
79 .type = CLK_TYPE_PERIPHERAL,
84 .type = CLK_TYPE_PERIPHERAL,
[all …]
/linux-3.4.99/arch/cris/include/arch-v32/arch/
Dunistd.h9 #define _syscall0(type,name) \ argument
10 type name(void) \
22 return (type) __a; \
24 return (type) -1; \
27 #define _syscall1(type,name,type1,arg1) \ argument
28 type name(type1 arg1) \
40 return (type) __a; \
42 return (type) -1; \
45 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument
46 type name(type1 arg1,type2 arg2) \
[all …]
/linux-3.4.99/arch/cris/include/arch-v10/arch/
Dunistd.h9 #define _syscall0(type,name) \ argument
10 type name(void) \
21 return (type) __a; \
23 return (type) -1; \
26 #define _syscall1(type,name,type1,arg1) \ argument
27 type name(type1 arg1) \
38 return (type) __a; \
40 return (type) -1; \
43 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument
44 type name(type1 arg1,type2 arg2) \
[all …]
/linux-3.4.99/sound/synth/emux/
Demux_effect.c33 #define xoffsetof(type,tag) ((long)(&((type)NULL)->tag) - (long)(NULL)) argument
52 int type; /* byte or word */ member
100 effect_set_byte(unsigned char *valp, struct snd_midi_channel *chan, int type) in effect_set_byte() argument
105 effect = fx->val[type]; in effect_set_byte()
106 if (fx->flag[type] == EMUX_FX_FLAG_ADD) { in effect_set_byte()
107 if (parm_defs[type].type & PARM_IS_SIGNED) in effect_set_byte()
112 if (effect < parm_defs[type].low) in effect_set_byte()
113 effect = parm_defs[type].low; in effect_set_byte()
114 else if (effect > parm_defs[type].high) in effect_set_byte()
115 effect = parm_defs[type].high; in effect_set_byte()
[all …]
/linux-3.4.99/mm/
Dmemblock.c44 static inline const char *memblock_type_name(struct memblock_type *type) in memblock_type_name() argument
46 if (type == &memblock.memory) in memblock_type_name()
48 else if (type == &memblock.reserved) in memblock_type_name()
69 static long __init_memblock memblock_overlaps_region(struct memblock_type *type, in memblock_overlaps_region() argument
74 for (i = 0; i < type->cnt; i++) { in memblock_overlaps_region()
75 phys_addr_t rgnbase = type->regions[i].base; in memblock_overlaps_region()
76 phys_addr_t rgnsize = type->regions[i].size; in memblock_overlaps_region()
81 return (i < type->cnt) ? i : -1; in memblock_overlaps_region()
146 static void __init_memblock memblock_remove_region(struct memblock_type *type, unsigned long r) in memblock_remove_region() argument
148 type->total_size -= type->regions[r].size; in memblock_remove_region()
[all …]
/linux-3.4.99/kernel/trace/
Dtrace_export.c33 #define __field_struct(type, item) argument
36 #define __field(type, item) type item; argument
39 #define __field_desc(type, container, item) type item; argument
42 #define __array(type, item, size) type item[size]; argument
45 #define __array_desc(type, container, item, size) type item[size]; argument
48 #define __dynamic_array(type, item) type item[]; argument
77 #define __field(type, item) \ argument
78 ret = trace_define_field(event_call, #type, #item, \
81 is_signed_type(type), filter_type); \
86 #define __field_desc(type, container, item) \ argument
[all …]
/linux-3.4.99/tools/perf/util/
Dtrace-event-parse.c369 static int event_item_type(enum event_type type) in event_item_type() argument
371 switch (type) { in event_item_type()
385 switch (arg->type) { in free_arg()
442 enum event_type type; in __read_token() local
451 type = get_type(ch); in __read_token()
452 if (type == EVENT_NONE) in __read_token()
453 return type; in __read_token()
457 switch (type) { in __read_token()
463 return type; in __read_token()
500 return type; in __read_token()
[all …]
/linux-3.4.99/crypto/
Daf_alg.c26 const struct af_alg_type *type; member
44 const struct af_alg_type *type = ERR_PTR(-ENOENT); in alg_get_type() local
49 if (strcmp(node->type->name, name)) in alg_get_type()
52 if (try_module_get(node->type->owner)) in alg_get_type()
53 type = node->type; in alg_get_type()
58 return type; in alg_get_type()
61 int af_alg_register_type(const struct af_alg_type *type) in af_alg_register_type() argument
68 if (!strcmp(node->type->name, type->name)) in af_alg_register_type()
77 type->ops->owner = THIS_MODULE; in af_alg_register_type()
78 node->type = type; in af_alg_register_type()
[all …]
/linux-3.4.99/arch/powerpc/math-emu/
Dmath.c223 int type = 0; in do_mathemu() local
272 case LFS: func = lfs; type = D; break; in do_mathemu()
273 case LFSU: func = lfs; type = DU; break; in do_mathemu()
274 case LFD: func = lfd; type = D; break; in do_mathemu()
275 case LFDU: func = lfd; type = DU; break; in do_mathemu()
276 case STFS: func = stfs; type = D; break; in do_mathemu()
277 case STFSU: func = stfs; type = DU; break; in do_mathemu()
278 case STFD: func = stfd; type = D; break; in do_mathemu()
279 case STFDU: func = stfd; type = DU; break; in do_mathemu()
283 case LFSX: func = lfs; type = XE; break; in do_mathemu()
[all …]
/linux-3.4.99/fs/ocfs2/
Dsysfile.c43 int type,
50 static inline int is_global_system_inode(int type) in is_global_system_inode() argument
52 return type >= OCFS2_FIRST_ONLINE_SYSTEM_INODE && in is_global_system_inode()
53 type <= OCFS2_LAST_GLOBAL_SYSTEM_INODE; in is_global_system_inode()
57 int type, in get_local_system_inode() argument
64 BUG_ON(type < OCFS2_FIRST_LOCAL_SYSTEM_INODE || in get_local_system_inode()
65 type > OCFS2_LAST_LOCAL_SYSTEM_INODE); in get_local_system_inode()
99 (type - OCFS2_FIRST_LOCAL_SYSTEM_INODE); in get_local_system_inode()
105 int type, in ocfs2_get_system_file_inode() argument
112 if (is_global_system_inode(type)) { in ocfs2_get_system_file_inode()
[all …]
/linux-3.4.99/drivers/media/video/saa7164/
Dsaa7164-cards.c65 .type = SAA7164_UNIT_EEPROM,
72 .type = SAA7164_UNIT_TUNER,
79 .type = SAA7164_UNIT_TUNER,
86 .type = SAA7164_UNIT_DIGITAL_DEMODULATOR,
93 .type = SAA7164_UNIT_DIGITAL_DEMODULATOR,
111 .type = SAA7164_UNIT_EEPROM,
118 .type = SAA7164_UNIT_TUNER,
125 .type = SAA7164_UNIT_DIGITAL_DEMODULATOR,
132 .type = SAA7164_UNIT_TUNER,
139 .type = SAA7164_UNIT_DIGITAL_DEMODULATOR,
[all …]
/linux-3.4.99/arch/arm/mach-omap1/
Did.c35 u32 type; /* Cpu id bits [31:08], cpu class bits [07:00] */ member
42 { .jtag_id = 0xb574, .die_rev = 0x2, .omap_id = 0x03310315, .type = 0x03100000},
43 { .jtag_id = 0x355f, .die_rev = 0x0, .omap_id = 0x03320000, .type = 0x07300100},
44 { .jtag_id = 0xb55f, .die_rev = 0x0, .omap_id = 0x03320000, .type = 0x07300300},
45 { .jtag_id = 0xb62c, .die_rev = 0x1, .omap_id = 0x03320500, .type = 0x08500000},
46 { .jtag_id = 0xb470, .die_rev = 0x0, .omap_id = 0x03310100, .type = 0x15100000},
47 { .jtag_id = 0xb576, .die_rev = 0x0, .omap_id = 0x03320000, .type = 0x16100000},
48 { .jtag_id = 0xb576, .die_rev = 0x2, .omap_id = 0x03320100, .type = 0x16110000},
49 { .jtag_id = 0xb576, .die_rev = 0x3, .omap_id = 0x03320100, .type = 0x16100c00},
50 { .jtag_id = 0xb576, .die_rev = 0x0, .omap_id = 0x03320200, .type = 0x16100d00},
[all …]
/linux-3.4.99/arch/avr32/include/asm/
Dio.h79 #define __BUILD_MEMORY_SINGLE(pfx, bwl, type) \ argument
81 pfx##write##bwl(type val, volatile void __iomem *addr) \
83 volatile type *__addr; \
84 type __val; \
89 BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); \
94 static inline type pfx##read##bwl(const volatile void __iomem *addr) \
96 volatile type *__addr; \
97 type __val; \
101 BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); \
107 #define __BUILD_IOPORT_SINGLE(pfx, bwl, type, p, slow) \ argument
[all …]
/linux-3.4.99/fs/quota/
Dquota.c21 static int check_quotactl_permission(struct super_block *sb, int type, int cmd, in check_quotactl_permission() argument
35 if ((type == USRQUOTA && current_euid() == id) || in check_quotactl_permission()
36 (type == GRPQUOTA && in_egroup_p(id))) in check_quotactl_permission()
44 return security_quotactl(cmd, type, id, sb); in check_quotactl_permission()
53 static int quota_sync_all(int type) in quota_sync_all() argument
57 if (type >= MAXQUOTAS) in quota_sync_all()
59 ret = security_quotactl(Q_SYNC, type, 0, NULL); in quota_sync_all()
61 iterate_supers(quota_sync_one, &type); in quota_sync_all()
65 static int quota_quotaon(struct super_block *sb, int type, int cmd, qid_t id, in quota_quotaon() argument
71 return sb->s_qcop->quota_on_meta(sb, type, id); in quota_quotaon()
[all …]

12345678910>>...218