/Linux-v4.19/drivers/usb/gadget/function/ |
D | f_mass_storage.h | 21 #define _FSG_MODULE_PARAM_ARRAY(prefix, params, name, type, desc) \ argument 22 module_param_array_named(prefix ## name, params.name, type, \ 23 &prefix ## params.name ## _count, \ 25 MODULE_PARM_DESC(prefix ## name, desc) 27 #define _FSG_MODULE_PARAM(prefix, params, name, type, desc) \ argument 28 module_param_named(prefix ## name, params.name, type, \ 30 MODULE_PARM_DESC(prefix ## name, desc) 32 #define __FSG_MODULE_PARAMETERS(prefix, params) \ argument 33 _FSG_MODULE_PARAM_ARRAY(prefix, params, file, charp, \ 35 _FSG_MODULE_PARAM_ARRAY(prefix, params, ro, bool, \ [all …]
|
/Linux-v4.19/drivers/regulator/ |
D | mc13xxx.h | 59 #define MC13xxx_DEFINE(prefix, _name, _reg, _vsel_reg, _voltages, _ops) \ argument 60 [prefix ## _name] = { \ 67 .id = prefix ## _name, \ 70 .reg = prefix ## _reg, \ 71 .enable_bit = prefix ## _reg ## _ ## _name ## EN, \ 72 .vsel_reg = prefix ## _vsel_reg, \ 73 .vsel_shift = prefix ## _vsel_reg ## _ ## _name ## VSEL,\ 74 .vsel_mask = prefix ## _vsel_reg ## _ ## _name ## VSEL_M,\ 77 #define MC13xxx_FIXED_DEFINE(prefix, _name, _reg, _voltages, _ops) \ argument 78 [prefix ## _name] = { \ [all …]
|
/Linux-v4.19/drivers/firmware/broadcom/ |
D | bcm47xx_sprom.c | 35 static void create_key(const char *prefix, const char *postfix, in create_key() argument 38 if (prefix && postfix) in create_key() 39 snprintf(buf, len, "%s%s%s", prefix, name, postfix); in create_key() 40 else if (prefix) in create_key() 41 snprintf(buf, len, "%s%s", prefix, name); in create_key() 48 static int get_nvram_var(const char *prefix, const char *postfix, in get_nvram_var() argument 54 create_key(prefix, postfix, name, key, sizeof(key)); in get_nvram_var() 57 if (fallback && err == -ENOENT && prefix) { in get_nvram_var() 65 static void nvram_read_ ## type(const char *prefix, \ 73 err = get_nvram_var(prefix, postfix, name, buf, sizeof(buf), \ [all …]
|
/Linux-v4.19/arch/riscv/include/asm/ |
D | atomic.h | 60 #define ATOMIC_OP(op, asm_op, I, asm_type, c_type, prefix) \ argument 62 void atomic##prefix##_##op(c_type i, atomic##prefix##_t *v) \ 94 #define ATOMIC_FETCH_OP(op, asm_op, I, asm_type, c_type, prefix) \ in ATOMIC_OPS() argument 96 c_type atomic##prefix##_fetch_##op##_relaxed(c_type i, \ in ATOMIC_OPS() 97 atomic##prefix##_t *v) \ in ATOMIC_OPS() 108 c_type atomic##prefix##_fetch_##op(c_type i, atomic##prefix##_t *v) \ 119 #define ATOMIC_OP_RETURN(op, asm_op, c_op, I, asm_type, c_type, prefix) \ argument 121 c_type atomic##prefix##_##op##_return_relaxed(c_type i, \ 122 atomic##prefix##_t *v) \ 124 return atomic##prefix##_fetch_##op##_relaxed(i, v) c_op I; \ [all …]
|
/Linux-v4.19/net/ipv6/ |
D | addrlabel.c | 33 struct in6_addr prefix; member 67 const struct in6_addr *prefix; member 72 .prefix = &in6addr_any, 75 .prefix = &(struct in6_addr){ { { 0xfc } } } , 79 .prefix = &(struct in6_addr){ { { 0xfe, 0xc0 } } }, 83 .prefix = &(struct in6_addr){ { { 0x20, 0x02 } } }, 87 .prefix = &(struct in6_addr){ { { 0x3f, 0xfe } } }, 91 .prefix = &(struct in6_addr){ { { 0x20, 0x01 } } }, 95 .prefix = &(struct in6_addr){ { { 0x20, 0x01, 0x00, 0x10 } } }, 99 .prefix = &(struct in6_addr){ { { [10] = 0xff, [11] = 0xff } } }, [all …]
|
/Linux-v4.19/sound/soc/generic/ |
D | simple-card-utils.c | 35 void asoc_simple_card_parse_convert(struct device *dev, char *prefix, in asoc_simple_card_parse_convert() argument 41 if (!prefix) in asoc_simple_card_parse_convert() 42 prefix = ""; in asoc_simple_card_parse_convert() 45 snprintf(prop, sizeof(prop), "%s%s", prefix, "convert-rate"); in asoc_simple_card_parse_convert() 49 snprintf(prop, sizeof(prop), "%s%s", prefix, "convert-channels"); in asoc_simple_card_parse_convert() 60 char *prefix, in asoc_simple_card_parse_daifmt() argument 67 daifmt = snd_soc_of_parse_daifmt(node, prefix, in asoc_simple_card_parse_daifmt() 127 char *prefix) in asoc_simple_card_parse_card_name() argument 131 if (!prefix) in asoc_simple_card_parse_card_name() 132 prefix = ""; in asoc_simple_card_parse_card_name() [all …]
|
/Linux-v4.19/tools/testing/selftests/powerpc/pmu/ebb/ |
D | trace.c | 168 static void trace_print_header(int seq, int prefix) in trace_print_header() argument 170 printf("%*s[%d]: ", prefix, "", seq); in trace_print_header() 235 static void trace_print_entry(struct trace_entry *e, int seq, int *prefix) in trace_print_entry() argument 239 trace_print_header(seq, *prefix); in trace_print_entry() 243 trace_print_header(seq, *prefix); in trace_print_entry() 247 trace_print_header(seq, *prefix); in trace_print_entry() 251 trace_print_header(seq, *prefix); in trace_print_entry() 253 *prefix += PREFIX_DELTA; in trace_print_entry() 256 *prefix -= PREFIX_DELTA; in trace_print_entry() 257 if (*prefix < BASE_PREFIX) in trace_print_entry() [all …]
|
/Linux-v4.19/drivers/gpu/drm/amd/include/linux/ |
D | chash.h | 114 #define __CHASH_STATS_INIT(prefix), \ argument 115 prefix.hits = 0, \ 116 prefix.hits_steps = 0, \ 117 prefix.hits_time_ns = 0, \ 118 prefix.miss = 0, \ 119 prefix.miss_steps = 0, \ 120 prefix.miss_time_ns = 0, \ 121 prefix.relocs = 0, \ 122 prefix.reloc_dist = 0 124 #define __CHASH_STATS_INIT(prefix) argument [all …]
|
/Linux-v4.19/drivers/staging/vc04_services/interface/vchiq_arm/ |
D | vchiq_genversion | 10 my $prefix = shift @ARGV; 61 #include "${prefix}_build_info.h" 64 VC_DEBUG_DECLARE_STRING_VAR( ${prefix}_build_hostname, "$hostname" ); 65 VC_DEBUG_DECLARE_STRING_VAR( ${prefix}_build_version, "$version" ); 66 VC_DEBUG_DECLARE_STRING_VAR( ${prefix}_build_time, __TIME__ ); 67 VC_DEBUG_DECLARE_STRING_VAR( ${prefix}_build_date, __DATE__ );
|
/Linux-v4.19/Documentation/devicetree/bindings/sound/ |
D | name-prefix.txt | 1 Name prefix: 5 sink/source names may use the name prefix property to prepend the 8 Optional name prefix property: 9 - sound-name-prefix : string using as prefix for the sink/source names of 17 sound-name-prefix = "FRONT"; 23 sound-name-prefix = "BACK";
|
/Linux-v4.19/include/sound/ |
D | simple_card_utils.h | 13 #define asoc_simple_card_init_hp(card, sjack, prefix) \ argument 14 asoc_simple_card_init_jack(card, sjack, 1, prefix) 15 #define asoc_simple_card_init_mic(card, sjack, prefix) \ argument 16 asoc_simple_card_init_jack(card, sjack, 0, prefix) 43 char *prefix, 50 char *prefix); 110 void asoc_simple_card_parse_convert(struct device *dev, char *prefix, 114 char *prefix, 117 char *prefix); 121 int is_hp, char *prefix);
|
/Linux-v4.19/drivers/gpu/drm/i915/ |
D | i915_syncmap.c | 74 u64 prefix; member 163 if (likely(__sync_leaf_prefix(p, id) == p->prefix)) in i915_syncmap_is_later() 172 if (__sync_branch_prefix(p, id) == p->prefix) in i915_syncmap_is_later() 185 if (__sync_branch_prefix(p, id) != p->prefix) in i915_syncmap_is_later() 210 p->prefix = __sync_leaf_prefix(p, id); in __sync_alloc_leaf() 244 GEM_BUG_ON(__sync_leaf_prefix(p, id) == p->prefix); in __sync_set() 253 if (__sync_branch_prefix(p, id) == p->prefix) in __sync_set() 281 if (__sync_branch_prefix(p, id) != p->prefix) { in __sync_set() 291 above = fls64(__sync_branch_prefix(p, id) ^ p->prefix); in __sync_set() 294 next->prefix = __sync_branch_prefix(next, id); in __sync_set() [all …]
|
/Linux-v4.19/drivers/clk/qcom/ |
D | lcc-mdm9615.c | 204 #define CLK_AIF_OSR_DIV(prefix, _ns, _md, hr) \ argument 205 static struct clk_rcg prefix##_osr_src = { \ 229 .name = #prefix "_osr_src", \ 238 static const char * const lcc_##prefix##_parents[] = { \ 239 #prefix "_osr_src", \ 242 static struct clk_branch prefix##_osr_clk = { \ 250 .name = #prefix "_osr_clk", \ 251 .parent_names = lcc_##prefix##_parents, \ 259 static struct clk_regmap_div prefix##_div_clk = { \ 265 .name = #prefix "_div_clk", \ [all …]
|
D | lcc-msm8960.c | 202 #define CLK_AIF_OSR_DIV(prefix, _ns, _md, hr) \ argument 203 static struct clk_rcg prefix##_osr_src = { \ 227 .name = #prefix "_osr_src", \ 236 static const char * const lcc_##prefix##_parents[] = { \ 237 #prefix "_osr_src", \ 240 static struct clk_branch prefix##_osr_clk = { \ 248 .name = #prefix "_osr_clk", \ 249 .parent_names = lcc_##prefix##_parents, \ 257 static struct clk_regmap_div prefix##_div_clk = { \ 263 .name = #prefix "_div_clk", \ [all …]
|
/Linux-v4.19/fs/xfs/ |
D | xfs_xattr.c | 90 .prefix = XATTR_USER_PREFIX, 97 .prefix = XATTR_TRUSTED_PREFIX, 104 .prefix = XATTR_SECURITY_PREFIX, 124 char *prefix, in __xfs_xattr_put_listent() argument 142 strncpy(offset, prefix, prefix_len); in __xfs_xattr_put_listent() 161 char *prefix; in xfs_xattr_put_listent() local 194 prefix = XATTR_TRUSTED_PREFIX; in xfs_xattr_put_listent() 197 prefix = XATTR_SECURITY_PREFIX; in xfs_xattr_put_listent() 200 prefix = XATTR_USER_PREFIX; in xfs_xattr_put_listent() 204 __xfs_xattr_put_listent(context, prefix, prefix_len, name, in xfs_xattr_put_listent()
|
/Linux-v4.19/fs/squashfs/ |
D | xattr.c | 71 const char *prefix = handler->prefix ?: handler->name; in squashfs_listxattr() local 72 size_t prefix_size = strlen(prefix); in squashfs_listxattr() 79 memcpy(buffer, prefix, prefix_size); in squashfs_listxattr() 138 int type, prefix, name_size; in squashfs_xattr_get() local 147 prefix = type & SQUASHFS_XATTR_PREFIX_MASK; in squashfs_xattr_get() 149 if (prefix == name_index && name_size == name_len) in squashfs_xattr_get() 158 if (prefix == name_index && name_size == name_len && in squashfs_xattr_get() 230 .prefix = XATTR_USER_PREFIX, 244 .prefix = XATTR_TRUSTED_PREFIX, 254 .prefix = XATTR_SECURITY_PREFIX,
|
/Linux-v4.19/include/linux/netfilter/ipset/ |
D | pfxlen.h | 46 ip6_netmask(union nf_inet_addr *ip, u8 prefix) in ip6_netmask() argument 48 ip->ip6[0] &= ip_set_netmask6(prefix)[0]; in ip6_netmask() 49 ip->ip6[1] &= ip_set_netmask6(prefix)[1]; in ip6_netmask() 50 ip->ip6[2] &= ip_set_netmask6(prefix)[2]; in ip6_netmask() 51 ip->ip6[3] &= ip_set_netmask6(prefix)[3]; in ip6_netmask()
|
/Linux-v4.19/drivers/s390/net/ |
D | smsgiucv.c | 22 const char *prefix; member 82 if (strncmp(buffer + 8, cb->prefix, cb->len) == 0) { in smsg_message_pending() 91 int smsg_register_callback(const char *prefix, in smsg_register_callback() argument 99 cb->prefix = prefix; in smsg_register_callback() 100 cb->len = strlen(prefix); in smsg_register_callback() 108 void smsg_unregister_callback(const char *prefix, in smsg_unregister_callback() argument 118 strcmp(tmp->prefix, prefix) == 0) { in smsg_unregister_callback()
|
/Linux-v4.19/net/netfilter/ |
D | nft_log.c | 29 char *prefix; member 121 priv->prefix); in nft_log_eval() 155 priv->prefix = kmalloc(nla_len(nla) + 1, GFP_KERNEL); in nft_log_init() 156 if (priv->prefix == NULL) in nft_log_init() 158 nla_strlcpy(priv->prefix, nla, nla_len(nla) + 1); in nft_log_init() 160 priv->prefix = (char *)nft_log_null_prefix; in nft_log_init() 209 if (priv->prefix != nft_log_null_prefix) in nft_log_init() 210 kfree(priv->prefix); in nft_log_init() 220 if (priv->prefix != nft_log_null_prefix) in nft_log_destroy() 221 kfree(priv->prefix); in nft_log_destroy() [all …]
|
/Linux-v4.19/drivers/acpi/acpica/ |
D | acapps.h | 42 #define ACPI_COMMON_HEADER(utility_name, prefix) \ argument 44 prefix, ACPICA_NAME, \ 45 prefix, utility_name, ((u32) ACPI_CA_VERSION), ACPI_WIDTH, \ 46 prefix, ACPICA_COPYRIGHT, \ 47 prefix 148 char *ad_generate_filename(char *prefix, char *table_id);
|
/Linux-v4.19/drivers/misc/genwqe/ |
D | genwqe_driver.h | 68 char prefix[32]; in genwqe_hexdump() local 70 scnprintf(prefix, sizeof(prefix), "%s %s: ", in genwqe_hexdump() 73 print_hex_dump_debug(prefix, DUMP_PREFIX_OFFSET, 16, 1, buff, in genwqe_hexdump()
|
/Linux-v4.19/tools/gpio/ |
D | gpio-utils.h | 21 static inline int check_prefix(const char *str, const char *prefix) in check_prefix() argument 23 return strlen(str) > strlen(prefix) && in check_prefix() 24 strncmp(str, prefix, strlen(prefix)) == 0; in check_prefix()
|
/Linux-v4.19/include/xen/interface/io/ |
D | netif.h | 292 uint64_t prefix = 0; in xen_netif_toeplitz_hash() local 297 prefix <<= 8; in xen_netif_toeplitz_hash() 298 prefix |= (keyi < keylen) ? key[keyi] : 0; in xen_netif_toeplitz_hash() 307 hash ^= prefix; in xen_netif_toeplitz_hash() 308 prefix <<= 1; in xen_netif_toeplitz_hash() 316 prefix |= (keyi < keylen) ? key[keyi] : 0; in xen_netif_toeplitz_hash()
|
/Linux-v4.19/tools/perf/util/ |
D | jitdump.c | 135 struct jr_prefix *prefix; in jit_open() local 144 bsz = hmax(sizeof(header), sizeof(*prefix)); in jit_open() 241 struct jr_prefix *prefix; in jit_get_next_entry() local 252 if (sz < sizeof(*prefix)) in jit_get_next_entry() 253 sz = sizeof(*prefix); in jit_get_next_entry() 262 prefix = jd->buf; in jit_get_next_entry() 267 ret = fread(prefix, sizeof(*prefix), 1, jd->in); in jit_get_next_entry() 272 prefix->id = bswap_32(prefix->id); in jit_get_next_entry() 273 prefix->total_size = bswap_32(prefix->total_size); in jit_get_next_entry() 274 prefix->timestamp = bswap_64(prefix->timestamp); in jit_get_next_entry() [all …]
|
/Linux-v4.19/include/linux/ |
D | compiler.h | 166 # define __UNIQUE_ID(prefix) __PASTE(__PASTE(__UNIQUE_ID_, prefix), __LINE__) argument 333 # define __compiletime_assert(condition, msg, prefix, suffix) \ argument 336 extern void prefix ## suffix(void) __compiletime_error(msg); \ 338 prefix ## suffix(); \ 342 # define __compiletime_assert(condition, msg, prefix, suffix) do { } while (0) argument 345 #define _compiletime_assert(condition, msg, prefix, suffix) \ argument 346 __compiletime_assert(condition, msg, prefix, suffix)
|