/include/uapi/linux/ |
D | v4l2-dv-timings.h | 35 .type = V4L2_DV_BT_656_1120, \ 45 .type = V4L2_DV_BT_656_1120, \ 55 .type = V4L2_DV_BT_656_1120, \ 66 .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, \ 103 .type = V4L2_DV_BT_656_1120, \ 113 .type = V4L2_DV_BT_656_1120, \ 122 .type = V4L2_DV_BT_656_1120, \ [all …]
|
D | auto_fs.h | 47 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 …]
|
D | cryptouser.h | 83 char type[CRYPTO_MAX_NAME]; member 92 char type[CRYPTO_MAX_NAME]; member 103 char type[CRYPTO_MAX_NAME]; member 112 char type[CRYPTO_MAX_NAME]; member 121 char type[CRYPTO_MAX_NAME]; member 128 char type[CRYPTO_MAX_NAME]; member 136 char type[CRYPTO_MAX_NAME]; member 144 char type[CRYPTO_MAX_NAME]; member 148 char type[CRYPTO_MAX_NAME]; member 152 char type[CRYPTO_MAX_NAME]; member [all …]
|
/include/sound/ |
D | asequencer.h | 21 #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/uapi/asm-generic/ |
D | ioctl.h | 69 #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/linux/ |
D | elfnote.h | 42 #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
|
D | icmpv6.h | 18 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 …]
|
D | device_cgroup.h | 15 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
|
D | kobject_ns.h | 40 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);
|
D | bitfield.h | 44 #define __scalar_type_to_unsigned_cases(type) \ argument 45 unsigned type: (unsigned type)0, \ 46 signed type: (unsigned type)0 58 #define __bf_cast_unsigned(type, x) ((__unsigned_scalar_typeof(type))(x)) argument 144 #define ____MAKE_OP(type,base,to,from) \ argument 145 static __always_inline __##type type##_encode_bits(base v, base field) \ 151 static __always_inline __##type type##_replace_bits(__##type old, \ 154 return (old & ~to(field)) | type##_encode_bits(val, field); \ 156 static __always_inline void type##p_replace_bits(__##type *p, \ 159 *p = (*p & ~to(field)) | type##_encode_bits(val, field); \ [all …]
|
D | firmware-map.h | 17 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
|
D | quotaops.h | 68 struct dquot *dquot_alloc(struct super_block *sb, int type); 80 int dquot_disable(struct super_block *sb, int type, unsigned int flags); 82 static inline int dquot_suspend(struct super_block *sb, int type) in dquot_suspend() argument 84 return dquot_disable(sb, type, DQUOT_SUSPENDED); in dquot_suspend() 86 int dquot_resume(struct super_block *sb, int type); 91 int dquot_commit_info(struct super_block *sb, int type); 97 int dquot_load_quota_sb(struct super_block *sb, int type, int format_id, 99 int dquot_load_quota_inode(struct inode *inode, int type, int format_id, 101 int dquot_quota_on(struct super_block *sb, int type, int format_id, 104 int format_id, int type); [all …]
|
D | percpu-defs.h | 86 #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 …]
|
D | profile.h | 47 void profile_tick(int type); 53 void profile_hits(int type, void *ip, unsigned int nr_hits); 58 static inline void profile_hit(int type, void *ip) in profile_hit() argument 63 if (unlikely(prof_on == type)) in profile_hit() 64 profile_hits(type, ip, 1); in profile_hit() 98 static inline void profile_tick(int type) in profile_tick() argument 103 static inline void profile_hits(int type, void *ip, unsigned int nr_hits) in profile_hits() argument 108 static inline void profile_hit(int type, void *ip) in profile_hit() argument
|
D | iscsi_boot_sysfs.h | 83 ssize_t (*show) (void *data, int type, char *buf); 93 umode_t (*is_visible) (void *data, int type); 111 ssize_t (*show) (void *data, int type, char *buf), 112 umode_t (*is_visible) (void *data, int type), 118 ssize_t (*show) (void *data, int type, char *buf), 119 umode_t (*is_visible) (void *data, int type), 124 ssize_t (*show) (void *data, int type, char *buf), 125 umode_t (*is_visible) (void *data, int type), 131 ssize_t (*show)(void *data, int type, char *buf), 132 umode_t (*is_visible)(void *data, int type),
|
D | typecheck.h | 9 #define typecheck(type,x) \ argument 10 ({ type __dummy; \ 20 #define typecheck_fn(type,function) \ argument 21 ({ typeof(type) __tmp = function; \
|
D | moduleparam.h | 29 __MODULE_INFO(parmtype, name##type, #name ":" _type) 126 #define module_param(name, type, perm) \ argument 127 module_param_named(name, name, type, perm) 135 #define module_param_unsafe(name, type, perm) \ argument 136 module_param_named_unsafe(name, name, type, perm) 149 #define module_param_named(name, value, type, perm) \ argument 150 param_check_##type(name, &(value)); \ 151 module_param_cb(name, ¶m_ops_##type, &value, perm); \ 152 __MODULE_PARM_TYPE(name, #type) 161 #define module_param_named_unsafe(name, value, type, perm) \ argument [all …]
|
/include/crypto/internal/ |
D | cipher.h | 57 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() 185 const char *name, u32 type, u32 mask) in crypto_grab_cipher() argument 187 type &= ~CRYPTO_ALG_TYPE_MASK; in crypto_grab_cipher() [all …]
|
/include/uapi/linux/netfilter/ |
D | xt_sctp.h | 39 #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/linux/iio/ |
D | events.h | 25 type, chan, chan1, chan2) \ argument 26 (((u64)type << 56) | ((u64)diff << 55) | \ 42 type, direction) \ argument 43 IIO_EVENT_CODE(chan_type, 0, modifier, direction, type, number, 0, 0) 53 #define IIO_UNMOD_EVENT_CODE(chan_type, number, type, direction) \ argument 54 IIO_EVENT_CODE(chan_type, 0, 0, direction, type, number, 0, 0)
|
/include/linux/crush/ |
D | hash.h | 15 extern const char *crush_hash_name(int type); 17 extern __u32 crush_hash32(int type, __u32 a); 18 extern __u32 crush_hash32_2(int type, __u32 a, __u32 b); 19 extern __u32 crush_hash32_3(int type, __u32 a, __u32 b, __u32 c); 20 extern __u32 crush_hash32_4(int type, __u32 a, __u32 b, __u32 c, __u32 d); 21 extern __u32 crush_hash32_5(int type, __u32 a, __u32 b, __u32 c, __u32 d,
|
/include/kunit/ |
D | assert.h | 45 enum kunit_assert_type type; member 71 .type = assert_type, \ 105 #define KUNIT_INIT_FAIL_ASSERT_STRUCT(test, type) { \ argument 107 type, \ 140 #define KUNIT_INIT_UNARY_ASSERT_STRUCT(test, type, cond, expect_true) { \ argument 142 type, \ 178 #define KUNIT_INIT_PTR_NOT_ERR_STRUCT(test, type, txt, val) { \ argument 180 type, \ 227 type, \ argument 234 type, \ [all …]
|
/include/uapi/sound/ |
D | firewire.h | 18 unsigned int type; /* SNDRV_FIREWIRE_EVENT_xxx */ member 22 unsigned int type; member 27 unsigned int type; member 43 unsigned int type; member 48 unsigned int type; member 53 unsigned int type; member 64 unsigned int type; member 94 unsigned int type; /* SNDRV_FIREWIRE_TYPE_xxx */ member
|
/include/trace/events/ |
D | thermal.h | 17 #define show_tzt_type(type) \ argument 18 __print_symbolic(type, \ 31 __string(thermal_zone, tz->type) 38 __assign_str(thermal_zone, tz->type); 56 __string(type, cdev->type) 61 __assign_str(type, cdev->type); 65 TP_printk("type=%s target=%lu", __get_str(type), __entry->target) 76 __string(thermal_zone, tz->type) 83 __assign_str(thermal_zone, tz->type); 161 __string(type, cdev->type ) [all …]
|
D | 9p.h | 97 #define show_9p_op(type) \ argument 98 __print_symbolic(type, P9_MSG_T) 101 TP_PROTO(struct p9_client *clnt, int8_t type, int tag), 103 TP_ARGS(clnt, type, tag), 107 __field( __u8, type ) 113 __entry->type = type; 118 (long)__entry->clnt, show_9p_op(__entry->type), 123 TP_PROTO(struct p9_client *clnt, int8_t type, int tag, int err), 125 TP_ARGS(clnt, type, tag, err), 129 __field( __u8, type ) [all …]
|