| /freebsd-13.1/bin/sh/ |
| H A D | alias.c | 182 struct alias **sorted, *ap; in printaliases() local 185 sorted = ckmalloc(aliases * sizeof(*sorted)); in printaliases() 190 sorted[j++] = ap; in printaliases() 191 qsort(sorted, aliases, sizeof(*sorted), comparealiases); in printaliases() 193 printalias(sorted[i]); in printaliases() 197 ckfree(sorted); in printaliases()
|
| /freebsd-13.1/contrib/llvm-project/lld/ELF/ |
| H A D | CallGraphSort.cpp | 182 std::vector<int> sorted(clusters.size()); in run() local 186 std::iota(sorted.begin(), sorted.end(), 0); in run() 187 llvm::stable_sort(sorted, [&](int a, int b) { in run() 191 for (int l : sorted) { in run() 216 sorted.clear(); in run() 219 sorted.push_back(i); in run() 220 llvm::stable_sort(sorted, [&](int a, int b) { in run() 226 for (int leader : sorted) { in run() 244 for (int leader : sorted) in run()
|
| /freebsd-13.1/contrib/llvm-project/lld/COFF/ |
| H A D | CallGraphSort.cpp | 153 std::vector<int> sorted(clusters.size()); in run() local 157 std::iota(sorted.begin(), sorted.end(), 0); in run() 158 llvm::stable_sort(sorted, [&](int a, int b) { in run() 162 for (int l : sorted) { in run() 187 sorted.clear(); in run() 190 sorted.push_back(i); in run() 191 llvm::stable_sort(sorted, [&](int a, int b) { in run() 199 for (int leader : sorted) { in run() 216 for (int leader : sorted) in run()
|
| /freebsd-13.1/usr.bin/sort/ |
| H A D | radixsort.c | 66 struct sort_list_item **sorted; member 347 sl->sorted[sl->start_position] = sl->tosort[0]; in run_sort_level_next() 361 sl->sorted[sl->start_position++] = sl->tosort[1]; in run_sort_level_next() 362 sl->sorted[sl->start_position] = sl->tosort[0]; in run_sort_level_next() 364 sl->sorted[sl->start_position++] = sl->tosort[0]; in run_sort_level_next() 365 sl->sorted[sl->start_position] = sl->tosort[1]; in run_sort_level_next() 404 memcpy(sl->sorted + sl->start_position, in run_sort_level_next() 472 slc->sorted = sl->sorted; in run_sort_level_next() 493 slc->sorted = sl->sorted; in run_sort_level_next() 606 slc->sorted = sl->tosort; in run_top_sort_level() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Utility/ |
| H A D | Timer.cpp | 138 std::vector<Stats> sorted; in DumpCategoryTimes() local 145 sorted.push_back(stats); in DumpCategoryTimes() 148 if (sorted.empty()) in DumpCategoryTimes() 152 llvm::sort(sorted.begin(), sorted.end(), CategoryMapIteratorSortCriterion); in DumpCategoryTimes() 154 for (const auto &stats : sorted) in DumpCategoryTimes()
|
| /freebsd-13.1/crypto/openssl/crypto/stack/ |
| H A D | stack.c | 29 int sorted; member 39 sk->sorted = 0; in OPENSSL_sk_set_cmp_func() 253 st->sorted = 0; in OPENSSL_sk_insert() 303 if (!st->sorted) { in internal_find() 306 st->sorted = 1; /* empty or single-element stack is considered sorted */ in internal_find() 397 st->sorted = 0; in OPENSSL_sk_set() 403 if (st != NULL && !st->sorted && st->comp != NULL) { in OPENSSL_sk_sort() 406 st->sorted = 1; /* empty or single-element stack is considered sorted */ in OPENSSL_sk_sort() 412 return st == NULL ? 1 : st->sorted; in OPENSSL_sk_is_sorted()
|
| /freebsd-13.1/contrib/bmake/unit-tests/ |
| H A D | varmod-order-shuffle.mk | 37 sorted:= ${WORDS:Ox:O} 38 .if ${sorted} != ${WORDS:O} 39 . error ${sorted} != ${WORDS:O}
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/TextAPI/ |
| H A D | Architecture.def | 14 /// X86 architectures sorted by cpu type and sub type id. 22 /// ARM architectures sorted by cpu sub type id. 36 /// ARM64 architectures sorted by cpu sub type id. 43 /// ARM64_32 architectures sorted by cpu sub type id
|
| /freebsd-13.1/contrib/cortex-strings/scripts/ |
| H A D | bench.py | 53 VARIANTS = sorted(HAS.keys()) 54 FUNCTIONS = sorted(ALIGNMENTS.keys()) 87 bytes = sorted(bytes) 124 for b in sorted(bytes): 171 for line in sorted(cache.values()):
|
| H A D | libplot.py | 36 return sorted(values, key=lambda x: '%-06d|%s' % (-prefer.find(x), x)) 38 return sorted(values)
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_repos/ |
| H A D | list.c | 186 apr_array_header_t *sorted; in do_list() local 198 sorted = apr_array_make(scratch_pool, apr_hash_count(entries), in do_list() 217 APR_ARRAY_PUSH(sorted, filtered_dirent_t) = filtered; in do_list() 220 svn_sort__array(sorted, compare_filtered_dirent); in do_list() 224 for (i = 0; i < sorted->nelts; ++i) in do_list() 232 filtered = &APR_ARRAY_IDX(sorted, i, filtered_dirent_t); in do_list()
|
| /freebsd-13.1/cddl/contrib/opensolaris/lib/pyzfs/common/ |
| H A D | allow.py | 111 for (nwho, perms) in sorted(d.items()): 117 (nwho[1:], ",".join(sorted(perms))) 127 s += "\t%s\n" % ",".join(sorted(self.create)) 261 for (name, note) in sorted(perms_subcmd.iteritems()): 264 for (name, note) in sorted(perms_other.iteritems()): 267 for (name, prop) in sorted(zfs.dataset.proptable.iteritems()): 333 for fs in sorted(p.keys(), reverse=True):
|
| /freebsd-13.1/usr.bin/gprof/ |
| H A D | printgprof.c | 413 arctype sorted; in sortchildren() local 424 sorted.arc_childlist = 0; in sortchildren() 432 for ( prevp = &sorted ; in sortchildren() 445 parentp -> children = sorted.arc_childlist; in sortchildren() 453 arctype sorted; in sortparents() local 464 sorted.arc_parentlist = 0; in sortparents() 472 for ( prevp = &sorted ; in sortparents() 485 childp -> parents = sorted.arc_parentlist; in sortparents()
|
| /freebsd-13.1/contrib/unbound/testdata/svcb.tdir/ |
| H A D | svcb.test-vectors-pf.zone | 39 ; sorted in presentation format, but are correctly sorted in the wire-format. 82 ; sorted in presentation format, but are correctly sorted in the wire-format.
|
| H A D | svcb.test-vectors-wf.zone | 77 ; sorted in presentation format, but are correctly sorted in the wire-format. 189 ; sorted in presentation format, but are correctly sorted in the wire-format.
|
| /freebsd-13.1/cddl/contrib/opensolaris/lib/libdtrace/common/ |
| H A D | dt_aggregate.c | 1534 dt_ahashent_t *h, **sorted; local 1560 if (sorted == NULL) 1564 sorted[i++] = h; 1583 h = sorted[i]; 1597 dt_free(dtp, sorted); 1961 if (sorted == NULL) 1970 sorted[i++] = h; 1995 bundle = (dt_ahashent_t ***)sorted; 1999 dt_aggregate_keycmp(&sorted[i], &sorted[i - 1]) == 0) 2024 nbundle[naggvars] = sorted[j]; [all …]
|
| /freebsd-13.1/usr.bin/col/ |
| H A D | col.c | 444 static CHAR *sorted; in flush_line() local 453 if ((sorted = realloc(sorted, in flush_line() 478 sorted[count[c->c_column]++] = *c; in flush_line() 479 c = sorted; in flush_line()
|
| /freebsd-13.1/contrib/subversion/ |
| H A D | gen-make.py | 73 sorted_targets = sorted(target_dict.keys(), key=str) 79 gen_keys = sorted(generator.__dict__.keys()) 110 items = sorted(gen_modules.items())
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_subr/ |
| H A D | sorts.c | 155 svn_boolean_t sorted; in svn_sort__hash() local 162 sorted = TRUE; in svn_sort__hash() 176 if (sorted) in svn_sort__hash() 178 sorted = (comparison_func(prev_item, item) < 0); in svn_sort__hash() 184 if (!sorted) in svn_sort__hash()
|
| H A D | mergeinfo.c | 294 svn_boolean_t sorted = FALSE; in combine_with_lastrange() local 306 sorted = (svn_sort_compare_ranges(&lastrange, in combine_with_lastrange() 314 sorted = TRUE; in combine_with_lastrange() 322 sorted = (svn_sort_compare_ranges(&lastrange, in combine_with_lastrange() 361 if (sorted) in combine_with_lastrange() 431 if (sorted) in combine_with_lastrange() 437 if (sorted) in combine_with_lastrange() 453 if (!sorted) in combine_with_lastrange() 1910 apr_array_header_t *sorted = in mergeinfo_to_stringbuf() local 1914 for (i = 0; i < sorted->nelts; i++) in mergeinfo_to_stringbuf() [all …]
|
| /freebsd-13.1/share/misc/ |
| H A D | organization.dot | 26 # Development teams go here alphabetically sorted by FreeBSD login name 42 # Admin teams go here alphabetically sorted 54 # Misc hats go here alphabetically sorted 62 # Keep the list sorted by the superior team entry.
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/spi/ |
| H A D | spi-sprd.txt | 11 - clocks: List of clock input name strings sorted in the same order 20 sorted in the same order as the dma-names property.
|
| /freebsd-13.1/sys/contrib/openzfs/tests/test-runner/bin/ |
| H A D | zts-report.py.in | 437 for test in sorted(expected): 465 for test in sorted(known.keys()): 474 for test in sorted(unexpected):
|
| H A D | test-runner.py.in | 344 lines = sorted(self.result.stdout + self.result.stderr, 622 for key in sorted(self.tests.keys()): 625 for key in sorted(self.testgroups.keys()): 659 self.testgroups[dirname].tests = sorted(filenames) 694 files = ' '.join(sorted(failed)) 766 for test in sorted(self.tests.keys()): 773 for testgroup in sorted(self.testgroups.keys()): 858 for test in sorted(self.tests.keys()): 860 for testgroup in sorted(self.testgroups.keys()): 960 for p in sorted(options.pathnames): [all …]
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_delta/ |
| H A D | path_driver.c | 168 apr_array_header_t *sorted = apr_array_copy(subpool, relpaths); in svn_delta_path_driver3() local 169 svn_sort__array(sorted, svn_sort_compare_paths); in svn_delta_path_driver3() 170 relpaths = sorted; in svn_delta_path_driver3()
|