Searched refs:name (Results 176 - 200 of 20991) sorted by relevance

1234567891011>>

/linux-master/tools/perf/arch/sparc/annotate/
H A Dinstructions.c120 static struct ins_ops *sparc__associate_instruction_ops(struct arch *arch, const char *name) argument
124 if (!strcmp(name, "call") ||
125 !strcmp(name, "jmp") ||
126 !strcmp(name, "jmpl")) {
128 } else if (!strcmp(name, "ret") ||
129 !strcmp(name, "retl") ||
130 !strcmp(name, "return")) {
132 } else if (!strcmp(name, "mov")) {
135 if (name[0] == 'c' &&
136 (name[
[all...]
/linux-master/drivers/clk/imx/
H A Dclk-scu.h32 struct clk_hw *imx_clk_scu_alloc_dev(const char *name,
36 struct clk_hw *__imx_clk_scu(struct device *dev, const char *name,
42 struct clk_hw *__imx_clk_lpcg_scu(struct device *dev, const char *name,
47 struct clk_hw *__imx_clk_gpr_scu(const char *name, const char * const *parent_name,
51 static inline struct clk_hw *imx_clk_scu(const char *name, u32 rsrc_id, argument
54 return imx_clk_scu_alloc_dev(name, NULL, 0, rsrc_id, clk_type);
57 static inline struct clk_hw *imx_clk_scu2(const char *name, const char * const *parents, argument
60 return imx_clk_scu_alloc_dev(name, parents, num_parents, rsrc_id, clk_type);
63 static inline struct clk_hw *imx_clk_lpcg_scu_dev(struct device *dev, const char *name, argument
67 return __imx_clk_lpcg_scu(dev, name, parent_nam
71 imx_clk_lpcg_scu(const char *name, const char *parent_name, unsigned long flags, void __iomem *reg, u8 bit_idx, bool hw_gate) argument
79 imx_clk_gate_gpr_scu(const char *name, const char *parent_name, u32 rsrc_id, u8 gpr_id, bool invert) argument
86 imx_clk_divider_gpr_scu(const char *name, const char *parent_name, u32 rsrc_id, u8 gpr_id) argument
93 imx_clk_mux_gpr_scu(const char *name, const char * const *parent_names, int num_parents, u32 rsrc_id, u8 gpr_id) argument
[all...]
/linux-master/drivers/md/
H A Ddm-cache-policy.c21 static struct dm_cache_policy_type *__find_policy(const char *name) argument
26 if (!strcmp(t->name, name))
32 static struct dm_cache_policy_type *__get_policy_once(const char *name) argument
34 struct dm_cache_policy_type *t = __find_policy(name);
37 DMWARN("couldn't get module %s", name);
44 static struct dm_cache_policy_type *get_policy_once(const char *name) argument
49 t = __get_policy_once(name);
55 static struct dm_cache_policy_type *get_policy(const char *name) argument
59 t = get_policy_once(name);
112 dm_cache_policy_create(const char *name, dm_cblock_t cache_size, sector_t origin_size, sector_t cache_block_size) argument
[all...]
/linux-master/arch/mips/bcm63xx/boards/
H A Dboard_bcm963xx.c41 .name = "CVG834G_E15R3921",
58 .name = "CVG834G:green:power",
71 .name = "96328avng",
85 .name = "96328avng::ppp-fail",
90 .name = "96328avng::power",
96 .name = "96328avng::power-fail",
101 .name = "96328avng::wps",
106 .name = "96328avng::ppp",
119 .name = "96338GW",
133 .name
790 char name[17]; local
[all...]
/linux-master/tools/testing/selftests/lsm/
H A Dlsm_list_modules_test.c78 char *name; local
93 name = "capability";
96 name = "selinux";
99 name = "smack";
102 name = "tomoyo";
105 name = "apparmor";
108 name = "yama";
111 name = "loadpin";
114 name = "safesetid";
117 name
[all...]
/linux-master/include/xen/arm/
H A Dinterface.h15 #define __DEFINE_GUEST_HANDLE(name, type) \
17 __guest_handle_ ## name
19 #define DEFINE_GUEST_HANDLE_STRUCT(name) \
20 __DEFINE_GUEST_HANDLE(name, struct name)
21 #define DEFINE_GUEST_HANDLE(name) __DEFINE_GUEST_HANDLE(name, name)
22 #define GUEST_HANDLE(name) __guest_handle_ ## name
[all...]
/linux-master/arch/mips/include/asm/
H A Dmips-gic.h30 #define GIC_ACCESSOR_RO(sz, off, name) \
31 CPS_ACCESSOR_RO(gic, sz, MIPS_GIC_SHARED_OFS + off, name)
34 #define GIC_ACCESSOR_RW(sz, off, name) \
35 CPS_ACCESSOR_RW(gic, sz, MIPS_GIC_SHARED_OFS + off, name)
38 #define GIC_VX_ACCESSOR_RO(sz, off, name) \
39 CPS_ACCESSOR_RO(gic, sz, MIPS_GIC_LOCAL_OFS + off, vl_##name) \
40 CPS_ACCESSOR_RO(gic, sz, MIPS_GIC_REDIR_OFS + off, vo_##name)
43 #define GIC_VX_ACCESSOR_RW(sz, off, name) \
44 CPS_ACCESSOR_RW(gic, sz, MIPS_GIC_LOCAL_OFS + off, vl_##name) \
45 CPS_ACCESSOR_RW(gic, sz, MIPS_GIC_REDIR_OFS + off, vo_##name)
[all...]
/linux-master/tools/perf/arch/arm64/util/
H A Ddwarf-regs.c16 const char *name; member in struct:pt_regs_dwarfnum
20 #define REG_DWARFNUM_NAME(r, num) {.name = r, .dwarfnum = num}
22 {.name = __stringify(%x##num), .dwarfnum = num}
23 #define REG_DWARFNUM_END {.name = NULL, .dwarfnum = 0}
68 * get_arch_regstr() - lookup register name from it's DWARF register number
71 * get_arch_regstr() returns the name of the register in struct
78 for (roff = regdwarfnum_table; roff->name != NULL; roff++)
80 return roff->name;
84 int regs_query_register_offset(const char *name) argument
88 for (roff = regdwarfnum_table; roff->name !
[all...]
/linux-master/net/netfilter/ipvs/
H A Dip_vs_pe.c20 /* Get pe in the pe list by name */
36 if (strcmp(pe_name, pe->name)==0) {
49 struct ip_vs_pe *ip_vs_pe_getbyname(const char *name) argument
53 /* Search for the pe by name */
54 pe = __ip_vs_pe_getbyname(name);
58 request_module("ip_vs_pe_%s", name);
59 pe = __ip_vs_pe_getbyname(name);
75 /* Make sure that the pe with this name doesn't exist
79 if (strcmp(tmp->name, pe->name)
[all...]
/linux-master/arch/sh/mm/
H A Dconsistent.c20 static void __init memchunk_cmdline_override(char *name, unsigned long *sizep) argument
23 int k = strlen(name);
27 if (!strncmp(name, p, k) && p[k] == '=') {
31 name, *sizep);
38 char *name, unsigned long memsize)
46 pr_warn("%s: unable to find empty space for resource\n", name);
50 memchunk_cmdline_override(name, &memsize);
56 pr_warn("%s: unable to allocate memory\n", name);
63 r->name = name;
37 platform_resource_setup_memory(struct platform_device *pdev, char *name, unsigned long memsize) argument
[all...]
/linux-master/tools/bpf/bpftool/
H A Dnetlink_dumper.h13 #define NET_START_OBJECT_NESTED(name) \
16 jsonw_name(json_wtr, name); \
19 fprintf(stdout, "%s {", name); \
53 #define NET_START_ARRAY(name, fmt_str) \
56 jsonw_name(json_wtr, name); \
59 fprintf(stdout, fmt_str, name); \
71 #define NET_DUMP_UINT(name, fmt_str, val) \
74 jsonw_uint_field(json_wtr, name, val); \
87 #define NET_DUMP_STR(name, fmt_str, str) \
90 jsonw_string_field(json_wtr, name, st
[all...]
/linux-master/tools/testing/selftests/prctl/
H A Dset-process-name.c17 int set_name(char *name) argument
21 res = prctl(PR_SET_NAME, name, NULL, NULL, NULL);
30 char name[TASK_COMM_LEN]; local
33 res = prctl(PR_GET_NAME, name, NULL, NULL, NULL);
38 return !strcmp(name, check_name);
43 char *name = NULL; local
46 res = prctl(PR_GET_NAME, name, NULL, NULL, NULL);
59 char name[TASK_COMM_LEN] = {}; local
72 int res = prctl(PR_GET_NAME, name, NULL, NULL, NULL);
77 return !strcmp(output, name);
[all...]
/linux-master/fs/btrfs/
H A Ddir-item.h17 const struct fscrypt_str *name);
19 const struct fscrypt_str *name, struct btrfs_inode *dir,
24 const struct fscrypt_str *name, int mod);
29 u64 index, const struct fscrypt_str *name, int mod);
32 const struct fscrypt_str *name);
40 const char *name, u16 name_len,
45 const char *name, u16 name_len,
49 const char *name,
52 static inline u64 btrfs_name_hash(const char *name, int len) argument
54 return crc32c((u32)~1, name, le
[all...]
/linux-master/include/trace/events/
H A Dasoc.h27 __string( card_name, dapm->card->name)
28 __string( comp_name, dapm->component ? dapm->component->name : "(none)")
33 __assign_str(card_name, dapm->card->name);
34 __assign_str(comp_name, dapm->component ? dapm->component->name : "(none)");
65 __string( name, card->name )
70 __assign_str(name, card->name);
74 TP_printk("card=%s event=%d", __get_str(name), (int)__entry->event)
100 __string( name,
[all...]
/linux-master/tools/testing/selftests/bpf/progs/
H A Dbpf_misc.h19 * For test filtering purposes the name of the program loaded in
20 * unprivileged mode is derived from the usual program name by adding
42 * __description Text to be used instead of a program name for display
80 #define __imm(name) [name]"i"(name)
81 #define __imm_const(name, expr) [name]"i"(expr)
82 #define __imm_addr(name) [name]"
[all...]
/linux-master/arch/arm/mach-omap2/
H A Dclockdomains7xx_data.c313 .name = "l4per3_clkdm",
314 .pwrdm = { .name = "l4per_pwrdm" },
323 .name = "l4per2_clkdm",
324 .pwrdm = { .name = "l4per_pwrdm" },
335 .name = "mpu0_clkdm",
336 .pwrdm = { .name = "cpu0_pwrdm" },
344 .name = "iva_clkdm",
345 .pwrdm = { .name = "iva_pwrdm" },
356 .name = "coreaon_clkdm",
357 .pwrdm = { .name
[all...]
H A Dclockdomains54xx_data.c165 .name = "l4sec_clkdm",
166 .pwrdm = { .name = "core_pwrdm" },
177 .name = "iva_clkdm",
178 .pwrdm = { .name = "iva_pwrdm" },
189 .name = "mipiext_clkdm",
190 .pwrdm = { .name = "core_pwrdm" },
200 .name = "l3main2_clkdm",
201 .pwrdm = { .name = "core_pwrdm" },
210 .name = "l3main1_clkdm",
211 .pwrdm = { .name
[all...]
/linux-master/include/linux/
H A Dgenl_magic_struct.h70 #define __flg_field(attr_nr, attr_flag, name) \
71 __field(attr_nr, attr_flag, name, NLA_U8, char, \
73 #define __u8_field(attr_nr, attr_flag, name) \
74 __field(attr_nr, attr_flag, name, NLA_U8, unsigned char, \
76 #define __u16_field(attr_nr, attr_flag, name) \
77 __field(attr_nr, attr_flag, name, NLA_U16, __u16, \
79 #define __u32_field(attr_nr, attr_flag, name) \
80 __field(attr_nr, attr_flag, name, NLA_U32, __u32, \
82 #define __s32_field(attr_nr, attr_flag, name) \
83 __field(attr_nr, attr_flag, name, NLA_U3
[all...]
H A Dproc_fs.h91 struct proc_dir_entry *proc_create_mount_point(const char *name);
93 struct proc_dir_entry *proc_create_seq_private(const char *name, umode_t mode,
96 #define proc_create_seq_data(name, mode, parent, ops, data) \
97 proc_create_seq_private(name, mode, parent, ops, 0, data)
98 #define proc_create_seq(name, mode, parent, ops) \
99 proc_create_seq_private(name, mode, parent, ops, 0, NULL)
100 struct proc_dir_entry *proc_create_single_data(const char *name, umode_t mode,
103 #define proc_create_single(name, mode, parent, show) \
104 proc_create_single_data(name, mode, parent, show, NULL)
111 struct proc_dir_entry *proc_create(const char *name, umode_
175 proc_symlink(const char *name, struct proc_dir_entry *parent,const char *dest) argument
177 proc_mkdir(const char *name, struct proc_dir_entry *parent) argument
179 proc_create_mount_point(const char *name) argument
180 _proc_mkdir(const char *name, umode_t mode, struct proc_dir_entry *parent, void *data, bool force_lookup) argument
185 proc_mkdir_data(const char *name, umode_t mode, struct proc_dir_entry *parent, void *data) argument
187 proc_mkdir_mode(const char *name, umode_t mode, struct proc_dir_entry *parent) argument
196 proc_create(const char *name, umode_t mode, struct proc_dir_entry *parent, const struct proc_ops *proc_ops) argument
201 proc_create_data(const char *name, umode_t mode, struct proc_dir_entry *parent, const struct proc_ops *proc_ops, void *data) argument
212 remove_proc_subtree(const char *name, struct proc_dir_entry *parent) argument
229 proc_net_mkdir( struct net *net, const char *name, struct proc_dir_entry *parent) argument
[all...]
/linux-master/fs/hpfs/
H A Dname.c3 * linux/fs/hpfs/name.c
42 int hpfs_chk_name(const unsigned char *name, unsigned *len) argument
46 hpfs_adjust_length(name, len);
48 for (i = 0; i < *len; i++) if (not_allowed_char(name[i])) return -EINVAL;
49 if (*len == 1) if (name[0] == '.') return -EINVAL;
50 if (*len == 2) if (name[0] == '.' && name[1] == '.') return -EINVAL;
60 pr_err("Long name flag mismatch - name ");
68 pr_err("can't allocate memory for name conversio
93 hpfs_is_name_long(const unsigned char *name, unsigned len) argument
107 hpfs_adjust_length(const unsigned char *name, unsigned *len) argument
[all...]
/linux-master/drivers/interconnect/qcom/
H A Dsm6350.c19 .name = "qhm_a1noc_cfg",
28 .name = "qhm_qup_0",
37 .name = "xm_emmc",
46 .name = "xm_ufs_mem",
55 .name = "qhm_a2noc_cfg",
64 .name = "qhm_qdss_bam",
73 .name = "qhm_qup_1",
82 .name = "qxm_crypto",
91 .name = "qxm_ipa",
100 .name
[all...]
H A Dsm7150.c20 .name = "qhm-a1noc-cfg",
29 .name = "qhm_qup_center",
38 .name = "qhm_tsif",
47 .name = "xm_emmc",
56 .name = "xm_sdc2",
65 .name = "xm_sdc4",
74 .name = "xm_ufs_mem",
83 .name = "qhm_a2noc_cfg",
92 .name = "qhm_qdss_bam",
101 .name
[all...]
H A Dqdu1000.c21 .name = "qup0_core_master",
30 .name = "qup1_core_master",
39 .name = "alm_sys_tcu",
48 .name = "chm_apps",
59 .name = "qnm_ecpri_dma",
68 .name = "qnm_fec_2_gemnoc",
77 .name = "qnm_pcie",
88 .name = "qnm_snoc_gc",
97 .name = "qnm_snoc_sf",
108 .name
[all...]
/linux-master/tools/testing/selftests/arm64/abi/
H A Dhwcap.c439 const char *name; member in struct:hwcap_data
449 .name = "AES",
456 .name = "CRC32",
463 .name = "CSSC",
470 .name = "F8CVT",
477 .name = "F8DP4",
484 .name = "F8DP2",
491 .name = "F8E5M2",
497 .name = "F8E4M3",
503 .name
855 cpuinfo_present(const char *name) argument
[all...]
/linux-master/drivers/media/pci/saa7164/
H A Dsaa7164-cards.c27 .name = "Unknown",
32 .name = "Generic Rev2",
38 .name = "Generic Rev3",
42 .name = "Hauppauge WinTV-HVR2200",
53 .name = "4K EEPROM",
60 .name = "TDA18271-1",
67 .name = "TDA18271-2",
74 .name = "TDA10048-1",
81 .name = "TDA10048-2",
88 .name
[all...]

Completed in 262 milliseconds

1234567891011>>