| /Linux-v5.4/tools/perf/util/ | 
| D | rb_resort.h | 76 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 …]
 
 | 
| /Linux-v5.4/drivers/md/bcache/ | 
| D | debug.c | 34 	struct bset *ondisk, *sorted, *inmemory;  in bch_btree_verify()  local44 	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()
 
 | 
| /Linux-v5.4/tools/lib/traceevent/Documentation/ | 
| D | libtraceevent-event_list.txt | 7 Get list of events, sorted by given criteria.28 sorted by the _sort_type_ criteria. The last element of the array is NULL.
 68 	/* Failed to get the events, sorted by ID */
 71 		/* walk through the list of the events, sorted by ID */
 79 	/* Failed to get the events, sorted by name */
 82 		/* walk through the list of the events, sorted by name */
 
 | 
| /Linux-v5.4/scripts/ | 
| D | checkkconfigsymbols.py | 160         for symbol in sorted(undefined_b):163                 files = sorted(undefined_b.get(symbol))
 167                 files = sorted(undefined_b.get(symbol) -
 180     for symbol in sorted(undefined):
 183         files = sorted(undefined.get(symbol))
 360     for symbol in sorted(referenced_symbols):
 
 | 
| D | diffconfig | 128     new = sorted(b.keys())
 | 
| /Linux-v5.4/drivers/staging/comedi/drivers/ni_routing/tools/ | 
| D | convert_csv_to_c.py | 41   D0 = sorted(D0.items(), key=lambda i: eval(i[0], comedi_h.__dict__, Locals))44     D1 = sorted(D1_D.items(), key=lambda i: eval(i[0], comedi_h.__dict__, Locals))
 90   D0 = sorted(D0.items(), key=lambda i: eval(i[0], comedi_h.__dict__, Locals))
 237     sheets = sorted(self.items(), key=lambda i : tuple(i[0].split('-')[::-1]) )
 428     sheets = sorted(self.items(), key=lambda i : i[0] )
 
 | 
| D | convert_py_to_csv.py | 24   fieldnames = [value_to_name[i] for i in sorted(D.keys())]32   S = sorted(S.items(), key = lambda src_destD : src_destD[0])
 
 | 
| D | make_blank_csv.py | 21   fieldnames = [sig for sig_val, sig in sorted(value_to_name.items())]
 | 
| /Linux-v5.4/tools/hv/ | 
| D | lsvmbus | 71 	chn_vp_mapping = sorted(91 vmbus_dev_list = sorted(vmbus_dev_list, key=lambda d: int(d.vmbus_id))
 
 | 
| /Linux-v5.4/Documentation/devicetree/bindings/spi/ | 
| D | spi-sprd.txt | 11 - clocks: List of clock input name strings sorted in the same order20 	sorted in the same order as the dma-names property.
 
 | 
| /Linux-v5.4/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/ | 
| D | Core.py | 35         for idx in sorted(flag_fields[event_name][field_name]['values']):52         for idx in sorted(symbolic_fields[event_name][field_name]['values']):
 
 | 
| /Linux-v5.4/drivers/gpu/drm/hisilicon/ | 
| D | Kconfig | 4 # Please keep this list sorted alphabetically
 | 
| /Linux-v5.4/tools/power/pm-graph/ | 
| D | sleepgraph.py | 404 		for name in sorted(out):525 		for i in sorted(self.tracefuncs):
 578 		for arg in sorted(args):
 609 		for i in sorted(args):
 623 		for name in sorted(self.kprobes):
 841 					for key in sorted(wifi):
 960 		for dev in sorted(props):
 999 		for dev in sorted(props):
 1259 		return sorted(self.dmesg, key=lambda k:self.dmesg[k]['order'])
 1262 		for phase in sorted(self.dmesg.keys()):
 [all …]
 
 | 
| /Linux-v5.4/Documentation/kbuild/ | 
| D | kconfig.rst | 195 	When searching, symbols are sorted thus:197 	  - first, exact matches, sorted alphabetically (an exact match
 199 	  - then, other matches, sorted alphabetically.
 206 	of which only ATH5K and ATH9K match exactly and so are sorted
 208 	sorted in alphabetical order.
 
 | 
| /Linux-v5.4/tools/power/cpupower/ | 
| D | ToDo | 1 ToDos sorted by priority:
 | 
| /Linux-v5.4/tools/perf/scripts/python/ | 
| D | syscall-counts.py | 63 	for id, val in sorted(syscalls.items(),
 | 
| D | sctop.py | 81 		for id, val in sorted(syscalls.items(),
 | 
| D | syscall-counts-by-pid.py | 73 			for id, val in sorted(syscalls[comm][pid].items(),
 | 
| D | failed-syscalls-by-pid.py | 78 …for ret, val in sorted(syscalls[comm][pid][id].items(), key = lambda kv: (kv[1], kv[0]), reverse =…
 | 
| D | mem-phys-addr.py | 49 	for mem_type, count in sorted(load_mem_type_cnt.most_common(), \
 | 
| /Linux-v5.4/Documentation/devicetree/bindings/remoteproc/ | 
| D | qcom,hexagon-v56.txt | 38 	Definition: List of clock input name strings sorted in the same47 	Definition: List of clock input name strings sorted in the same
 
 | 
| /Linux-v5.4/Documentation/devicetree/bindings/ufs/ | 
| D | cdns,ufshc.txt | 19 - clock-names	: List of clock input name strings sorted in the same
 | 
| /Linux-v5.4/Documentation/devicetree/bindings/phy/ | 
| D | phy-mtk-ufs.txt | 17 - clock-names        : List of clock input name strings sorted in the same
 | 
| /Linux-v5.4/Documentation/devicetree/bindings/arm/socionext/ | 
| D | uniphier.txt | 8   (sorted chronologically)
 | 
| /Linux-v5.4/Documentation/devicetree/bindings/display/msm/ | 
| D | dpu.txt | 39 - assigned-clock-rates: list of clock frequencies sorted in the same order as71 - assigned-clock-rates: list of clock frequencies sorted in the same order as
 
 |