Home
last modified time | relevance | path

Searched refs:names (Results 376 - 400 of 1332) sorted by relevance

1...<<11121314151617181920>>...54

/kernel/linux/linux-6.6/arch/mips/alchemy/common/
H A Dclock.c959 const char * const *names; in alchemy_clk_setup_imux() local
973 names = alchemy_au1000_intclknames; in alchemy_clk_setup_imux()
976 names = alchemy_au1500_intclknames; in alchemy_clk_setup_imux()
979 names = alchemy_au1100_intclknames; in alchemy_clk_setup_imux()
982 names = alchemy_au1550_intclknames; in alchemy_clk_setup_imux()
985 names = alchemy_au1200_intclknames; in alchemy_clk_setup_imux()
989 names = alchemy_au1300_intclknames; in alchemy_clk_setup_imux()
1002 id.name = names[i]; in alchemy_clk_setup_imux()
/kernel/linux/linux-5.10/drivers/scsi/
H A Dvirtio_scsi.c794 const char **names; in virtscsi_init() local
802 names = kmalloc_array(num_vqs, sizeof(char *), GFP_KERNEL); in virtscsi_init()
804 if (!callbacks || !vqs || !names) { in virtscsi_init()
811 names[0] = "control"; in virtscsi_init()
812 names[1] = "event"; in virtscsi_init()
815 names[i] = "request"; in virtscsi_init()
819 err = virtio_find_vqs(vdev, num_vqs, vqs, callbacks, names, &desc); in virtscsi_init()
835 kfree(names); in virtscsi_init()
/kernel/linux/linux-6.6/drivers/scsi/
H A Dvirtio_scsi.c800 const char **names; in virtscsi_init() local
808 names = kmalloc_array(num_vqs, sizeof(char *), GFP_KERNEL); in virtscsi_init()
810 if (!callbacks || !vqs || !names) { in virtscsi_init()
817 names[0] = "control"; in virtscsi_init()
818 names[1] = "event"; in virtscsi_init()
821 names[i] = "request"; in virtscsi_init()
825 err = virtio_find_vqs(vdev, num_vqs, vqs, callbacks, names, &desc); in virtscsi_init()
841 kfree(names); in virtscsi_init()
/third_party/elfutils/src/
H A Delfcompress.c287 /* String table (and symbol table), if section names need adjusting. */ in process_file()
288 Dwelf_Strtab *names = NULL; in process_file() local
293 /* Section data from names. */ in process_file()
375 /* Whether we need to adjust any section names (going to/from GNU in process_file()
401 names change and whether there is a symbol table that might need in process_file()
414 any section references (names) and adjust the layout based on the in process_file()
480 /* We need a buffer this large if we change the names. */ in process_file()
530 names = dwelf_strtab_init (true); in process_file()
531 if (names == NULL) in process_file()
647 sections, collect names o in process_file()
[all...]
/third_party/littlefs/scripts/
H A Dstack.py341 names = list(table.keys() | diff_table.keys())
344 names.sort()
346 names.sort(key=lambda n: tuple(
354 names.sort(
437 for name in names:
467 # find the best widths, note that column 0 contains the names and column -1
489 line_table = {n: l for n, l in zip(names, lines[1:-1])}
520 [n for n in names if n in children],
527 recurse(names, depth)
/third_party/python/Include/internal/
H A Dpycore_ast.h311 asdl_alias_seq *names; member
316 asdl_alias_seq *names; member
321 asdl_identifier_seq *names; member
325 asdl_identifier_seq *names; member
704 stmt_ty _PyAST_Import(asdl_alias_seq * names, int lineno, int col_offset, int
706 stmt_ty _PyAST_ImportFrom(identifier module, asdl_alias_seq * names, int level,
709 stmt_ty _PyAST_Global(asdl_identifier_seq * names, int lineno, int col_offset,
711 stmt_ty _PyAST_Nonlocal(asdl_identifier_seq * names, int lineno, int
/kernel/linux/linux-5.10/scripts/
H A Dcheck-sysctl-docs23 # children: maps ctl_table names and procnames to child ctl_table names
25 # entries: maps ctl_table names and procnames to counts (so
28 # files: maps procnames to source file names
29 # paths: maps ctl_path names to paths
125 match($0, /.procname[\t ]*=[\t ]*"([^"]+)"/, names)
127 curentry = curentry "/" names[1]
129 curentry = names[1]
136 match($0, /.procname[\t ]*=[\t ]*"([^"]+)"/, names)
137 curentry = names[
[all...]
/kernel/linux/linux-6.6/drivers/gpio/
H A Dgpio-i8255.c127 gpio_config.names = config->names; in devm_i8255_regmap_register()
/third_party/ffmpeg/tests/checkasm/
H A Dflacdsp.c67 static const char * const names[3] = { "ls", "rs", "ms" }; in checkasm_check_flacdsp() local
81 if (check_func(h.decorrelate[j], "flac_decorrelate_%s_%d", names[j], fmts[i].bits)) in checkasm_check_flacdsp()
/third_party/mbedtls/tests/scripts/
H A Dpsa_collect_statuses.py52 """Run psa_constant_names to obtain names for observed numerical values."""
66 names = [self.status_names[value] for value in fdata.keys()]
67 for name in sorted(names):
115 parser.add_argument('--psa-constant-names', metavar='PROGRAM',
/third_party/noto-cjk/google-fonts/
H A Dhotfix.py52 # Trash all the names from STAT/fvar and start again.
73 # Drop 0x411 font names
74 ttfont["name"].names = [x for x in ttfont["name"].names if x.langID == 0x409]
/third_party/node/test/fixtures/postject-copy/node_modules/commander/lib/
H A Doption.js79 * @param {string | string[]} names
83 conflicts(names) {
84 this.conflictsWith = this.conflictsWith.concat(names);
/third_party/musl/porting/linux/user/src/hook/
H A Dmusl_socket_preinit.c65 static const char* names[] = { in init_socket_hook_shared_library() local
74 (void)snprintf(symbol, sizeof(symbol), "%s_%s", __socket_hook_function_prefix, names[i]); in init_socket_hook_shared_library()
/third_party/musl/src/hook/linux/
H A Dmusl_socket_preinit.c80 static const char* names[] = { in init_socket_hook_shared_library() local
89 (void)snprintf(symbol, sizeof(symbol), "%s_%s", __socket_hook_function_prefix, names[i]); in init_socket_hook_shared_library()
/third_party/mesa3d/src/mapi/new/
H A Dgen_gldispatch_mapi.py47 names = genCommon.getExportNamesFromRoots(target, roots)
48 functions = [f for f in allFunctions if(f.name in names)]
/third_party/python/Lib/re/
H A D_constants.py69 def _makecodes(*names):
70 items = [_NamedIntConstant(i, name) for i, name in enumerate(names)]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-name.cc63 if (num_entries) *num_entries = name.names.length; in hb_ot_name_list_names()
64 return (const hb_ot_name_entry_t *) name.names; in hb_ot_name_list_names()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DAtomicOrdering.h81 static const char *names[8] = {"not_atomic", "unordered", "monotonic", in toIRString() local
84 return names[static_cast<size_t>(ao)]; in toIRString()
/third_party/python/Lib/
H A Dimghdr.py162 names = glob.glob(os.path.join(glob.escape(filename), '*'))
163 testall(names, recursive, 0)
/third_party/python/Lib/test/test_importlib/import_/
H A Dtest_caching.py54 def create_mock(self, *names, return_=None):
55 mock = util.mock_modules(*names)
/third_party/skia/infra/bots/
H A Dzip_utils.py20 def filtered(names, to_skip):
21 """Filter the list of file or directory names."""
22 rv = names[:]
/third_party/icu/icu4c/source/test/perf/dicttrieperf/
H A Ddicttrieperf.cpp117 static int32_t simpleBinarySearch(const char *s, const char *names, const TOCEntry *toc, int32_t count) { in simpleBinarySearch() argument
127 int32_t cmp=strcmp(s, names+toc[number].nameOffset); in simpleBinarySearch()
154 printf("size of item names: %6ld\n", (long)itemNames.length()); in BinarySearchPackageLookup()
207 static int32_t prefixBinarySearch(const char *s, const char *names, const TOCEntry *toc, int32_t count) { in prefixBinarySearch() argument
220 // At the same time, we find if s is one of the start and (limit-1) names, in prefixBinarySearch()
222 if(0==strcmpAfterPrefix(s, names+toc[0].nameOffset, startPrefixLength)) { in prefixBinarySearch()
227 if(0==strcmpAfterPrefix(s, names+toc[limit].nameOffset, limitPrefixLength)) { in prefixBinarySearch()
233 int32_t cmp=strcmpAfterPrefix(s, names+toc[i].nameOffset, prefixLength); in prefixBinarySearch()
284 // We store all full names so that we do not have to reconstruct them in BytesTriePackageLookup()
/third_party/python/Lib/test/
H A Dtest_pkgutil.py85 names = []
88 names.append(moduleinfo.name)
89 self.assertEqual(names, ['test_getdata_zipfile'])
120 names = []
123 names.append(moduleinfo.name)
124 self.assertEqual(names, [pkg])
277 # add some Unicode package names to the mix.
H A Dtest_trace.py432 self.assertTrue(ignore.names('x.py', 'x'))
433 self.assertFalse(ignore.names('xy.py', 'xy'))
434 self.assertFalse(ignore.names('y.py', 'y'))
435 self.assertTrue(ignore.names(jn('foo', 'bar', 'baz.py'), 'baz'))
436 self.assertFalse(ignore.names(jn('bar', 'z.py'), 'z'))
438 self.assertTrue(ignore.names(jn('bar', 'baz.py'), 'baz'))
/kernel/linux/linux-5.10/sound/core/
H A Dcontrol.c1252 const char *names; in snd_ctl_elem_user_enum_info() local
1265 names = ue->priv_data; in snd_ctl_elem_user_enum_info()
1267 names += strlen(names) + 1; in snd_ctl_elem_user_enum_info()
1268 strcpy(uinfo->value.enumerated.name, names); in snd_ctl_elem_user_enum_info()
1373 char *names, *p; in snd_ctl_elem_init_enum_names() local
1381 names = vmemdup_user((const void __user *)user_ptrval, in snd_ctl_elem_init_enum_names()
1383 if (IS_ERR(names)) in snd_ctl_elem_init_enum_names()
1384 return PTR_ERR(names); in snd_ctl_elem_init_enum_names()
1386 /* check that there are enough valid names */ in snd_ctl_elem_init_enum_names()
2128 snd_ctl_enum_info(struct snd_ctl_elem_info *info, unsigned int channels, unsigned int items, const char *const names[]) snd_ctl_enum_info() argument
2140 names[info->value.enumerated.item]); snd_ctl_enum_info() local
[all...]

Completed in 19 milliseconds

1...<<11121314151617181920>>...54