| /kernel/linux/linux-6.6/tools/perf/util/ |
| D | rb_resort.h | 15 * fields to be present in each of the entries in the new, sorted, rb_tree. 19 * the rb_tree used as a source for the entries to be sorted: 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); \ [all …]
|
| /kernel/linux/linux-5.10/tools/perf/util/ |
| D | rb_resort.h | 15 * fields to be present in each of the entries in the new, sorted, rb_tree. 19 * the rb_tree used as a source for the entries to be sorted: 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); \ [all …]
|
| /kernel/linux/linux-5.10/include/linux/ |
| D | util_macros.h | 19 * find_closest - locate the closest element in a sorted array 21 * @a: The array in which to look for the closest element. Must be sorted 30 * find_closest_descending - locate the closest element in a sorted array 32 * @a: The array in which to look for the closest element. Must be sorted 36 * Similar to find_closest() but 'a' is expected to be sorted in descending
|
| /kernel/linux/linux-6.6/drivers/md/bcache/ |
| D | debug.c | 34 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()
|
| /kernel/linux/linux-5.10/drivers/md/bcache/ |
| D | debug.c | 34 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()
|
| /kernel/linux/linux-5.10/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 */
|
| /kernel/linux/linux-6.6/include/linux/ |
| D | util_macros.h | 8 * find_closest - locate the closest element in a sorted array 10 * @a: The array in which to look for the closest element. Must be sorted 38 * find_closest_descending - locate the closest element in a sorted array 40 * @a: The array in which to look for the closest element. Must be sorted 44 * Similar to find_closest() but 'a' is expected to be sorted in descending
|
| /kernel/linux/linux-6.6/Documentation/admin-guide/mm/damon/ |
| D | lru_sort.rst | 16 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.
|
| /kernel/linux/linux-5.10/kernel/kcsan/ |
| D | debugfs.c | 42 bool sorted; /* if elements are sorted */ member 48 .sorted = false, 113 if (!report_filterlist.sorted) { in kcsan_skip_report_debugfs() 116 report_filterlist.sorted = true; in kcsan_skip_report_debugfs() 181 report_filterlist.sorted = false; in insert_report_filterlist()
|
| /kernel/linux/linux-5.10/net/ceph/ |
| D | striper.c | 48 * Return the last extent with given objno (@object_extents is sorted 93 * Map a file extent to a sorted list of object extents. 104 * To keep @object_extents sorted, successive calls to this function 106 * are mapped using the same @object_extents must be sorted). 160 WARN(1, "%s: object_extents list not sorted!\n", in ceph_file_to_extents() 205 * Reverse map an object extent to a sorted list of file extents.
|
| /kernel/linux/linux-6.6/net/ceph/ |
| D | striper.c | 48 * Return the last extent with given objno (@object_extents is sorted 93 * Map a file extent to a sorted list of object extents. 104 * To keep @object_extents sorted, successive calls to this function 106 * are mapped using the same @object_extents must be sorted). 160 WARN(1, "%s: object_extents list not sorted!\n", in ceph_file_to_extents() 205 * Reverse map an object extent to a sorted list of file extents.
|
| /kernel/linux/linux-6.6/kernel/kcsan/ |
| D | debugfs.c | 47 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()
|
| /kernel/linux/linux-5.10/tools/vm/ |
| D | slabinfo-gnuplot.sh | 14 # and generate graphs (totals, slabs sorted by size, slabs sorted 152 `cat "$in" | grep -A "$lines" 'Slabs sorted by loss' |\ 161 `cat "$in" | grep -A "$lines" 'Slabs sorted by size' |\
|
| /kernel/linux/linux-6.6/tools/mm/ |
| D | slabinfo-gnuplot.sh | 14 # and generate graphs (totals, slabs sorted by size, slabs sorted 152 `cat "$in" | grep -A "$lines" 'Slabs sorted by loss' |\ 161 `cat "$in" | grep -A "$lines" 'Slabs sorted by size' |\
|
| /kernel/linux/linux-6.6/lib/ |
| D | extable.c | 46 * The exception table needs to be sorted so that the binary 72 * If the exception table is sorted, any referring to the module init 109 * already sorted.
|
| /kernel/linux/linux-5.10/lib/ |
| D | extable.c | 47 * The exception table needs to be sorted so that the binary 73 * If the exception table is sorted, any referring to the module init 113 * already sorted.
|
| /kernel/linux/linux-6.6/drivers/media/pci/ |
| D | Makefile | 6 # Please keep it alphabetically sorted by directory 22 # Please keep it alphabetically sorted by Kconfig name
|
| /kernel/linux/linux-6.6/drivers/media/platform/ |
| D | Makefile | 6 # Place here, alphabetically sorted by directory 33 # Please keep it alphabetically sorted by Kconfig name
|
| /kernel/linux/linux-6.6/drivers/media/usb/ |
| D | Makefile | 6 # DVB USB-only drivers. Please keep it alphabetically sorted by directory name 16 # Please keep it alphabetically sorted by Kconfig name
|
| /kernel/linux/linux-6.6/drivers/gpu/drm/i915/gt/uc/ |
| D | selftest_guc_multi_lrc.c | 15 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()
|
| /kernel/linux/linux-6.6/Documentation/devicetree/bindings/spi/ |
| 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.
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/spi/ |
| 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.
|
| /kernel/linux/linux-5.10/arch/sh/kernel/ |
| D | unwinder.c | 43 * "unwinder_list" is a linked-list of all available unwinders, sorted 81 * Enqueue the stack unwinder sorted by rating. 106 * Install the new stack unwinder on the unwinder list, which is sorted
|
| /kernel/linux/linux-6.6/arch/sh/kernel/ |
| D | unwinder.c | 43 * "unwinder_list" is a linked-list of all available unwinders, sorted 81 * Enqueue the stack unwinder sorted by rating. 106 * Install the new stack unwinder on the unwinder list, which is sorted
|
| /kernel/linux/linux-6.6/drivers/comedi/drivers/ni_routing/tools/ |
| D | convert_py_to_csv.py | 23 fieldnames = [value_to_name[i] for i in sorted(D.keys())] 31 S = sorted(S.items(), key = lambda src_destD : src_destD[0])
|