Searched refs:names (Results 1 - 200 of 1613) sorted by relevance

123456789

/linux-4.1.27/tools/perf/util/
H A Dhelp.c16 ALLOC_GROW(cmds->names, cmds->cnt + 1, cmds->alloc); add_cmdname()
17 cmds->names[cmds->cnt++] = ent; add_cmdname()
25 zfree(&cmds->names[i]); clean_cmdnames()
26 zfree(&cmds->names); clean_cmdnames()
46 if (strcmp(cmds->names[i]->name, cmds->names[i-1]->name)) uniq()
47 cmds->names[j++] = cmds->names[i]; uniq()
59 cmp = strcmp(cmds->names[ci]->name, excludes->names[ei]->name); exclude_cmds()
61 cmds->names[cj++] = cmds->names[ci++]; exclude_cmds()
69 cmds->names[cj++] = cmds->names[ci++]; exclude_cmds()
100 printf("%-*s", size, cmds->names[n]->name); pretty_print_string_list()
166 qsort(main_cmds->names, main_cmds->cnt, load_command_list()
167 sizeof(*main_cmds->names), cmdname_compare); load_command_list()
186 qsort(other_cmds->names, other_cmds->cnt, load_command_list()
187 sizeof(*other_cmds->names), cmdname_compare); load_command_list()
199 if (longest < main_cmds->names[i]->len) list_commands()
200 longest = main_cmds->names[i]->len; list_commands()
202 if (longest < other_cmds->names[i]->len) list_commands()
203 longest = other_cmds->names[i]->len; list_commands()
230 if (!strcmp(s, c->names[i]->name)) is_in_cmdlist()
262 ALLOC_GROW(cmds->names, cmds->cnt + old->cnt, cmds->alloc); add_cmd_list()
265 cmds->names[cmds->cnt++] = old->names[i]; add_cmd_list()
266 zfree(&old->names); add_cmd_list()
285 qsort(main_cmds.names, main_cmds.cnt, help_unknown_cmd()
286 sizeof(main_cmds.names), cmdname_compare); help_unknown_cmd()
292 main_cmds.names[i]->len = help_unknown_cmd()
293 levenshtein(cmd, main_cmds.names[i]->name, 0, 2, 1, 4); help_unknown_cmd()
295 qsort(main_cmds.names, main_cmds.cnt, help_unknown_cmd()
296 sizeof(*main_cmds.names), levenshtein_compare); help_unknown_cmd()
298 best_similarity = main_cmds.names[0]->len; help_unknown_cmd()
300 while (n < main_cmds.cnt && best_similarity == main_cmds.names[n]->len) help_unknown_cmd()
305 const char *assumed = main_cmds.names[0]->name; help_unknown_cmd()
307 main_cmds.names[0] = NULL; help_unknown_cmd()
328 fprintf(stderr, "\t%s\n", main_cmds.names[i]->name); help_unknown_cmd()
H A Dhelp.h10 } **names; member in struct:cmdnames
/linux-4.1.27/tools/perf/tests/
H A Devsel-roundtrip-name.c64 static int __perf_evsel__name_array_test(const char *names[], int nr_names) __perf_evsel__name_array_test() argument
74 err = parse_events(evlist, names[i]); __perf_evsel__name_array_test()
77 names[i], err); __perf_evsel__name_array_test()
84 if (strcmp(perf_evsel__name(evsel), names[evsel->idx])) { evlist__for_each()
86 pr_debug("%s != %s\n", perf_evsel__name(evsel), names[evsel->idx]); evlist__for_each()
95 #define perf_evsel__name_array_test(names) \
96 __perf_evsel__name_array_test(names, ARRAY_SIZE(names))
/linux-4.1.27/include/xen/
H A Dhvm.h11 static const char *const names[] = { param_name() local
30 if (op >= ARRAY_SIZE(names)) param_name()
33 if (!names[op]) param_name()
36 return names[op]; param_name()
/linux-4.1.27/Documentation/networking/timestamping/
H A Dhwtstamp_config.c19 lookup_value(const char **names, int size, const char *name) lookup_value() argument
24 if (names[value] && strcasecmp(names[value], name) == 0) lookup_value()
31 lookup_name(const char **names, int size, int value) lookup_name() argument
33 return (value >= 0 && value < size) ? names[value] : NULL; lookup_name()
36 static void list_names(FILE *f, const char **names, int size) list_names() argument
41 if (names[value]) list_names()
42 fprintf(f, " %s\n", names[value]); list_names()
/linux-4.1.27/drivers/zorro/
H A DMakefile7 obj-$(CONFIG_ZORRO_NAMES) += names.o
15 $(obj)/names.o: $(obj)/devlist.h
/linux-4.1.27/drivers/crypto/qat/qat_dh895xcc/
H A Dadf_isr.c31 * Neither the name of Intel Corporation nor the names of its
119 name = *(pci_dev_info->msix_entries.names + i); adf_request_irqs()
136 name = *(pci_dev_info->msix_entries.names + i); adf_request_irqs()
168 char **names; adf_isr_alloc_msix_entry_table() local
178 names = kcalloc(msix_num_entries, sizeof(char *), GFP_KERNEL); adf_isr_alloc_msix_entry_table()
179 if (!names) { adf_isr_alloc_msix_entry_table()
184 *(names + i) = kzalloc(ADF_MAX_MSIX_VECTOR_NAME, GFP_KERNEL); adf_isr_alloc_msix_entry_table()
185 if (!(*(names + i))) adf_isr_alloc_msix_entry_table()
189 accel_dev->accel_pci_dev.msix_entries.names = names; adf_isr_alloc_msix_entry_table()
193 kfree(*(names + i)); adf_isr_alloc_msix_entry_table()
195 kfree(names); adf_isr_alloc_msix_entry_table()
203 char **names = accel_dev->accel_pci_dev.msix_entries.names; adf_isr_free_msix_entry_table() local
208 kfree(*(names + i)); adf_isr_free_msix_entry_table()
209 kfree(names); adf_isr_free_msix_entry_table()
/linux-4.1.27/drivers/usb/gadget/
H A Dconfigfs.h11 char **names,
/linux-4.1.27/tools/perf/arch/s390/util/
H A Ddwarf-regs.c2 * Mapping of DWARF debug register numbers into register names.
/linux-4.1.27/include/uapi/linux/
H A Dmagic.h35 #define MINIX_SUPER_MAGIC 0x137F /* minix v1 fs, 14 char names */
36 #define MINIX_SUPER_MAGIC2 0x138F /* minix v1 fs, 30 char names */
37 #define MINIX2_SUPER_MAGIC 0x2468 /* minix v2 fs, 14 char names */
38 #define MINIX2_SUPER_MAGIC2 0x2478 /* minix v2 fs, 30 char names */
39 #define MINIX3_SUPER_MAGIC 0x4d5a /* minix v3 fs, 60 char names */
H A Dsysctl.h46 /* Define sysctl names first */
48 /* Top-level names: */
69 /* CTL_BUS names: */
83 /* CTL_KERN names: */
135 KERN_CORE_PATTERN=56, /* string: pattern for core-file names */
161 /* CTL_VM names: */
202 /* CTL_NET names: */
802 /* CTL_FS names: */
841 /* CTL_DEBUG names: */
843 /* CTL_DEV names: */
H A Dtipc.h16 * 3. Neither the names of the copyright holders nor the names of its
95 * Publication scopes when binding port names and port name sequences
212 * Maximum sizes of TIPC bearer-related names (including terminating NULL)
H A Dtipc_netlink.h13 * 3. Neither the names of the copyright holders nor the names of its
/linux-4.1.27/drivers/media/usb/pvrusb2/
H A Dpvrusb2-ctrl.c206 const char * const *names; pvr2_ctrl_get_valname() local
207 names = cptr->info->def.type_enum.value_names; pvr2_ctrl_get_valname()
209 if (names[val]) { pvr2_ctrl_get_valname()
212 names[val]); pvr2_ctrl_get_valname()
219 const char **names; pvr2_ctrl_get_valname() local
222 names = cptr->info->def.type_bitmask.bit_names; pvr2_ctrl_get_valname()
227 names[idx]); pvr2_ctrl_get_valname()
306 const char **names, gen_bitmask_string()
321 idStr = names[idx]; gen_bitmask_string()
370 const char * const *names, unsigned int namecnt) parse_token()
378 if (!names) namecnt = 0; parse_token()
380 if (!names[idx]) continue; parse_token()
381 slen = strlen(names[idx]); parse_token()
383 if (memcmp(names[idx],ptr,slen)) continue; parse_token()
404 const char **names,int valid_bits) parse_mtoken()
415 if (!names[idx]) continue; parse_mtoken()
416 slen = strlen(names[idx]); parse_mtoken()
418 if (memcmp(names[idx],ptr,slen)) continue; parse_mtoken()
433 const char **names,int valid_bits) parse_tlist()
460 if (parse_mtoken(ptr,cnt,&kv,names,valid_bits)) { parse_tlist()
562 const char * const *names; pvr2_ctrl_value_to_sym_internal() local
563 names = cptr->info->def.type_enum.value_names; pvr2_ctrl_value_to_sym_internal()
566 if (names[val]) { pvr2_ctrl_value_to_sym_internal()
569 names[val]); pvr2_ctrl_value_to_sym_internal()
305 gen_bitmask_string(int msk,int val,int msk_only, const char **names, char *ptr,unsigned int len) gen_bitmask_string() argument
368 parse_token(const char *ptr,unsigned int len, int *valptr, const char * const *names, unsigned int namecnt) parse_token() argument
402 parse_mtoken(const char *ptr,unsigned int len, int *valptr, const char **names,int valid_bits) parse_mtoken() argument
431 parse_tlist(const char *ptr,unsigned int len, int *maskptr,int *valptr, const char **names,int valid_bits) parse_tlist() argument
/linux-4.1.27/drivers/usb/common/
H A Dcommon.c23 static const char *const names[] = { usb_otg_state_string() local
39 if (state < 0 || state >= ARRAY_SIZE(names)) usb_otg_state_string()
42 return names[state]; usb_otg_state_string()
65 static const char *const names[] = { usb_state_string() local
77 if (state < 0 || state >= ARRAY_SIZE(names)) usb_state_string()
80 return names[state]; usb_state_string()
/linux-4.1.27/include/acpi/
H A Dacnames.h3 * Name: acnames.h - Global names and strings
22 * 3. Neither the names of the above-listed copyright holders nor the names
47 /* Method names - these methods can appear anywhere in the namespace */
75 /* Method names - these methods must appear at the namespace root */
81 /* Definitions of the predefined namespace names */
H A Dacpi.h22 * 3. Neither the names of the above-listed copyright holders nor the names
50 * Information includes the ACPICA data types, names, exceptions, and
57 #include <acpi/acnames.h> /* Common ACPI names and strings */
H A Dacbuffer.h3 * Name: acbuffer.h - Support for buffers returned by ACPI predefined names
22 * 3. Neither the names of the above-listed copyright holders nor the names
48 * Contains buffer structures for these predefined names:
/linux-4.1.27/include/linux/platform_data/
H A Dpca953x.h27 const char *const *names; member in struct:pca953x_platform_data
/linux-4.1.27/security/selinux/include/
H A Dconditional.h16 int security_get_bools(int *len, char ***names, int **values);
/linux-4.1.27/security/selinux/ss/
H A Dsymtab.h16 u32 nprim; /* number of primary names in table */
H A Dconstraint.h27 #define CEXPR_NAMES 5 /* attr op names */
50 struct ebitmap names; /* names */ member in struct:constraint_expr
/linux-4.1.27/drivers/clk/
H A Dclk-qoriq.c86 count = of_property_count_strings(np, "clock-names"); core_mux_init()
116 "clock-output-names"); core_mux_init()
123 rc = of_property_read_string_index(np, "clock-output-names", core_mux_init()
126 pr_err("%s: read clock names error\n", np->name); core_mux_init()
189 count = of_property_count_strings(np, "clock-output-names"); core_pll_init()
204 rc = of_property_read_string_index(np, "clock-output-names", core_pll_init()
207 pr_err("%s: could not get clock names\n", np->name); core_pll_init()
268 of_property_read_string(np, "clock-output-names", &clk_name); sysclk_init()
308 i = of_property_count_strings(np, "clock-output-names"); pltfrm_pll_init()
310 pr_err("%s(): %s: of_property_count_strings(clock-output-names) = %d\n", pltfrm_pll_init()
322 _errno = of_property_read_string_index(np, "clock-output-names", pltfrm_pll_init()
325 pr_err("%s(): %s: of_property_read_string_index(clock-output-names) = %d\n", pltfrm_pll_init()
H A Dclk-moxart.c26 of_property_read_string(node, "clock-output-names", &name); moxart_of_pll_clk_init()
65 of_property_read_string(node, "clock-output-names", &name); moxart_of_apb_clk_init()
H A Dclk-nspire.c85 of_property_read_string(node, "clock-output-names", &clk_name); nspire_ahbdiv_setup()
126 of_property_read_string(node, "clock-output-names", &clk_name); nspire_clk_setup()
H A Dclk-rk808.c118 of_property_read_string_index(node, "clock-output-names", rk808_clkout_probe()
131 of_property_read_string_index(node, "clock-output-names", rk808_clkout_probe()
/linux-4.1.27/drivers/clk/rockchip/
H A Dclk-rockchip.c40 qty = of_property_count_strings(node, "clock-output-names"); rk2928_gate_clk_init()
42 pr_err("%s: error in clock-output-names %d\n", __func__, qty); rk2928_gate_clk_init()
66 of_property_read_string_index(node, "clock-output-names", rk2928_gate_clk_init()
/linux-4.1.27/drivers/pci/hotplug/
H A Drpaphp_core.c174 const int *indexes, *names, *types, *domains; get_children_props() local
177 names = of_get_property(dn, "ibm,drc-names", NULL); get_children_props()
181 if (!indexes || !names || !types || !domains) { get_children_props()
188 /* &drc_names[1] contains NULL terminated slot names */ get_children_props()
189 *drc_names = names; get_children_props()
206 const int *indexes, *names; rpaphp_get_drc_props() local
218 rc = get_children_props(dn->parent, &indexes, &names, &types, &domains); rpaphp_get_drc_props()
223 name_tmp = (char *) &names[1]; rpaphp_get_drc_props()
264 * @names: passed to get_children_props()
274 const int **names, const int **types, const int **power_domains) is_php_dn()
279 rc = get_children_props(dn, indexes, names, &drc_types, power_domains); is_php_dn()
311 const int *indexes, *names, *types, *power_domains; rpaphp_add_slot() local
318 if (!is_php_dn(dn, &indexes, &names, &types, &power_domains)) rpaphp_add_slot()
324 name = (char *) &names[1]; rpaphp_add_slot()
273 is_php_dn(struct device_node *dn, const int **indexes, const int **names, const int **types, const int **power_domains) is_php_dn() argument
/linux-4.1.27/tools/perf/ui/browsers/
H A Dscripts.c49 char *buf, *names[SCRIPT_MAX_NO], *paths[SCRIPT_MAX_NO]; list_scripts() local
58 names[i] = buf + i * (SCRIPT_NAMELEN + SCRIPT_FULLPATH_LEN); list_scripts()
59 paths[i] = names[i] + SCRIPT_NAMELEN; list_scripts()
62 num = find_scripts(names, paths); list_scripts()
64 choice = ui__popup_menu(num, names); list_scripts()
/linux-4.1.27/drivers/mtd/
H A Dofpart.c121 const char *names; parse_ofoldpart_partitions() local
143 names = of_get_property(dp, "partition-names", &plen); parse_ofoldpart_partitions()
152 if (names && (plen > 0)) { parse_ofoldpart_partitions()
153 int len = strlen(names) + 1; parse_ofoldpart_partitions()
155 (*pparts)[i].name = names; parse_ofoldpart_partitions()
157 names += len; parse_ofoldpart_partitions()
H A Dredboot.c69 char *names; parse_redboot_partitions() local
241 names = nullname + nulllen; parse_redboot_partitions()
256 parts[i].name = names; parse_redboot_partitions()
258 strcpy(names, fl->img->name); parse_redboot_partitions()
260 if (!memcmp(names, "RedBoot", 8) || parse_redboot_partitions()
261 !memcmp(names, "RedBoot config", 15) || parse_redboot_partitions()
262 !memcmp(names, "FIS directory", 14)) { parse_redboot_partitions()
266 names += strlen(names)+1; parse_redboot_partitions()
/linux-4.1.27/drivers/staging/lustre/lustre/libcfs/linux/
H A Dlinux-tcpip.c142 /* Allocate and fill in 'names', returning # interfaces/error */ libcfs_ipif_enumerate()
143 char **names; libcfs_ipif_enumerate() local
196 LIBCFS_ALLOC(names, nfound * sizeof(*names)); libcfs_ipif_enumerate()
197 if (names == NULL) { libcfs_ipif_enumerate()
213 LIBCFS_ALLOC(names[i], IFNAMSIZ); libcfs_ipif_enumerate()
214 if (names[i] == NULL) { libcfs_ipif_enumerate()
219 memcpy(names[i], ifr[i].ifr_name, nob); libcfs_ipif_enumerate()
220 names[i][nob] = 0; libcfs_ipif_enumerate()
223 *namesp = names; libcfs_ipif_enumerate()
228 libcfs_ipif_free_enumeration(names, nfound); libcfs_ipif_enumerate()
238 libcfs_ipif_free_enumeration (char **names, int n) libcfs_ipif_free_enumeration() argument
244 for (i = 0; i < n && names[i] != NULL; i++) libcfs_ipif_free_enumeration()
245 LIBCFS_FREE(names[i], IFNAMSIZ); libcfs_ipif_free_enumeration()
247 LIBCFS_FREE(names, n * sizeof(*names)); libcfs_ipif_free_enumeration()
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/fuc/
H A Dos.h4 /* Process names */
/linux-4.1.27/arch/arm/oprofile/
H A Dcommon.c49 struct op_perf_name names; op_name_from_perf_id() local
53 names = op_perf_name_map[i]; op_name_from_perf_id()
54 if (!strcmp(names.perf_name, perf_name)) op_name_from_perf_id()
55 return names.op_name; op_name_from_perf_id()
/linux-4.1.27/sound/firewire/dice/
H A Ddice-proc.c96 char names[TX_NAMES_SIZE]; dice_proc_read() member in struct:__anon14355::__anon14357
105 char names[RX_NAMES_SIZE]; dice_proc_read() member in struct:__anon14355::__anon14358
167 snd_iprintf(buffer, " clock source names: %s\n", dice_proc_read()
186 dice_proc_fixup_string(buf.tx.names, TX_NAMES_SIZE); dice_proc_read()
187 snd_iprintf(buffer, " names: %s\n", buf.tx.names); dice_proc_read()
212 dice_proc_fixup_string(buf.rx.names, RX_NAMES_SIZE); dice_proc_read()
213 snd_iprintf(buffer, " names: %s\n", buf.rx.names); dice_proc_read()
/linux-4.1.27/drivers/gpu/drm/msm/
H A Dmsm_mmu.h24 int (*attach)(struct msm_mmu *mmu, const char **names, int cnt);
25 void (*detach)(struct msm_mmu *mmu, const char **names, int cnt);
H A Dmsm_iommu.c34 static int msm_iommu_attach(struct msm_mmu *mmu, const char **names, int cnt) msm_iommu_attach() argument
40 static void msm_iommu_detach(struct msm_mmu *mmu, const char **names, int cnt) msm_iommu_detach() argument
/linux-4.1.27/security/apparmor/
H A DMakefile13 # Build a lower case string table of capability names
29 # Build a lower case string table of rlimit names.
H A Dprocattr.c118 const char *hats[16]; /* current hard limit on # of names */ aa_setprocattr_changehat()
134 * If there are multiple hat names in the buffer each is aa_setprocattr_changehat()
/linux-4.1.27/include/linux/
H A Dof_platform.h21 * struct of_dev_auxdata - lookup table entry for device names & platform_data
28 * the names of devices when creating devices from the device tree. The table
33 * the device name to look up a specific device, but the Linux-specific names
H A Dmg_disk.h20 /* names of GPIO resource */
H A Dposix_acl_xattr.h14 /* Extended attribute names */
H A Di2c-mux-pinctrl.h28 * @pinctrl_states: The names of the pinctrl state to select for each child bus
H A Dvirtio_config.h42 * names: array of virtqueue names (mainly for debugging)
73 const char *names[]);
157 const char *names[] = { n }; virtio_find_single_vq() local
159 int err = vdev->config->find_vqs(vdev, 1, &vq, callbacks, names); virtio_find_single_vq()
H A Dmutex.h42 * - uses symbolic names of mutexes, whenever they are printed in debug output
43 * - point-of-acquire tracking, symbolic lookup of function names
/linux-4.1.27/drivers/i2c/busses/
H A Di2c-pca-isa.c49 static char *names[] = { "T/O", "DAT", "ADR", "CON" }; pca_isa_writebyte() local
50 printk(KERN_DEBUG "*** write %s at %#lx <= %#04x\n", names[reg], pca_isa_writebyte()
61 static char *names[] = { "STA", "DAT", "ADR", "CON" }; pca_isa_readbyte() local
62 printk(KERN_DEBUG "*** read %s => %#04x\n", names[reg], res); pca_isa_readbyte()
/linux-4.1.27/arch/x86/kernel/cpu/
H A Dcpu.h22 /* Family/stepping-based lookup table for model names. */
/linux-4.1.27/arch/mips/boot/dts/include/dt-bindings/gpio/
H A Dtegra-gpio.h5 * provide names for this.
/linux-4.1.27/include/linux/power/
H A Dgpio-charger.h27 * @supplied_to: Array of battery names to which this chargers supplies power
/linux-4.1.27/arch/sh/boards/mach-sdk7786/
H A Dgpio.c38 .names = usrgpir_gpio_names,
/linux-4.1.27/arch/powerpc/boot/dts/include/dt-bindings/gpio/
H A Dtegra-gpio.h5 * provide names for this.
/linux-4.1.27/arch/arm64/boot/dts/include/dt-bindings/gpio/
H A Dtegra-gpio.h5 * provide names for this.
/linux-4.1.27/arch/metag/boot/dts/include/dt-bindings/gpio/
H A Dtegra-gpio.h5 * provide names for this.
/linux-4.1.27/arch/arm/boot/dts/include/dt-bindings/gpio/
H A Dtegra-gpio.h5 * provide names for this.
/linux-4.1.27/sound/usb/
H A Dmixer_scarlett.c169 char const * const *names; member in struct:scarlett_mixer_elem_enum_info
200 .names = (char const * const []){
209 .names = (char const * const []){
218 .names = (char const * const []){
227 .names = (char const * const []){
407 (const char * const *)opt->names); scarlett_ctl_enum_info()
648 .names = NULL
655 .names = NULL
690 .names = NULL
697 .names = NULL
729 .names = NULL,
736 .names = NULL,
766 .names = NULL
773 .names = NULL
808 .names = NULL
815 .names = NULL
H A Dmixer_maps.c37 const char **names; member in struct:usbmix_selector_map
106 * The default mixer channels have totally misleading names,
191 .names = (const char*[]) {"Internal", "SPDIF"}
200 .names = (const char*[]) {"Line", "Digital In", "What-U-Hear"}
205 .names = (const char*[]) {"Front", "PCM", "Digital In"}
210 .names = (const char*[]) {"Front", "Side"}
/linux-4.1.27/include/dt-bindings/gpio/
H A Dtegra-gpio.h5 * provide names for this.
/linux-4.1.27/drivers/scsi/pm8001/
H A Dpm8001_ctl.h18 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dpm8001_chips.h18 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dpm8001_defs.h18 * 3. Neither the names of the above-listed copyright holders nor the names
/linux-4.1.27/drivers/scsi/aic7xxx/
H A Daic79xx_pci.h18 * 3. Neither the names of the above-listed copyright holders nor the names
H A Daic7xxx_inline.h19 * 3. Neither the names of the above-listed copyright holders nor the names
H A Daic7xxx_93cx6.h20 * 3. Neither the names of the above-listed copyright holders nor the names
H A Daic7xxx_pci.h18 * 3. Neither the names of the above-listed copyright holders nor the names
H A Daic7770_osm.c18 * 3. Neither the names of the above-listed copyright holders nor the names
/linux-4.1.27/drivers/clk/shmobile/
H A Dclk-r8a7778.c87 num_clks = of_property_count_strings(np, "clock-output-names"); r8a7778_cpg_clocks_init()
115 of_property_read_string_index(np, "clock-output-names", i, r8a7778_cpg_clocks_init()
H A Dclk-rz.c74 num_clks = of_property_count_strings(np, "clock-output-names"); rz_cpg_clocks_init()
91 of_property_read_string_index(np, "clock-output-names", i, &name); rz_cpg_clocks_init()
H A Dclk-r8a7779.c131 num_clks = of_property_count_strings(np, "clock-output-names"); r8a7779_cpg_clocks_init()
158 of_property_read_string_index(np, "clock-output-names", i, r8a7779_cpg_clocks_init()
H A Dclk-r8a73a4.c199 num_clks = of_property_count_strings(np, "clock-output-names"); r8a73a4_cpg_clocks_init()
227 of_property_read_string_index(np, "clock-output-names", i, r8a73a4_cpg_clocks_init()
H A Dclk-r8a7740.c157 num_clks = of_property_count_strings(np, "clock-output-names"); r8a7740_cpg_clocks_init()
185 of_property_read_string_index(np, "clock-output-names", i, r8a7740_cpg_clocks_init()
H A Dclk-sh73a0.c171 num_clks = of_property_count_strings(np, "clock-output-names"); sh73a0_cpg_clocks_init()
204 of_property_read_string_index(np, "clock-output-names", i, sh73a0_cpg_clocks_init()
/linux-4.1.27/arch/x86/include/uapi/asm/
H A Dsignal.h74 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
75 * Unix names RESETHAND and NODEFER respectively.
/linux-4.1.27/include/uapi/asm-generic/
H A Dsignal.h64 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
65 * Unix names RESETHAND and NODEFER respectively.
/linux-4.1.27/arch/s390/include/uapi/asm/
H A Dsignal.h77 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
78 * Unix names RESETHAND and NODEFER respectively.
/linux-4.1.27/arch/sh/include/cpu-sh5/cpu/
H A Dregisters.h19 ** Assigns symbolic names to control & target registers.
86 /* Stringify control register names for use in inline assembly */
/linux-4.1.27/arch/parisc/include/uapi/asm/
H A Dsignal.h53 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
54 * Unix names RESETHAND and NODEFER respectively.
/linux-4.1.27/arch/avr32/include/uapi/asm/
H A Dsignal.h77 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
78 * Unix names RESETHAND and NODEFER respectively.
/linux-4.1.27/arch/cris/include/uapi/asm/
H A Dsignal.h69 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
70 * Unix names RESETHAND and NODEFER respectively.
/linux-4.1.27/arch/m32r/include/uapi/asm/
H A Dsignal.h71 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
72 * Unix names RESETHAND and NODEFER respectively.
/linux-4.1.27/arch/m68k/include/uapi/asm/
H A Dsignal.h69 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
70 * Unix names RESETHAND and NODEFER respectively.
/linux-4.1.27/arch/arm/mach-omap2/
H A Dpmu.c30 * @oh_names: Array of OMAP HWMODS names required to create PMU device
33 * from a list of HWMOD names passed. Currently supports OMAP2, OMAP3
H A Dprm2xxx.h32 * With a few exceptions, these are the register names beginning with
91 * With a few exceptions, these are the register names beginning with
H A Dpowerdomains2xxx_3xxx_data.c15 * The names for the DSP/IVA2 powerdomains are confusing.
/linux-4.1.27/arch/arm/include/uapi/asm/
H A Dsignal.h74 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
75 * Unix names RESETHAND and NODEFER respectively.
/linux-4.1.27/net/tipc/
H A Ddiscover.h16 * 3. Neither the names of the copyright holders nor the names of its
H A Dnet.h16 * 3. Neither the names of the copyright holders nor the names of its
H A Dnetlink.h15 * 3. Neither the names of the copyright holders nor the names of its
H A Dsocket.h14 * 3. Neither the names of the copyright holders nor the names of its
H A Dsysctl.c15 * 3. Neither the names of the copyright holders nor the names of its
H A Daddr.h16 * 3. Neither the names of the copyright holders nor the names of its
H A Dcore.h16 * 3. Neither the names of the copyright holders nor the names of its
H A Deth_media.c16 * 3. Neither the names of the copyright holders nor the names of its
H A Dib_media.c20 * 3. Neither the names of the copyright holders nor the names of its
H A Dname_distr.h16 * 3. Neither the names of the copyright holders nor the names of its
H A Dsubscr.h16 * 3. Neither the names of the copyright holders nor the names of its
H A Daddr.c16 * 3. Neither the names of the copyright holders nor the names of its
H A Dbcast.h16 * 3. Neither the names of the copyright holders nor the names of its
H A Dcore.c16 * 3. Neither the names of the copyright holders nor the names of its
H A Dname_table.h16 * 3. Neither the names of the copyright holders nor the names of its
H A Dnetlink.c16 * 3. Neither the names of the copyright holders nor the names of its
H A Dserver.h15 * 3. Neither the names of the copyright holders nor the names of its
/linux-4.1.27/include/acpi/platform/
H A Dacenvex.h22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dacgcc.h22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Daclinux.h22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Daclinuxex.h22 * 3. Neither the names of the above-listed copyright holders nor the names
/linux-4.1.27/sound/pci/hda/
H A Dhda_proc.c39 static char *bits_names(unsigned int bits, char *names[], int size) bits_names() argument
45 if (bits & (1U<<i) && names[i]) bits_names()
47 names[i]); bits_names()
56 static char *names[16] = { get_wid_type_name() local
70 if (names[wid_value]) get_wid_type_name()
71 return names[wid_value]; get_wid_type_name()
244 static char *names[16] = { get_jack_connection() local
251 if (names[cfg]) get_jack_connection()
252 return names[cfg]; get_jack_connection()
259 static char *names[16] = { get_jack_color() local
266 if (names[cfg]) get_jack_color()
267 return names[cfg]; get_jack_color()
481 static char *names[] = { print_power_state() local
497 bits_names(sup, names, ARRAY_SIZE(names))); print_power_state()
/linux-4.1.27/drivers/gpio/
H A Dgpio-lpc32xx.c82 * GPIO names
450 .names = gpio_p0_names,
466 .names = gpio_p1_names,
481 .names = gpio_p2_names,
497 .names = gpio_p3_names,
511 .names = gpi_p3_names,
525 .names = gpo_p3_names,
/linux-4.1.27/drivers/bcma/
H A Dscan.c112 const struct bcma_device_id_name *names; bcma_device_name() local
115 /* search manufacturer specific names */ bcma_device_name()
118 names = bcma_arm_device_names; bcma_device_name()
122 names = bcma_bcm_device_names; bcma_device_name()
126 names = bcma_mips_device_names; bcma_device_name()
134 if (names[i].id == id->id) bcma_device_name()
135 return names[i].name; bcma_device_name()
/linux-4.1.27/drivers/dio/
H A Ddio.c57 * marking the names[] array as .initdata ?
69 static struct dioname names[] = variable in typeref:struct:dioname
98 for (i = 0; i < ARRAY_SIZE(names); i++) dio_getname()
99 if (names[i].id == id) dio_getname()
100 return names[i].name; dio_getname()
/linux-4.1.27/drivers/clk/keystone/
H A Dpll.c186 i = of_property_match_string(node, "reg-names", _of_pll_clk_init()
191 i = of_property_match_string(node, "reg-names", "control"); _of_pll_clk_init()
207 i = of_property_match_string(node, "reg-names", "multiplier"); _of_pll_clk_init()
261 of_property_read_string(node, "clock-output-names", &clk_name); of_pll_div_clk_init()
305 of_property_read_string(node, "clock-output-names", &clk_name); of_pll_mux_clk_init()
/linux-4.1.27/mm/
H A Ddebug.c54 const struct trace_print_flags *names, int count) dump_flags()
67 mask = names[i].mask; dump_flags()
72 pr_cont("%s%s", delim, names[i].name); dump_flags()
53 dump_flags(unsigned long flags, const struct trace_print_flags *names, int count) dump_flags() argument
/linux-4.1.27/net/rds/
H A Dstats.c82 uint64_t *values, const char *const *names, size_t nr) rds_stats_info_copy()
88 BUG_ON(strlen(names[i]) >= sizeof(ctr.name)); rds_stats_info_copy()
89 strncpy(ctr.name, names[i], sizeof(ctr.name) - 1); rds_stats_info_copy()
81 rds_stats_info_copy(struct rds_info_iterator *iter, uint64_t *values, const char *const *names, size_t nr) rds_stats_info_copy() argument
/linux-4.1.27/sound/pci/oxygen/
H A Doxygen.c441 static const char *const names[2] = { rolloff_info() local
445 return snd_ctl_enum_info(info, 1, 2, names); rolloff_info()
493 static const char *const names[2] = { hpf_info() local
497 return snd_ctl_enum_info(info, 1, 2, names); hpf_info()
539 static const char *const names[2] = { "On-board", "Extension" }; meridian_dig_source_info() local
541 return snd_ctl_enum_info(info, 1, 2, names); meridian_dig_source_info()
547 static const char *const names[2] = { "Optical", "Coaxial" }; claro_dig_source_info() local
549 return snd_ctl_enum_info(info, 1, 2, names); claro_dig_source_info()
762 static const char *const names[] = { get_oxygen_model() local
846 if (id->driver_data < ARRAY_SIZE(names) && names[id->driver_data]) get_oxygen_model()
847 chip->model.shortname = names[id->driver_data]; get_oxygen_model()
H A Dxonar_dg_mixer.c60 static const char *const names[3] = { output_select_info() local
66 return snd_ctl_enum_info(info, 1, 3, names); output_select_info()
282 static const char *const names[4] = { input_sel_info() local
286 return snd_ctl_enum_info(info, 1, 4, names); input_sel_info()
332 static const char *const names[2] = { "Active", "Frozen" }; hpf_info() local
334 return snd_ctl_enum_info(info, 1, 2, names); hpf_info()
/linux-4.1.27/arch/mips/txx9/rbtx4939/
H A Dsetup.c382 static char names[4][8]; rbtx4939_mtd_init() local
391 sprintf(names[i], "img%d", 4 - i); rbtx4939_mtd_init()
392 parts[i].name = names[i]; rbtx4939_mtd_init()
399 strcpy(names[0], "big"); rbtx4939_mtd_init()
400 strcpy(names[1], "little"); rbtx4939_mtd_init()
402 parts[i].name = names[i]; rbtx4939_mtd_init()
/linux-4.1.27/drivers/scsi/aic7xxx/aicasm/
H A Daicasm.h19 * 3. Neither the names of the above-listed copyright holders nor the names
H A Daicasm_insformat.h19 * 3. Neither the names of the above-listed copyright holders nor the names
H A Daicasm_macro_gram.y20 * 3. Neither the names of the above-listed copyright holders nor the names
H A Daicasm_symbol.h19 * 3. Neither the names of the above-listed copyright holders nor the names
/linux-4.1.27/drivers/infiniband/hw/qib/
H A Dqib_fs.c113 * driver stats field names, one line per stat, single string. Used by
160 char *names; dev_names_read() local
164 avail = dd->f_read_cntrs(dd, *ppos, &names, NULL); dev_names_read()
165 return simple_read_from_buffer(buf, count, ppos, names, avail); dev_names_read()
178 /* read the per-port names (same for each port) */ portnames_read()
182 char *names; portnames_read() local
186 avail = dd->f_read_portcntrs(dd, *ppos, 0, &names, NULL); portnames_read()
187 return simple_read_from_buffer(buf, count, ppos, names, avail); portnames_read()
/linux-4.1.27/arch/xtensa/include/uapi/asm/
H A Dsignal.h84 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
85 * Unix names RESETHAND and NODEFER respectively.
/linux-4.1.27/drivers/acpi/acpica/
H A Daccommon.h22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dnsdumpdv.c22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dnsutils.c23 * 3. Neither the names of the above-listed copyright holders nor the names
127 * RETURN: LOCAL if names must be found locally in objects of the
448 * Check for object names. Note that there could be 0-255 of these acpi_ns_externalize_name()
455 /* <count> 4-byte names */ acpi_ns_externalize_name()
464 /* Two 4-byte names */ acpi_ns_externalize_name()
490 * of the prefix, length of all object names, length of any required acpi_ns_externalize_name()
491 * punctuation ('.') between object names, plus the NULL terminator. acpi_ns_externalize_name()
H A Dpswalk.c22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Duthex.c22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dutuuid.c22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dutpredef.c3 * Module Name: utpredef - support functions for predefined names
22 * 3. Neither the names of the above-listed copyright holders nor the names
197 /* Bit widths for resource descriptor predefined names */
H A Dnssearch.c22 * 3. Neither the names of the above-listed copyright holders nor the names
79 * order in which the names are encountered during the namespace load;
268 * interpreter_mode - Add names only in ACPI_MODE_LOAD_PASS_x.
311 * all namespace names to be printable. A warning message is appropriate. acpi_ns_search_and_enter()
315 * even though there are a few bad names. acpi_ns_search_and_enter()
364 /* In execute mode, just search, never add names. Exit now */ acpi_ns_search_and_enter()
H A Dexutils.c22 * 3. Neither the names of the above-listed copyright holders nor the names
46 * to determine whether certain global names should be "defined" or only
48 * by enabling a single header file to embody all knowledge of the names
53 * names in question will be defined and initialized in that module,
H A Dutdecode.c22 * 3. Neither the names of the above-listed copyright holders nor the names
187 /* Printable names of the ACPI object types */
300 /* Printable names of object descriptor types */
350 /* Printable names of reference object sub-types */
H A Dnseval.c22 * 3. Neither the names of the above-listed copyright holders nor the names
166 * For predefined names: Check that the declared argument count acpi_ns_evaluate()
173 * For all names: Check that the incoming argument count for acpi_ns_evaluate()
179 /* For predefined names: Typecheck all incoming arguments */ acpi_ns_evaluate()
291 * For predefined names, check the return value against the ACPI acpi_ns_evaluate()
H A Dnsrepair.c22 * 3. Neither the names of the above-listed copyright holders nor the names
96 * Special but simple repairs for some names.
162 * Special repairs for certain names that are in the repair table. acpi_ns_simple_repair()
163 * Check if this name is in the list of repairable names. acpi_ns_simple_repair()
412 * predefined names that return a fixed-length package and each element acpi_ns_repair_null_element()
H A Dacapps.h22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dacevents.h22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dachware.h22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dactables.h22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Ddswscope.c22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dhwacpi.c22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dhwtimer.c22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dpsutils.c22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Drsmemory.c22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dtbfind.c22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dutexcep.c22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dutglobal.c22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dutinit.c22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dutlock.c22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dutxfmutex.c22 * 3. Neither the names of the above-listed copyright holders nor the names
/linux-4.1.27/drivers/virtio/
H A Dvirtio_pci_common.c299 const char *names[], vp_try_to_find_vqs()
336 if (!names[i]) { vp_try_to_find_vqs()
345 vqs[i] = vp_setup_vq(vdev, i, callbacks[i], names[i], msix_vec); vp_try_to_find_vqs()
358 dev_name(&vp_dev->vdev.dev), names[i]); vp_try_to_find_vqs()
379 const char *names[]) vp_find_vqs()
384 err = vp_try_to_find_vqs(vdev, nvqs, vqs, callbacks, names, true, true); vp_find_vqs()
388 err = vp_try_to_find_vqs(vdev, nvqs, vqs, callbacks, names, vp_find_vqs()
393 return vp_try_to_find_vqs(vdev, nvqs, vqs, callbacks, names, vp_find_vqs()
296 vp_try_to_find_vqs(struct virtio_device *vdev, unsigned nvqs, struct virtqueue *vqs[], vq_callback_t *callbacks[], const char *names[], bool use_msix, bool per_vq_vectors) vp_try_to_find_vqs() argument
376 vp_find_vqs(struct virtio_device *vdev, unsigned nvqs, struct virtqueue *vqs[], vq_callback_t *callbacks[], const char *names[]) vp_find_vqs() argument
/linux-4.1.27/arch/powerpc/platforms/pseries/
H A Dfirmware.c37 * The names in this table match names in rtas/ibm,hypertas-functions. If the
/linux-4.1.27/arch/mn10300/include/uapi/asm/
H A Dsignal.h79 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
80 * Unix names RESETHAND and NODEFER respectively.
/linux-4.1.27/arch/powerpc/include/uapi/asm/
H A Dsignal.h72 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
73 * Unix names RESETHAND and NODEFER respectively.
/linux-4.1.27/arch/ia64/include/uapi/asm/
H A Dsignal.h65 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
66 * Unix names RESETHAND and NODEFER respectively.
/linux-4.1.27/arch/alpha/include/uapi/asm/
H A Dsignal.h72 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
73 * Unix names RESETHAND and NODEFER respectively.
/linux-4.1.27/tools/power/acpi/common/
H A Dcmfsize.c22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dgetopt.c22 * 3. Neither the names of the above-listed copyright holders nor the names
/linux-4.1.27/drivers/i2c/muxes/
H A Di2c-mux-pinctrl.c73 num_names = of_property_count_strings(np, "pinctrl-names"); i2c_mux_pinctrl_parse_dt()
75 dev_err(mux->dev, "Cannot parse pinctrl-names: %d\n", i2c_mux_pinctrl_parse_dt()
89 ret = of_property_read_string_index(np, "pinctrl-names", i, i2c_mux_pinctrl_parse_dt()
92 dev_err(mux->dev, "Cannot parse pinctrl-names: %d\n", i2c_mux_pinctrl_parse_dt()
/linux-4.1.27/drivers/pinctrl/
H A Ddevicetree.c195 /* We may store pointers to property names within the node */ pinctrl_dt_to_map()
209 /* Determine whether pinctrl-names property names the state */ pinctrl_dt_to_map()
210 ret = of_property_read_string_index(np, "pinctrl-names", pinctrl_dt_to_map()
/linux-4.1.27/drivers/firmware/efi/libstub/
H A DMakefile33 # the section names directly. This will ensure that even all the inline string
/linux-4.1.27/drivers/clk/sunxi/
H A Dclk-a10-hosc.c45 of_property_read_string(node, "clock-output-names", &clk_name); sun4i_osc_clk_setup()
H A Dclk-sun6i-apb0.c49 of_property_read_string(np, "clock-output-names", &clk_name); sun6i_a31_apb0_clk_probe()
H A Dclk-sun8i-apb0.c40 of_property_read_string(np, "clock-output-names", &clk_name); sun8i_a23_apb0_clk_probe()
/linux-4.1.27/arch/sparc/include/uapi/asm/
H A Dopenpromio.h16 char oprom_array[1]; /* Holds property names and values. */
/linux-4.1.27/drivers/clk/mvebu/
H A Dcommon.c137 of_property_read_string_index(np, "clock-output-names", 0, mvebu_coreclk_setup()
145 of_property_read_string_index(np, "clock-output-names", 1, mvebu_coreclk_setup()
162 of_property_read_string_index(np, "clock-output-names", mvebu_coreclk_setup()
173 of_property_read_string_index(np, "clock-output-names", mvebu_coreclk_setup()
/linux-4.1.27/fs/xfs/libxfs/
H A Dxfs_da_btree.h53 XFS_CMP_DIFFERENT, /* names are completely different */
54 XFS_CMP_EXACT, /* names are exactly the same */
55 XFS_CMP_CASE /* names are same but differ in case */
59 * Structure to ease passing around component names.
/linux-4.1.27/arch/powerpc/include/asm/
H A Dftrace.h71 * just match the rest. This is only needed on ppc64 since symbol names on arch_syscall_match_sym_name()
/linux-4.1.27/arch/m68k/include/asm/
H A Dapollohw.h16 member names are read_write.
H A Datafdreg.h15 /* register names for FDC_READ/WRITE macros */
/linux-4.1.27/samples/bpf/
H A Dbpf_helpers.h5 * different sections in elf_bpf file. Section names
/linux-4.1.27/tools/perf/arch/arm/util/
H A Ddwarf-regs.c2 * Mapping of DWARF debug register numbers into register names.
/linux-4.1.27/tools/perf/arch/arm64/util/
H A Ddwarf-regs.c2 * Mapping of DWARF debug register numbers into register names.
/linux-4.1.27/tools/perf/arch/powerpc/util/
H A Ddwarf-regs.c2 * Mapping of DWARF debug register numbers into register names.
/linux-4.1.27/tools/perf/arch/sh/util/
H A Ddwarf-regs.c2 * Mapping of DWARF debug register numbers into register names.
/linux-4.1.27/tools/perf/arch/sparc/util/
H A Ddwarf-regs.c2 * Mapping of DWARF debug register numbers into register names.
/linux-4.1.27/tools/perf/arch/x86/util/
H A Ddwarf-regs.c2 * dwarf-regs.c : Mapping of DWARF debug register numbers into register names.
/linux-4.1.27/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DUtil.py74 print "Install the audit-libs-python package to get syscall names"
/linux-4.1.27/tools/power/cpupower/utils/idle_monitor/
H A Dcpupower-monitor.h23 /* Hard to define the right names ...: */
/linux-4.1.27/tools/usb/usbip/libsrc/
H A Dnames.h2 * names.h -- USB name database manipulation routines
/linux-4.1.27/include/crypto/
H A Dvmac.h39 * This implementation uses u32 and u64 as names for unsigned 32-
/linux-4.1.27/drivers/net/ethernet/sfc/
H A Dnic.c450 * @names: Buffer to copy names to, or %NULL. The names are copied
457 const unsigned long *mask, u8 *names) efx_nic_describe_stats()
464 if (names) { for_each_set_bit()
465 strlcpy(names, desc[index].name, for_each_set_bit()
467 names += ETH_GSTRING_LEN; for_each_set_bit()
456 efx_nic_describe_stats(const struct efx_hw_stat_desc *desc, size_t count, const unsigned long *mask, u8 *names) efx_nic_describe_stats() argument
/linux-4.1.27/drivers/clk/zynq/
H A Dclkc.c235 /* get clock output names from DT */ zynq_clk_setup()
237 if (of_property_read_string_index(np, "clock-output-names", zynq_clk_setup()
317 int idx = of_property_match_string(np, "clock-names", zynq_clk_setup()
386 int idx = of_property_match_string(np, "clock-names", zynq_clk_setup()
411 int idx = of_property_match_string(np, "clock-names", zynq_clk_setup()
441 idx = of_property_match_string(np, "clock-names", clk_name); zynq_clk_setup()
483 int idx = of_property_match_string(np, "clock-names", zynq_clk_setup()
/linux-4.1.27/include/linux/rtc/
H A Dds1685.h152 * Bit names in Control Register A.
165 * Bit names in Control Register B.
179 * Bit names in Control Register C.
192 * Bit names in Control Register D.
201 * Bit names in Extended Control Register 4A.
224 * Bit names in Extended Control Register 4B.
238 * Misc register names in Bank 1.
/linux-4.1.27/drivers/clk/bcm/
H A Dclk-kona-setup.c510 * Scan an array of parent clock names to determine whether there
515 * Allocates an array of pointers to to hold the names of all
517 * that array in *names. This will be used for registering the
519 * *count indicates how many entries are in that names array.
521 * If there is more than one entry in the resulting names array,
527 * is the same as the number of entries in the parent names array.
532 * Returns a null pointer if the clock names array supplied was
538 u32 *count, const char ***names) parent_process()
550 *names = NULL; parent_process()
555 * Count the number of names in the null-terminated array, parent_process()
556 * and find out how many of those are actually clock names. parent_process()
584 pr_err("%s: error allocating %u parent names\n", __func__, parent_process()
600 /* Now fill in the parent names and selector arrays */ parent_process()
608 *names = parent_names; parent_process()
630 * We need to supply (only) the names of defined parent clk_sel_setup()
537 parent_process(const char *clocks[], u32 *count, const char ***names) parent_process() argument
/linux-4.1.27/fs/ntfs/
H A Dunistr.c55 * ntfs_are_names_equal - compare two Unicode names for equality
64 * Compare the names @s1 and @s2 and return 'true' (1) if the names are
80 * ntfs_collate_names - collate two Unicode names
88 * ntfs_collate_names collates two Unicode names and returns:
91 * 0 if the names match,
/linux-4.1.27/drivers/net/wireless/ath/ath5k/
H A Dbase.h15 * 3. Neither the names of the above-listed copyright holders nor the names
H A Drfkill.c18 * 3. Neither the names of the above-listed copyright holders nor the names
/linux-4.1.27/drivers/net/wireless/libertas/
H A Dfirmware.c126 * @fw_table: Table of firmware file names and device model numbers
162 * @fw_table: Table of firmware file names and device model numbers
/linux-4.1.27/drivers/staging/lustre/include/linux/libcfs/
H A Dlibcfs.h93 int libcfs_ipif_enumerate(char ***names);
94 void libcfs_ipif_free_enumeration(char **names, int n);
/linux-4.1.27/drivers/clk/versatile/
H A Dclk-sp810.c151 sp810->refclk_index = of_property_match_string(node, "clock-names", clk_sp810_of_setup()
155 sp810->timclk_index = of_property_match_string(node, "clock-names", clk_sp810_of_setup()
/linux-4.1.27/drivers/firewire/
H A Dnosy.h3 * from the Linux 1394 drivers, but modified a bit so the names here
4 * match the specification exactly (even though they have weird names,
/linux-4.1.27/arch/mips/alchemy/common/
H A Dclock.c957 const char * const *names; alchemy_clk_setup_imux() local
971 names = alchemy_au1000_intclknames; alchemy_clk_setup_imux()
974 names = alchemy_au1500_intclknames; alchemy_clk_setup_imux()
977 names = alchemy_au1100_intclknames; alchemy_clk_setup_imux()
980 names = alchemy_au1550_intclknames; alchemy_clk_setup_imux()
983 names = alchemy_au1200_intclknames; alchemy_clk_setup_imux()
987 names = alchemy_au1300_intclknames; alchemy_clk_setup_imux()
1001 id.name = names[i]; alchemy_clk_setup_imux()
/linux-4.1.27/include/sound/
H A Ddmaengine_pcm.h104 * The PCM streams have custom channel names specified.
119 * @chan_names: If set, these custom DMA channel names will be requested at
/linux-4.1.27/arch/mips/include/uapi/asm/
H A Dsignal.h73 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
74 * Unix names RESETHAND and NODEFER respectively.
/linux-4.1.27/arch/arc/include/asm/
H A Dperf_event.h79 * ARC PCT has hardware conditions with fixed "names" but variable "indexes"
82 * h/w condition names.
/linux-4.1.27/net/hsr/
H A Dhsr_main.h51 * Field names as defined in the IEC:2010 standard for HSR.
101 * Field names as defined in the IEC:2010 standard for HSR.
/linux-4.1.27/sound/i2c/other/
H A Dpt2258.c187 char *names[3] = { snd_pt2258_build_controls() local
196 knew.name = names[i]; snd_pt2258_build_controls()
/linux-4.1.27/tools/power/acpi/os_specific/service_layers/
H A Doslibcfs.c22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dosunixdir.c22 * 3. Neither the names of the above-listed copyright holders nor the names
H A Dosunixmap.c22 * 3. Neither the names of the above-listed copyright holders nor the names
/linux-4.1.27/tools/power/acpi/tools/acpidump/
H A Dacpidump.h22 * 3. Neither the names of the above-listed copyright holders nor the names

Completed in 3451 milliseconds

123456789