| /include/uapi/linux/ |
| A D | v4l2-dv-timings.h | 26 .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 …]
|
| A D | auto_fs.h | 47 int type; /* Type of packet */ member 105 *type = AUTOFS_TYPE_INDIRECT; in set_autofs_type_indirect() 110 return (type == AUTOFS_TYPE_INDIRECT); in autofs_type_indirect() 115 *type = AUTOFS_TYPE_DIRECT; in set_autofs_type_direct() 120 return (type == AUTOFS_TYPE_DIRECT); in autofs_type_direct() 125 *type = AUTOFS_TYPE_OFFSET; in set_autofs_type_offset() 130 return (type == AUTOFS_TYPE_OFFSET); in autofs_type_offset() 135 return (type == AUTOFS_TYPE_DIRECT || type == AUTOFS_TYPE_OFFSET); in autofs_type_trigger() 143 static inline void set_autofs_type_any(unsigned int *type) in set_autofs_type_any() argument 145 *type = AUTOFS_TYPE_ANY; in set_autofs_type_any() [all …]
|
| A D | cryptouser.h | 85 char type[CRYPTO_MAX_NAME]; member 95 char type[CRYPTO_MAX_NAME]; member 107 char type[CRYPTO_MAX_NAME]; member 117 char type[CRYPTO_MAX_NAME]; member 127 char type[CRYPTO_MAX_NAME]; member 135 char type[CRYPTO_MAX_NAME]; member 144 char type[CRYPTO_MAX_NAME]; member 153 char type[CRYPTO_MAX_NAME]; member 157 char type[CRYPTO_MAX_NAME]; member 161 char type[CRYPTO_MAX_NAME]; member [all …]
|
| /include/net/libeth/ |
| A D | cache.h | 16 #define libeth_cacheline_group_assert(type, grp, sz) \ argument 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 27 #define __libeth_cacheline_struct_assert(type, sz) \ argument 28 static_assert(sizeof(type) <= (sz)) 47 #define libeth_cacheline_struct_assert(type, ...) \ argument 49 static_assert(__alignof(type) >= SMP_CACHE_BYTES) 63 libeth_cacheline_group_assert(type, cold, c); \ [all …]
|
| /include/sound/ |
| A 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/drm/ttm/ |
| A D | ttm_range_manager.h | 38 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/ |
| A D | container_of.h | 19 #define container_of(ptr, type, member) ({ \ argument 21 static_assert(__same_type(*(ptr), ((type *)0)->member) || \ 24 ((type *)(__mptr - offsetof(type, member))); }) 35 #define container_of_const(ptr, type, member) \ argument 37 const typeof(*(ptr)) *: ((const type *)container_of(ptr, type, member)),\ 38 default: ((type *)container_of(ptr, type, member)) \
|
| A D | objtool.h | 20 ".byte " __stringify(type) "\n\t" \ 56 #define __ASM_ANNOTATE(label, type) \ argument 59 ".long " __stringify(type) "\n\t" \ 62 #define ASM_ANNOTATE(type) \ argument 64 __ASM_ANNOTATE(911b, type) 96 .byte \type 114 .macro ANNOTATE type:req 118 .long \type 131 #define __ASM_ANNOTATE(label, type) "" 132 #define ASM_ANNOTATE(type) [all …]
|
| A D | elfnote.h | 42 #define ELFNOTE_START(name, type, flags) \ argument 47 .long type ; \ 56 #define ELFNOTE(name, type, desc) \ argument 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
|
| A D | profile.h | 34 void profile_tick(int type); 40 void profile_hits(int type, void *ip, unsigned int nr_hits); 45 static inline void profile_hit(int type, void *ip) in profile_hit() argument 50 if (unlikely(prof_on == type)) in profile_hit() 51 profile_hits(type, ip, 1); in profile_hit() 66 static inline void profile_tick(int type) in profile_tick() argument 71 static inline void profile_hits(int type, void *ip, unsigned int nr_hits) in profile_hits() argument 76 static inline void profile_hit(int type, void *ip) in profile_hit() argument
|
| A 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, 28 icmp6_send(skb, type, code, info, NULL, parm); in __icmpv6_send() 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, 61 __icmpv6_send(skb_in, type, code, info, &parm); in icmpv6_ndo_send() 68 u8 type, u8 code, __u32 info) in icmpv6_send() argument 73 u8 type, u8 code, __u32 info) in icmpv6_ndo_send() argument 79 extern int icmpv6_err_convert(u8 type, u8 code, 99 static inline bool icmpv6_is_err(int type) in icmpv6_is_err() argument [all …]
|
| A 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 28 type = DEVCG_DEV_BLOCK; in devcgroup_inode_permission() 30 type = DEVCG_DEV_CHAR; in devcgroup_inode_permission() 37 return devcgroup_check_permission(type, imajor(inode), iminor(inode), in devcgroup_inode_permission() 43 short type; in devcgroup_inode_mknod() local 52 type = DEVCG_DEV_BLOCK; in devcgroup_inode_mknod() 54 type = DEVCG_DEV_CHAR; in devcgroup_inode_mknod() 56 return devcgroup_check_permission(type, MAJOR(dev), MINOR(dev), in devcgroup_inode_mknod() 61 static inline int devcgroup_check_permission(short type, u32 major, u32 minor, in devcgroup_check_permission() argument
|
| A D | quotaops.h | 85 return dquot_disable(sb, type, DQUOT_SUSPENDED); in dquot_suspend() 87 int dquot_resume(struct super_block *sb, int type); 105 int format_id, int type); 124 return sb_dqopt(sb)->info + type; in sb_dqinfo() 134 dquot_state_flag(DQUOT_USAGE_ENABLED, type); in sb_has_quota_usage_enabled() 140 dquot_state_flag(DQUOT_LIMITS_ENABLED, type); in sb_has_quota_limits_enabled() 146 dquot_state_flag(DQUOT_SUSPENDED, type); in sb_has_quota_suspended() 158 return sb_has_quota_usage_enabled(sb, type); in sb_has_quota_loaded() 168 return sb_has_quota_loaded(sb, type) && in sb_has_quota_active() 169 !sb_has_quota_suspended(sb, type); in sb_has_quota_active() [all …]
|
| A 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
|
| A D | bitfield.h | 47 #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 191 #define ____MAKE_OP(type,base,to,from) \ argument 192 static __always_inline __##type __must_check type##_encode_bits(base v, base field) \ 198 static __always_inline __##type __must_check type##_replace_bits(__##type old, \ 201 return (old & ~to(field)) | type##_encode_bits(val, field); \ 203 static __always_inline void type##p_replace_bits(__##type *p, \ 206 *p = (*p & ~to(field)) | type##_encode_bits(val, field); \ [all …]
|
| A D | percpu-defs.h | 87 extern __PCPU_ATTRS(sec) __typeof__(type) name 94 __PCPU_ATTRS(sec) __weak __typeof__(type) name 100 extern __PCPU_ATTRS(sec) __typeof__(type) name 103 __PCPU_ATTRS(sec) __typeof__(type) name 110 #define DECLARE_PER_CPU(type, name) \ argument 111 DECLARE_PER_CPU_SECTION(type, name, "") 113 #define DEFINE_PER_CPU(type, name) \ argument 114 DEFINE_PER_CPU_SECTION(type, name, "") 148 #define DECLARE_PER_CPU_ALIGNED(type, name) \ argument 152 #define DEFINE_PER_CPU_ALIGNED(type, name) \ argument [all …]
|
| /include/linux/sched/ |
| A D | isolation.h | 29 extern int housekeeping_any_cpu(enum hk_type type); 30 extern const struct cpumask *housekeeping_cpumask(enum hk_type type); 31 extern bool housekeeping_enabled(enum hk_type type); 32 extern void housekeeping_affine(struct task_struct *t, enum hk_type type); 33 extern bool housekeeping_test_cpu(int cpu, enum hk_type type); 38 static inline int housekeeping_any_cpu(enum hk_type type) in housekeeping_any_cpu() argument 48 static inline bool housekeeping_enabled(enum hk_type type) in housekeeping_enabled() argument 54 enum hk_type type) { } in housekeeping_affine() argument 56 static inline bool housekeeping_test_cpu(int cpu, enum hk_type type) in housekeeping_test_cpu() argument 64 static inline bool housekeeping_cpu(int cpu, enum hk_type type) in housekeeping_cpu() argument [all …]
|
| /include/uapi/asm-generic/ |
| A 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,argtype) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(argtype))) argument 87 #define _IOW(type,nr,argtype) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(argtype))) argument 88 #define _IOWR(type,nr,argtype) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(argtype))) argument 89 #define _IOR_BAD(type,nr,argtype) _IOC(_IOC_READ,(type),(nr),sizeof(argtype)) argument 90 #define _IOW_BAD(type,nr,argtype) _IOC(_IOC_WRITE,(type),(nr),sizeof(argtype)) argument 91 #define _IOWR_BAD(type,nr,argtype) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(argtype)) argument
|
| /include/net/ |
| A D | net_debug.h | 86 if (netif_msg_##type(priv)) \ 92 if (netif_msg_##type(priv)) \ 97 netif_level(emerg, priv, type, dev, fmt, ##args) 99 netif_level(alert, priv, type, dev, fmt, ##args) 101 netif_level(crit, priv, type, dev, fmt, ##args) 102 #define netif_err(priv, type, dev, fmt, args...) \ argument 103 netif_level(err, priv, type, dev, fmt, ##args) 105 netif_level(warn, priv, type, dev, fmt, ##args) 107 netif_level(notice, priv, type, dev, fmt, ##args) 109 netif_level(info, priv, type, dev, fmt, ##args) [all …]
|
| /include/linux/iio/ |
| A D | events.h | 28 type, chan, chan1, chan2) \ argument 29 (((u64)type << 56) | ((u64)diff << 55) | \ 46 type, direction) \ argument 47 _IIO_EVENT_CODE(chan_type, 0, modifier, direction, type, number, 0, 0) 58 #define IIO_UNMOD_EVENT_CODE(chan_type, number, type, direction) \ argument 59 _IIO_EVENT_CODE(chan_type, 0, 0, direction, type, number, 0, 0) 70 #define IIO_DIFF_EVENT_CODE(chan_type, chan1, chan2, type, direction) \ argument 71 _IIO_EVENT_CODE(chan_type, 1, 0, direction, type, 0, chan1, chan2)
|
| /include/crypto/internal/ |
| A 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() 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() 190 type |= CRYPTO_ALG_TYPE_CIPHER; in crypto_grab_cipher() 192 return crypto_grab_spawn(&spawn->base, inst, name, type, mask); in crypto_grab_cipher() [all …]
|
| /include/rdma/ |
| A D | ib_ucaps.h | 9 #define UCAP_ENABLED(ucaps, type) (!!((ucaps) & (1U << (type)))) argument 20 int ib_create_ucap(enum rdma_user_cap type); 21 void ib_remove_ucap(enum rdma_user_cap type); 23 static inline int ib_create_ucap(enum rdma_user_cap type) in ib_create_ucap() argument 27 static inline void ib_remove_ucap(enum rdma_user_cap type) {} in ib_remove_ucap() argument
|
| /include/uapi/linux/netfilter/ |
| A 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/trace/events/ |
| A D | 9p.h | 119 #define show_9p_op(type) \ argument 120 __print_symbolic(type, P9_MSG_T) 127 TP_ARGS(clnt, type, tag), 131 __field( __u8, type ) 137 __entry->type = type; 160 __entry->type = type; 179 __field( __u8, type ) 187 __entry->type = pdu->id; 202 TP_ARGS(fid, type), 207 __field( __u8, type ) [all …]
|
| /include/trace/stages/ |
| A D | stage1_struct_define.h | 6 #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
|