Home
last modified time | relevance | path

Searched refs:sorted (Results 1 – 25 of 515) sorted by relevance

12345678910>>...21

/openbmc/linux/tools/perf/util/
H A Drb_resort.h76 static void __name##_sorted__insert(struct __name##_sorted *sorted, \
79 struct rb_node **p = &sorted->entries.rb_node, *parent = NULL; \
88 rb_insert_color(sorted_nd, &sorted->entries); \
91 static void __name##_sorted__sort(struct __name##_sorted *sorted, \
97 struct __name##_sorted_entry *snd = &sorted->nd[i++]; \
99 __name##_sorted__insert(sorted, &snd->rb_node); \
106 struct __name##_sorted *sorted; \
107 sorted = malloc(sizeof(*sorted) + sizeof(sorted->nd[0]) * nr_entries); \
108 if (sorted) { \
109 sorted->entries = RB_ROOT; \
[all …]
/openbmc/linux/drivers/md/bcache/
H A Ddebug.c34 struct bset *ondisk, *sorted, *inmemory; in bch_btree_verify() local
44 sorted = b->c->verify_data->keys.set->data; in bch_btree_verify()
57 bch_bio_map(bio, sorted); in bch_btree_verify()
62 memcpy(ondisk, sorted, KEY_SIZE(&v->key) << 9); in bch_btree_verify()
65 sorted = v->keys.set->data; in bch_btree_verify()
67 if (inmemory->keys != sorted->keys || in bch_btree_verify()
69 sorted->start, in bch_btree_verify()
81 bch_dump_bset(&v->keys, sorted, 0); in bch_btree_verify()
95 if (inmemory->d[j] != sorted->d[j]) in bch_btree_verify()
/openbmc/openbmc/poky/scripts/contrib/
H A Dlist-packageconfig-flags.py39 for pn in sorted(pkg_pn):
69 pkg_dict[pkgname] = sorted(pkgconfigflags.keys())
97 for pkgname in sorted(pkg_dict):
109 for flag in sorted(flag_dict):
110 print('%-*s%s' % (flag_len, flag, ' '.join(sorted(flag_dict[flag]))))
H A Dimage-manifest53 return sorted(pkglist)
87 return sorted(recipelist)
95 for recipe in sorted(recipelist):
234 for ap in sorted(assume_provided):
250 for p in sorted(packages):
258 for p in sorted(packages):
355 for pn in sorted(recipelist):
381 …rvalues[pn]['inherits'] = sorted({os.path.splitext(os.path.basename(r))[0] for r in lr if r not in…
/openbmc/openbmc/meta-arm/scripts/
H A Dlayer-overview.py29 machines = sorted(p for p in layer.glob("conf/machine/*.conf"))
36 recipes = sorted((p for p in layer.glob("recipes-*/*/*.bb")), key=lambda p:p.name)
63 sublayers = sorted(p for p in base.glob("meta-*") if is_layer(p))
/openbmc/openbmc/poky/scripts/
H A Dbuildstats-diff46 subpaths = sorted(glob.glob(path + '/*'))
82 for name, val in sorted(diff.new.items()):
88 for name, val in sorted(diff.dropped.items()):
95 for name, val in sorted(diff.rchanged.items()):
103 for name, val in sorted(diff.vchanged.items()):
111 for name, val in sorted(diff.echanged.items()):
176 tasks_diff = sorted(tasks_diff, key=attrgetter(field), reverse=reverse)
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dpkgdata.py81 pkglist = sorted(result.output.split())
89 pkglist = sorted(result.output.split())
97 pkglist = sorted(result.output.split())
101 pkglist = sorted(result.output.split())
105 pkglist = sorted(result.output.split())
109 pkglist = sorted(result.output.split())
209 self.assertEqual(sorted(result.output.split()), sorted(desiredresult))
/openbmc/qemu/scripts/
H A Dmeson-buildoptions.py117 choices = "/".join(sorted(opt["choices"]))
158 return sorted(json, key=lambda x: x["name"])
188 for opt in sorted(options, key=cli_help_key):
213 for opt in sorted(feature_opts, key=cli_option):
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dsiggen.py49 return dict(_set_object=list(sorted(obj)))
386 for dep in sorted(self.runtaskdeps[tid]):
389 for (f, cs) in sorted(self.file_checksum_values[tid], key=clean_checksum_file_path):
449 data['runtaskdeps'] = [dep[0] for dep in sorted(self.runtaskdeps[tid])]
451 for f,cs in sorted(self.file_checksum_values[tid], key=clean_checksum_file_path):
1043 …ependencies changed{color_default} from:\n%s\nto:\n%s") % (sorted(a_data['taskdeps']), sorted(b_da…
1050 for dep in sorted(changed):
1055 for dep in sorted(added):
1058 for dep in sorted(removed):
1064 for dep in sorted(changed):
[all …]
H A Ddata.py90 for key in sorted(todolist):
183 keys = sorted((key for key in d.keys() if not key.startswith("__")), key=isfunc)
186 for key in sorted(keys):
210 for key in sorted(keys):
222 for dep in sorted(deps):
269 for k in sorted(contains):
273 for item in sorted(contains[k]):
283 for r in sorted(removes):
430 alldeps = sorted(seen)
/openbmc/phosphor-led-manager/manager/
H A Dmanager.cpp43 std::set<const Layout::GroupLayout*, Layout::CompareGroupLayout> sorted) in getNewMapWithGroupPriorities() argument
49 for (const auto* it : sorted) in getNewMapWithGroupPriorities()
82 std::set<const Layout::GroupLayout*, Layout::CompareGroupLayout> sorted; in getNewMap() local
88 sorted.insert(it); in getNewMap()
98 newState = getNewMapWithGroupPriorities(sorted); in getNewMap()
/openbmc/openbmc/poky/scripts/lib/checklayer/cases/
H A Dbsp.py133 for tune in sorted(tunes.keys()):
151 for task in sorted(tasks.keys(), key=task_key):
170 next_line_key = (pn, sorted(signatures.values()))
174 … signature in sorted(signatures.keys(), key=lambda s: signatures[s])])
/openbmc/openbmc/poky/bitbake/lib/bb/tests/
H A Dcodeparser.py449 self.assertEqual(sorted(values.splitlines()),
450 sorted([expr,
468 self.assertEqual(sorted(values.splitlines()), sorted([varval]))
475 self.assertEqual(sorted(values.splitlines()), sorted([varval]))
494 self.assertEqual(sorted(values.splitlines()),
495 sorted([
/openbmc/linux/kernel/kcsan/
H A Ddebugfs.c47 bool sorted; /* if elements are sorted */ member
112 if (!report_filterlist.sorted) { in kcsan_skip_report_debugfs()
115 report_filterlist.sorted = true; in kcsan_skip_report_debugfs()
184 report_filterlist.sorted = false; in insert_report_filterlist()
/openbmc/openbmc/poky/meta/recipes-core/ovmf/ovmf/
H A D0004-reproducible.patch100 + self.ResultFileList = sorted([str(T.Target) for T in MyAgo.CodaTargetList])
109 + for Cmd in sorted(self.GenFfsList):
118 + for SecOutputFile, SecDepsFile, SecCmd in sorted(self.FfsOutputFileList):
148 + for Type in sorted(self._AutoGenObject.Targets):
151 + for T in sorted(self._AutoGenObject.Targets[Type]):
164 + AsBuiltInfDict['binary_item'] = sorted(AsBuiltInfDict['binary_item'])
174 + SaveFileOnChange(self.TimeStampPath, "\n".join(sorted(FileSet)), False)
/openbmc/openbmc/meta-openembedded/meta-multimedia/conf/include/
H A Dptest-packagelists-meta-multimedia.inc2 # Lists of the ptest in meta-multimedia, sorted into two sets by the time they take
3 # Please keep these sorted in alphabetical order
/openbmc/openbmc/meta-openembedded/meta-filesystems/conf/include/
H A Dptest-packagelists-meta-filesystems.inc2 # Lists of the ptest in meta-filesystems, sorted into two sets by the time they take
3 # Please keep these sorted in alphabetical order
/openbmc/sdbusplus/tools/sdbusplus/
H A Dinterface.py57 return sorted(set(includes))
69 return sorted(set(includes))
92 return sorted(
/openbmc/openbmc-build-scripts/tools/
H A Downers141 for o in sorted(matcher.owners):
144 for r in sorted(matcher.reviewers):
162 for o in sorted(matcher.owners):
164 for r in sorted(matcher.reviewers):
/openbmc/linux/Documentation/admin-guide/mm/damon/
H A Dlru_sort.rst16 systems, LRU lists are normally not proactively sorted but partially and
17 reactively sorted for special events including specific user requests, system
225 Number of hot memory regions that tried to be LRU-sorted.
230 Total bytes of hot memory regions that tried to be LRU-sorted.
235 Number of hot memory regions that successfully be LRU-sorted.
240 Total bytes of hot memory regions that successfully be LRU-sorted.
250 Number of cold memory regions that tried to be LRU-sorted.
255 Total bytes of cold memory regions that tried to be LRU-sorted.
260 Number of cold memory regions that successfully be LRU-sorted.
265 Total bytes of cold memory regions that successfully be LRU-sorted.
/openbmc/openbmc/poky/meta/recipes-core/glibc/
H A Dglibc-ld.inc13 infos['ldconfig'] = ','.join(sorted(infos['ldconfig']))
14 infos['lddrewrite'] = ' '.join(sorted(infos['lddrewrite']))
/openbmc/linux/drivers/gpu/drm/i915/gt/uc/
H A Dselftest_guc_multi_lrc.c15 struct intel_engine_cs *sorted[MAX_ENGINE_INSTANCE + 1]; in logical_sort() local
21 sorted[i] = engines[j]; in logical_sort()
26 memcpy(*engines, *sorted, in logical_sort()
/openbmc/bmcweb/test/include/
H A Dhuman_sort_test.cpp51 std::set<std::string, AlphanumLess<std::string>> sorted{ in TEST() local
53 EXPECT_THAT(sorted, ElementsAreArray({"Alpha 2", "Alpha 10"})); in TEST()
/openbmc/linux/scripts/
H A Dcheckkconfigsymbols.py162 for symbol in sorted(undefined_b):
165 files = sorted(undefined_b.get(symbol))
169 files = sorted(undefined_b.get(symbol) -
182 for symbol in sorted(undefined):
185 files = sorted(undefined.get(symbol))
362 for symbol in sorted(referenced_symbols):
/openbmc/openbmc/meta-openembedded/meta-networking/conf/include/
H A Dptest-packagelists-meta-networking.inc2 # Lists of the ptest in meta-networking, sorted into two sets by the time they take
3 # Please keep these sorted in alphabetical order

12345678910>>...21