/include/uapi/linux/ |
D | v4l2-dv-timings.h | 39 .type = V4L2_DV_BT_656_1120, \ 48 .type = V4L2_DV_BT_656_1120, \ 56 .type = V4L2_DV_BT_656_1120, \ 65 .type = V4L2_DV_BT_656_1120, \ 73 .type = V4L2_DV_BT_656_1120, \ 80 .type = V4L2_DV_BT_656_1120, \ 89 .type = V4L2_DV_BT_656_1120, \ 97 .type = V4L2_DV_BT_656_1120, \ 106 .type = V4L2_DV_BT_656_1120, \ 114 .type = V4L2_DV_BT_656_1120, \ [all …]
|
D | auto_fs4.h | 36 static inline void set_autofs_type_indirect(unsigned int *type) in set_autofs_type_indirect() argument 38 *type = AUTOFS_TYPE_INDIRECT; in set_autofs_type_indirect() 41 static inline unsigned int autofs_type_indirect(unsigned int type) in autofs_type_indirect() argument 43 return (type == AUTOFS_TYPE_INDIRECT); in autofs_type_indirect() 46 static inline void set_autofs_type_direct(unsigned int *type) in set_autofs_type_direct() argument 48 *type = AUTOFS_TYPE_DIRECT; in set_autofs_type_direct() 51 static inline unsigned int autofs_type_direct(unsigned int type) in autofs_type_direct() argument 53 return (type == AUTOFS_TYPE_DIRECT); in autofs_type_direct() 56 static inline void set_autofs_type_offset(unsigned int *type) in set_autofs_type_offset() argument 58 *type = AUTOFS_TYPE_OFFSET; in set_autofs_type_offset() [all …]
|
D | cryptouser.h | 65 char type[CRYPTO_MAX_NAME]; member 69 char type[CRYPTO_MAX_NAME]; member 75 char type[CRYPTO_MAX_ALG_NAME]; member 82 char type[CRYPTO_MAX_NAME]; member 91 char type[CRYPTO_MAX_NAME]; member 99 char type[CRYPTO_MAX_NAME]; member 103 char type[CRYPTO_MAX_NAME]; member 108 char type[CRYPTO_MAX_NAME]; member 112 char type[CRYPTO_MAX_NAME]; member
|
D | dccp.h | 117 static inline unsigned int dccp_packet_hdr_len(const __u8 type) in dccp_packet_hdr_len() argument 119 if (type == DCCP_PKT_DATA) in dccp_packet_hdr_len() 121 if (type == DCCP_PKT_DATAACK || in dccp_packet_hdr_len() 122 type == DCCP_PKT_ACK || in dccp_packet_hdr_len() 123 type == DCCP_PKT_SYNC || in dccp_packet_hdr_len() 124 type == DCCP_PKT_SYNCACK || in dccp_packet_hdr_len() 125 type == DCCP_PKT_CLOSE || in dccp_packet_hdr_len() 126 type == DCCP_PKT_CLOSEREQ) in dccp_packet_hdr_len() 128 if (type == DCCP_PKT_REQUEST) in dccp_packet_hdr_len() 130 if (type == DCCP_PKT_RESPONSE) in dccp_packet_hdr_len()
|
/include/sound/ |
D | asequencer.h | 36 #define snd_seq_ev_is_result_type(ev) ((ev)->type < 5) 38 #define snd_seq_ev_is_channel_type(ev) ((ev)->type >= 5 && (ev)->type < 20) 40 #define snd_seq_ev_is_note_type(ev) ((ev)->type >= 5 && (ev)->type < 10) 42 #define snd_seq_ev_is_control_type(ev) ((ev)->type >= 10 && (ev)->type < 20) 44 #define snd_seq_ev_is_queue_type(ev) ((ev)->type >= 30 && (ev)->type < 40) 46 #define snd_seq_ev_is_message_type(ev) ((ev)->type >= 60 && (ev)->type < 69) 48 #define snd_seq_ev_is_sample_type(ev) ((ev)->type >= 70 && (ev)->type < 79) 50 #define snd_seq_ev_is_user_type(ev) ((ev)->type >= 90 && (ev)->type < 99) 52 #define snd_seq_ev_is_fixed_type(ev) ((ev)->type < 100) 54 #define snd_seq_ev_is_variable_type(ev) ((ev)->type >= 130 && (ev)->type < 140) [all …]
|
/include/uapi/asm-generic/ |
D | ioctl.h | 65 #define _IOC(dir,type,nr,size) \ argument 67 ((type) << _IOC_TYPESHIFT) | \ 76 #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0) argument 77 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size))) argument 78 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) argument 79 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) argument 80 #define _IOR_BAD(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size)) argument 81 #define _IOW_BAD(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size)) argument 82 #define _IOWR_BAD(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size)) argument
|
/include/linux/ |
D | elfnote.h | 41 #define ELFNOTE_START(name, type, flags) \ 46 .long type ; \ 55 #define ELFNOTE(name, type, desc) \ 56 ELFNOTE_START(name, type, "") \ 71 #define _ELFNOTE(size, name, unique, type, desc) \ argument 86 type, \ 91 #define ELFNOTE(size, name, type, desc) \ argument 92 _ELFNOTE(size, name, __LINE__, type, desc) 94 #define ELFNOTE32(name, type, desc) ELFNOTE(32, name, type, desc) argument 95 #define ELFNOTE64(name, type, desc) ELFNOTE(64, name, type, desc) argument
|
D | kobject_ns.h | 41 enum kobj_ns_type type; member 50 int kobj_ns_type_registered(enum kobj_ns_type type); 54 bool kobj_ns_current_may_mount(enum kobj_ns_type type); 55 void *kobj_ns_grab_current(enum kobj_ns_type type); 56 const void *kobj_ns_netlink(enum kobj_ns_type type, struct sock *sk); 57 const void *kobj_ns_initial(enum kobj_ns_type type); 58 void kobj_ns_drop(enum kobj_ns_type type, void *ns);
|
D | firmware-map.h | 26 int firmware_map_add_early(u64 start, u64 end, const char *type); 27 int firmware_map_add_hotplug(u64 start, u64 end, const char *type); 28 int firmware_map_remove(u64 start, u64 end, const char *type); 32 static inline int firmware_map_add_early(u64 start, u64 end, const char *type) in firmware_map_add_early() argument 37 static inline int firmware_map_add_hotplug(u64 start, u64 end, const char *type) in firmware_map_add_hotplug() argument 42 static inline int firmware_map_remove(u64 start, u64 end, const char *type) in firmware_map_remove() argument
|
D | percpu-defs.h | 91 #define DECLARE_PER_CPU_SECTION(type, name, sec) \ argument 93 extern __PCPU_ATTRS(sec) __typeof__(type) name 95 #define DEFINE_PER_CPU_SECTION(type, name, sec) \ argument 99 extern __PCPU_ATTRS(sec) __typeof__(type) name; \ 101 __typeof__(type) name 106 #define DECLARE_PER_CPU_SECTION(type, name, sec) \ argument 107 extern __PCPU_ATTRS(sec) __typeof__(type) name 109 #define DEFINE_PER_CPU_SECTION(type, name, sec) \ argument 111 __typeof__(type) name 118 #define DECLARE_PER_CPU(type, name) \ argument [all …]
|
D | quotaops.h | 61 struct dquot *dquot_alloc(struct super_block *sb, int type); 73 int dquot_disable(struct super_block *sb, int type, unsigned int flags); 75 static inline int dquot_suspend(struct super_block *sb, int type) in dquot_suspend() argument 77 return dquot_disable(sb, type, DQUOT_SUSPENDED); in dquot_suspend() 79 int dquot_resume(struct super_block *sb, int type); 84 int dquot_commit_info(struct super_block *sb, int type); 90 int dquot_enable(struct inode *inode, int type, int format_id, 92 int dquot_quota_on(struct super_block *sb, int type, int format_id, 95 int format_id, int type); 96 int dquot_quota_off(struct super_block *sb, int type); [all …]
|
D | profile.h | 46 void profile_tick(int type); 52 void profile_hits(int type, void *ip, unsigned int nr_hits); 57 static inline void profile_hit(int type, void *ip) in profile_hit() argument 62 if (unlikely(prof_on == type)) in profile_hit() 63 profile_hits(type, ip, 1); in profile_hit() 97 static inline void profile_tick(int type) in profile_tick() argument 102 static inline void profile_hits(int type, void *ip, unsigned int nr_hits) in profile_hits() argument 107 static inline void profile_hit(int type, void *ip) in profile_hit() argument
|
D | typecheck.h | 8 #define typecheck(type,x) \ argument 9 ({ type __dummy; \ 19 #define typecheck_fn(type,function) \ argument 20 ({ typeof(type) __tmp = function; \
|
D | iscsi_boot_sysfs.h | 91 ssize_t (*show) (void *data, int type, char *buf); 101 umode_t (*is_visible) (void *data, int type); 119 ssize_t (*show) (void *data, int type, char *buf), 120 umode_t (*is_visible) (void *data, int type), 126 ssize_t (*show) (void *data, int type, char *buf), 127 umode_t (*is_visible) (void *data, int type), 132 ssize_t (*show) (void *data, int type, char *buf), 133 umode_t (*is_visible) (void *data, int type), 139 ssize_t (*show)(void *data, int type, char *buf), 140 umode_t (*is_visible)(void *data, int type),
|
D | swap_cgroup.h | 12 extern int swap_cgroup_swapon(int type, unsigned long max_pages); 13 extern void swap_cgroup_swapoff(int type); 30 swap_cgroup_swapon(int type, unsigned long max_pages) in swap_cgroup_swapon() argument 35 static inline void swap_cgroup_swapoff(int type) in swap_cgroup_swapoff() argument
|
D | icmpv6.h | 15 extern void icmpv6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info); 17 typedef void ip6_icmp_send_t(struct sk_buff *skb, u8 type, u8 code, __u32 info, 21 int ip6_err_gen_icmpv6_unreach(struct sk_buff *skb, int nhs, int type, 27 u8 type, u8 code, __u32 info) in icmpv6_send() argument 34 extern int icmpv6_err_convert(u8 type, u8 code, 44 u8 type,
|
D | frontswap.h | 26 extern void __frontswap_init(unsigned type, unsigned long *map); 95 static inline void frontswap_invalidate_page(unsigned type, pgoff_t offset) in frontswap_invalidate_page() argument 98 __frontswap_invalidate_page(type, offset); in frontswap_invalidate_page() 101 static inline void frontswap_invalidate_area(unsigned type) in frontswap_invalidate_area() argument 104 __frontswap_invalidate_area(type); in frontswap_invalidate_area() 107 static inline void frontswap_init(unsigned type, unsigned long *map) in frontswap_init() argument 110 __frontswap_init(type, map); in frontswap_init()
|
D | quota.h | 74 enum quota_type type; /* USRQUOTA (uid) or GRPQUOTA (gid) or PRJQUOTA (projid) */ member 98 enum quota_type type, qid_t qid) in make_kqid() argument 102 kqid.type = type; in make_kqid() 103 switch (type) { in make_kqid() 125 static inline struct kqid make_kqid_invalid(enum quota_type type) in make_kqid_invalid() argument 129 kqid.type = type; in make_kqid_invalid() 130 switch (type) { in make_kqid_invalid() 153 kqid.type = USRQUOTA; in make_kqid_uid() 165 kqid.type = GRPQUOTA; in make_kqid_gid() 177 kqid.type = PRJQUOTA; in make_kqid_projid() [all …]
|
/include/uapi/linux/netfilter/ |
D | xt_sctp.h | 38 #define bytes(type) (sizeof(type) * 8) argument 40 #define SCTP_CHUNKMAP_SET(chunkmap, type) \ argument 42 (chunkmap)[type / bytes(__u32)] |= \ 43 1 << (type % bytes(__u32)); \ 46 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) \ argument 48 (chunkmap)[type / bytes(__u32)] &= \ 49 ~(1 << (type % bytes(__u32))); \ 52 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) \ argument 54 ((chunkmap)[type / bytes (__u32)] & \ 55 (1 << (type % bytes (__u32)))) ? 1: 0; \
|
/include/linux/iio/ |
D | events.h | 28 type, chan, chan1, chan2) \ argument 29 (((u64)type << 56) | ((u64)diff << 55) | \ 45 type, direction) \ argument 46 IIO_EVENT_CODE(chan_type, 0, modifier, direction, type, number, 0, 0) 56 #define IIO_UNMOD_EVENT_CODE(chan_type, number, type, direction) \ argument 57 IIO_EVENT_CODE(chan_type, 0, 0, direction, type, number, 0, 0)
|
/include/linux/crush/ |
D | hash.h | 14 extern const char *crush_hash_name(int type); 16 extern __u32 crush_hash32(int type, __u32 a); 17 extern __u32 crush_hash32_2(int type, __u32 a, __u32 b); 18 extern __u32 crush_hash32_3(int type, __u32 a, __u32 b, __u32 c); 19 extern __u32 crush_hash32_4(int type, __u32 a, __u32 b, __u32 c, __u32 d); 20 extern __u32 crush_hash32_5(int type, __u32 a, __u32 b, __u32 c, __u32 d,
|
/include/trace/events/ |
D | thermal.h | 16 #define show_tzt_type(type) \ argument 17 __print_symbolic(type, \ 30 __string(thermal_zone, tz->type) 37 __assign_str(thermal_zone, tz->type); 55 __string(type, cdev->type) 60 __assign_str(type, cdev->type); 64 TP_printk("type=%s target=%lu", __get_str(type), __entry->target) 75 __string(thermal_zone, tz->type) 82 __assign_str(thermal_zone, tz->type); 159 __string(type, cdev->type ) [all …]
|
D | 9p.h | 96 #define show_9p_op(type) \ argument 97 __print_symbolic(type, P9_MSG_T) 100 TP_PROTO(struct p9_client *clnt, int8_t type, int tag), 102 TP_ARGS(clnt, type, tag), 106 __field( __u8, type ) 112 __entry->type = type; 117 (long)__entry->clnt, show_9p_op(__entry->type), 122 TP_PROTO(struct p9_client *clnt, int8_t type, int tag, int err), 124 TP_ARGS(clnt, type, tag, err), 128 __field( __u8, type ) [all …]
|
D | devlink.h | 18 unsigned long type, const u8 *buf, size_t len), 20 TP_ARGS(devlink, incoming, type, buf, len), 27 __field(unsigned long, type) 37 __entry->type = type; 44 __get_str(driver_name), __entry->incoming, __entry->type, 61 bool incoming, unsigned long type, in trace_devlink_hwmsg() argument
|
/include/uapi/sound/ |
D | firewire.h | 15 unsigned int type; /* SNDRV_FIREWIRE_EVENT_xxx */ member 19 unsigned int type; member 24 unsigned int type; member 40 unsigned int type; member 45 unsigned int type; member 71 unsigned int type; /* SNDRV_FIREWIRE_TYPE_xxx */ member
|