Home
last modified time | relevance | path

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

12345678910>>...35

/include/uapi/linux/
Dv4l2-dv-timings.h26 .type = V4L2_DV_BT_656_1120, \
36 .type = V4L2_DV_BT_656_1120, \
46 .type = V4L2_DV_BT_656_1120, \
57 .type = V4L2_DV_BT_656_1120, \
67 .type = V4L2_DV_BT_656_1120, \
76 .type = V4L2_DV_BT_656_1120, \
85 .type = V4L2_DV_BT_656_1120, \
94 .type = V4L2_DV_BT_656_1120, \
104 .type = V4L2_DV_BT_656_1120, \
113 .type = V4L2_DV_BT_656_1120, \
[all …]
Dauto_fs.h47 int type; /* Type of packet */ member
103 static inline void set_autofs_type_indirect(unsigned int *type) in set_autofs_type_indirect() argument
105 *type = AUTOFS_TYPE_INDIRECT; in set_autofs_type_indirect()
108 static inline unsigned int autofs_type_indirect(unsigned int type) in autofs_type_indirect() argument
110 return (type == AUTOFS_TYPE_INDIRECT); in autofs_type_indirect()
113 static inline void set_autofs_type_direct(unsigned int *type) in set_autofs_type_direct() argument
115 *type = AUTOFS_TYPE_DIRECT; in set_autofs_type_direct()
118 static inline unsigned int autofs_type_direct(unsigned int type) in autofs_type_direct() argument
120 return (type == AUTOFS_TYPE_DIRECT); in autofs_type_direct()
123 static inline void set_autofs_type_offset(unsigned int *type) in set_autofs_type_offset() argument
[all …]
Dcryptouser.h84 char type[CRYPTO_MAX_NAME]; member
94 char type[CRYPTO_MAX_NAME]; member
106 char type[CRYPTO_MAX_NAME]; member
116 char type[CRYPTO_MAX_NAME]; member
126 char type[CRYPTO_MAX_NAME]; member
134 char type[CRYPTO_MAX_NAME]; member
143 char type[CRYPTO_MAX_NAME]; member
152 char type[CRYPTO_MAX_NAME]; member
156 char type[CRYPTO_MAX_NAME]; member
160 char type[CRYPTO_MAX_NAME]; member
[all …]
/include/net/libeth/
Dcache.h16 #define libeth_cacheline_group_assert(type, grp, sz) \ argument
17 static_assert(offsetof(type, __cacheline_group_end__##grp) - \
18 offsetofend(type, __cacheline_group_begin__##grp) == \
20 #define __libeth_cacheline_struct_assert(type, sz) \ argument
21 static_assert(sizeof(type) == (sz))
23 #define libeth_cacheline_group_assert(type, grp, sz) \ argument
24 static_assert(offsetof(type, __cacheline_group_end__##grp) - \
25 offsetofend(type, __cacheline_group_begin__##grp) <= \
27 #define __libeth_cacheline_struct_assert(type, sz) \ argument
28 static_assert(sizeof(type) <= (sz))
[all …]
/include/sound/
Dasequencer.h21 #define snd_seq_ev_is_result_type(ev) ((ev)->type < 5)
23 #define snd_seq_ev_is_channel_type(ev) ((ev)->type >= 5 && (ev)->type < 20)
25 #define snd_seq_ev_is_note_type(ev) ((ev)->type >= 5 && (ev)->type < 10)
27 #define snd_seq_ev_is_control_type(ev) ((ev)->type >= 10 && (ev)->type < 20)
29 #define snd_seq_ev_is_queue_type(ev) ((ev)->type >= 30 && (ev)->type < 40)
31 #define snd_seq_ev_is_message_type(ev) ((ev)->type >= 60 && (ev)->type < 69)
33 #define snd_seq_ev_is_sample_type(ev) ((ev)->type >= 70 && (ev)->type < 79)
35 #define snd_seq_ev_is_user_type(ev) ((ev)->type >= 90 && (ev)->type < 99)
37 #define snd_seq_ev_is_fixed_type(ev) ((ev)->type < 100)
39 #define snd_seq_ev_is_variable_type(ev) ((ev)->type >= 130 && (ev)->type < 140)
[all …]
/include/linux/sched/
Disolation.h24 extern int housekeeping_any_cpu(enum hk_type type);
25 extern const struct cpumask *housekeeping_cpumask(enum hk_type type);
26 extern bool housekeeping_enabled(enum hk_type type);
27 extern void housekeeping_affine(struct task_struct *t, enum hk_type type);
28 extern bool housekeeping_test_cpu(int cpu, enum hk_type type);
33 static inline int housekeeping_any_cpu(enum hk_type type) in housekeeping_any_cpu() argument
38 static inline const struct cpumask *housekeeping_cpumask(enum hk_type type) in housekeeping_cpumask() argument
43 static inline bool housekeeping_enabled(enum hk_type type) in housekeeping_enabled() argument
49 enum hk_type type) { } in housekeeping_affine() argument
51 static inline bool housekeeping_test_cpu(int cpu, enum hk_type type) in housekeeping_test_cpu() argument
[all …]
/include/drm/ttm/
Dttm_range_manager.h38 unsigned type, bool use_tt,
41 unsigned type);
43 unsigned int type, bool use_tt, in ttm_range_man_init() argument
46 BUILD_BUG_ON(__builtin_constant_p(type) && type >= TTM_NUM_MEM_TYPES); in ttm_range_man_init()
47 return ttm_range_man_init_nocheck(bdev, type, use_tt, p_size); in ttm_range_man_init()
51 unsigned int type) in ttm_range_man_fini() argument
53 BUILD_BUG_ON(__builtin_constant_p(type) && type >= TTM_NUM_MEM_TYPES); in ttm_range_man_fini()
54 return ttm_range_man_fini_nocheck(bdev, type); in ttm_range_man_fini()
/include/linux/
Dcontainer_of.h18 #define container_of(ptr, type, member) ({ \ argument
20 static_assert(__same_type(*(ptr), ((type *)0)->member) || \
23 ((type *)(__mptr - offsetof(type, member))); })
32 #define container_of_const(ptr, type, member) \ argument
34 const typeof(*(ptr)) *: ((const type *)container_of(ptr, type, member)),\
35 default: ((type *)container_of(ptr, type, member)) \
Delfnote.h42 #define ELFNOTE_START(name, type, flags) \
47 .long type ; \
56 #define ELFNOTE(name, type, desc) \
57 ELFNOTE_START(name, type, "a") \
72 #define _ELFNOTE(size, name, unique, type, desc) \ argument
87 type, \
92 #define ELFNOTE(size, name, type, desc) \ argument
93 _ELFNOTE(size, name, __LINE__, type, desc)
95 #define ELFNOTE32(name, type, desc) ELFNOTE(32, name, type, desc) argument
96 #define ELFNOTE64(name, type, desc) ELFNOTE(64, name, type, desc) argument
Ddevice_cgroup.h15 int devcgroup_check_permission(short type, u32 major, u32 minor,
19 short type, access = 0; in devcgroup_inode_permission() local
25 type = DEVCG_DEV_BLOCK; in devcgroup_inode_permission()
27 type = DEVCG_DEV_CHAR; in devcgroup_inode_permission()
36 return devcgroup_check_permission(type, imajor(inode), iminor(inode), in devcgroup_inode_permission()
42 short type; in devcgroup_inode_mknod() local
51 type = DEVCG_DEV_BLOCK; in devcgroup_inode_mknod()
53 type = DEVCG_DEV_CHAR; in devcgroup_inode_mknod()
55 return devcgroup_check_permission(type, MAJOR(dev), MINOR(dev), in devcgroup_inode_mknod()
60 static inline int devcgroup_check_permission(short type, u32 major, u32 minor, in devcgroup_check_permission() argument
Dicmpv6.h18 typedef void ip6_icmp_send_t(struct sk_buff *skb, u8 type, u8 code, __u32 info,
21 void icmp6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info,
25 static inline void __icmpv6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info, in __icmpv6_send() argument
28 icmp6_send(skb, type, code, info, NULL, parm); in __icmpv6_send()
41 extern void __icmpv6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info,
47 static inline void icmpv6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info) in icmpv6_send() argument
49 __icmpv6_send(skb, type, code, info, IP6CB(skb)); in icmpv6_send()
52 int ip6_err_gen_icmpv6_unreach(struct sk_buff *skb, int nhs, int type,
56 void icmpv6_ndo_send(struct sk_buff *skb_in, u8 type, u8 code, __u32 info);
58 static inline void icmpv6_ndo_send(struct sk_buff *skb_in, u8 type, u8 code, __u32 info) in icmpv6_ndo_send() argument
[all …]
Dkobject_ns.h40 enum kobj_ns_type type; member
49 int kobj_ns_type_registered(enum kobj_ns_type type);
53 bool kobj_ns_current_may_mount(enum kobj_ns_type type);
54 void *kobj_ns_grab_current(enum kobj_ns_type type);
55 const void *kobj_ns_netlink(enum kobj_ns_type type, struct sock *sk);
56 const void *kobj_ns_initial(enum kobj_ns_type type);
57 void kobj_ns_drop(enum kobj_ns_type type, void *ns);
Dfirmware-map.h17 int firmware_map_add_early(u64 start, u64 end, const char *type);
18 int firmware_map_add_hotplug(u64 start, u64 end, const char *type);
19 int firmware_map_remove(u64 start, u64 end, const char *type);
23 static inline int firmware_map_add_early(u64 start, u64 end, const char *type) in firmware_map_add_early() argument
28 static inline int firmware_map_add_hotplug(u64 start, u64 end, const char *type) in firmware_map_add_hotplug() argument
33 static inline int firmware_map_remove(u64 start, u64 end, const char *type) in firmware_map_remove() argument
Dquotaops.h69 struct dquot *dquot_alloc(struct super_block *sb, int type);
81 int dquot_disable(struct super_block *sb, int type, unsigned int flags);
83 static inline int dquot_suspend(struct super_block *sb, int type) in dquot_suspend() argument
85 return dquot_disable(sb, type, DQUOT_SUSPENDED); in dquot_suspend()
87 int dquot_resume(struct super_block *sb, int type);
92 int dquot_commit_info(struct super_block *sb, int type);
98 int dquot_load_quota_sb(struct super_block *sb, int type, int format_id,
100 int dquot_load_quota_inode(struct inode *inode, int type, int format_id,
102 int dquot_quota_on(struct super_block *sb, int type, int format_id,
105 int format_id, int type);
[all …]
Dprofile.h39 void profile_tick(int type);
45 void profile_hits(int type, void *ip, unsigned int nr_hits);
50 static inline void profile_hit(int type, void *ip) in profile_hit() argument
55 if (unlikely(prof_on == type)) in profile_hit()
56 profile_hits(type, ip, 1); in profile_hit()
80 static inline void profile_tick(int type) in profile_tick() argument
85 static inline void profile_hits(int type, void *ip, unsigned int nr_hits) in profile_hits() argument
90 static inline void profile_hit(int type, void *ip) in profile_hit() argument
Dbitfield.h47 #define __scalar_type_to_unsigned_cases(type) \ argument
48 unsigned type: (unsigned type)0, \
49 signed type: (unsigned type)0
61 #define __bf_cast_unsigned(type, x) ((__unsigned_scalar_typeof(type))(x)) argument
174 #define ____MAKE_OP(type,base,to,from) \ argument
175 static __always_inline __##type type##_encode_bits(base v, base field) \
181 static __always_inline __##type type##_replace_bits(__##type old, \
184 return (old & ~to(field)) | type##_encode_bits(val, field); \
186 static __always_inline void type##p_replace_bits(__##type *p, \
189 *p = (*p & ~to(field)) | type##_encode_bits(val, field); \
[all …]
Dscreen_info.h17 static inline bool __screen_info_has_lfb(unsigned int type) in __screen_info_has_lfb() argument
19 return (type == VIDEO_TYPE_VLFB) || (type == VIDEO_TYPE_EFI); in __screen_info_has_lfb()
43 static inline u64 __screen_info_lfb_size(const struct screen_info *si, unsigned int type) in __screen_info_lfb_size() argument
47 if (type == VIDEO_TYPE_VLFB) in __screen_info_lfb_size()
62 static inline unsigned int __screen_info_video_type(unsigned int type) in __screen_info_video_type() argument
64 switch (type) { in __screen_info_video_type()
79 return type; in __screen_info_video_type()
94 unsigned int type; in screen_info_video_type() local
101 type = __screen_info_video_type(si->orig_video_isVGA); in screen_info_video_type()
102 if (type) in screen_info_video_type()
Dpercpu-defs.h86 #define DECLARE_PER_CPU_SECTION(type, name, sec) \ argument
88 extern __PCPU_ATTRS(sec) __typeof__(type) name
90 #define DEFINE_PER_CPU_SECTION(type, name, sec) \ argument
94 extern __PCPU_ATTRS(sec) __typeof__(type) name; \
95 __PCPU_ATTRS(sec) __weak __typeof__(type) name
100 #define DECLARE_PER_CPU_SECTION(type, name, sec) \ argument
101 extern __PCPU_ATTRS(sec) __typeof__(type) name
103 #define DEFINE_PER_CPU_SECTION(type, name, sec) \ argument
104 __PCPU_ATTRS(sec) __typeof__(type) name
111 #define DECLARE_PER_CPU(type, name) \ argument
[all …]
/include/uapi/asm-generic/
Dioctl.h69 #define _IOC(dir,type,nr,size) \ argument
71 ((type) << _IOC_TYPESHIFT) | \
85 #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0) argument
86 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size))) argument
87 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) argument
88 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) argument
89 #define _IOR_BAD(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size)) argument
90 #define _IOW_BAD(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size)) argument
91 #define _IOWR_BAD(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size)) argument
/include/net/
Dnet_debug.h84 #define netif_printk(priv, type, level, dev, fmt, args...) \ argument
86 if (netif_msg_##type(priv)) \
90 #define netif_level(level, priv, type, dev, fmt, args...) \ argument
92 if (netif_msg_##type(priv)) \
96 #define netif_emerg(priv, type, dev, fmt, args...) \ argument
97 netif_level(emerg, priv, type, dev, fmt, ##args)
98 #define netif_alert(priv, type, dev, fmt, args...) \ argument
99 netif_level(alert, priv, type, dev, fmt, ##args)
100 #define netif_crit(priv, type, dev, fmt, args...) \ argument
101 netif_level(crit, priv, type, dev, fmt, ##args)
[all …]
/include/rv/
Dda_monitor.h21 #define DECLARE_RV_REACTING_HELPERS(name, type) \ argument
24 static inline char *format_react_msg_##name(type curr_state, type event) \
47 #define DECLARE_RV_REACTING_HELPERS(name, type) \ argument
48 static inline char *format_react_msg_##name(type curr_state, type event) \
67 #define DECLARE_DA_MON_GENERIC_HELPERS(name, type) \ argument
69 DECLARE_RV_REACTING_HELPERS(name, type) \
83 static inline type da_monitor_curr_state_##name(struct da_monitor *da_mon) \
154 #define DECLARE_DA_MON_MODEL_HANDLER_IMPLICIT(name, type) \ argument
159 type curr_state = da_monitor_curr_state_##name(da_mon); \
160 type next_state = model_get_next_state_##name(curr_state, event); \
[all …]
/include/crypto/internal/
Dcipher.h57 u32 type, u32 mask) in crypto_alloc_cipher() argument
59 type &= ~CRYPTO_ALG_TYPE_MASK; in crypto_alloc_cipher()
60 type |= CRYPTO_ALG_TYPE_CIPHER; in crypto_alloc_cipher()
63 return __crypto_cipher_cast(crypto_alloc_base(alg_name, type, mask)); in crypto_alloc_cipher()
90 static inline int crypto_has_cipher(const char *alg_name, u32 type, u32 mask) in crypto_has_cipher() argument
92 type &= ~CRYPTO_ALG_TYPE_MASK; in crypto_has_cipher()
93 type |= CRYPTO_ALG_TYPE_CIPHER; in crypto_has_cipher()
96 return crypto_has_alg(alg_name, type, mask); in crypto_has_cipher()
187 const char *name, u32 type, u32 mask) in crypto_grab_cipher() argument
189 type &= ~CRYPTO_ALG_TYPE_MASK; in crypto_grab_cipher()
[all …]
/include/uapi/linux/netfilter/
Dxt_sctp.h39 #define bytes(type) (sizeof(type) * 8) argument
41 #define SCTP_CHUNKMAP_SET(chunkmap, type) \ argument
43 (chunkmap)[type / bytes(__u32)] |= \
44 1u << (type % bytes(__u32)); \
47 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) \ argument
49 (chunkmap)[type / bytes(__u32)] &= \
50 ~(1u << (type % bytes(__u32))); \
53 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) \ argument
55 ((chunkmap)[type / bytes (__u32)] & \
56 (1u << (type % bytes (__u32)))) ? 1: 0; \
/include/trace/stages/
Dstage1_struct_define.h6 #define __field(type, item) type item; argument
9 #define __field_ext(type, item, filter_type) type item; argument
12 #define __field_struct(type, item) type item; argument
15 #define __field_struct_ext(type, item, filter_type) type item; argument
18 #define __array(type, item, len) type item[len]; argument
21 #define __dynamic_array(type, item, len) u32 __data_loc_##item; argument
42 #define __rel_dynamic_array(type, item, len) u32 __rel_loc_##item; argument
/include/trace/events/
D9p.h119 #define show_9p_op(type) \ argument
120 __print_symbolic(type, P9_MSG_T)
121 #define show_9p_fid_reftype(type) \ argument
122 __print_symbolic(type, P9_FID_REFTYPE)
125 TP_PROTO(struct p9_client *clnt, int8_t type, int tag),
127 TP_ARGS(clnt, type, tag),
131 __field( __u8, type )
137 __entry->type = type;
142 (long)__entry->clnt, show_9p_op(__entry->type),
147 TP_PROTO(struct p9_client *clnt, int8_t type, int tag, int err),
[all …]

12345678910>>...35