Searched refs:sort (Results 276 - 300 of 318) sorted by relevance

<<111213

/linux-master/kernel/bpf/
H A Dbtf.c18 #include <linux/sort.h>
3938 * proper way to do it would be to topologically sort all BTF
5273 sort(secs, ARRAY_SIZE(btf_sec_info_offset),
5413 sort(&aof.set.ids, aof.set.cnt, sizeof(aof.set.ids[0]), btf_id_cmp_func, NULL);
8021 /* We don't need to allocate, concatenate, and sort module sets, because
8067 sort(set->pairs, set->cnt, sizeof(set->pairs[0]), btf_id_cmp_func, NULL);
8339 sort(tab->dtors, tab->cnt, sizeof(tab->dtors[0]), btf_id_cmp_func, NULL);
/linux-master/drivers/media/pci/saa7134/
H A Dsaa7134-video.c18 #include <linux/sort.h>
/linux-master/drivers/misc/cxl/
H A Dpci.c12 #include <linux/sort.h>
/linux-master/fs/ocfs2/
H A Dxattr.c24 #include <linux/sort.h>
4175 * Note: we need to sort the entries since they are not saved in order
4234 sort(target + offset, count, sizeof(struct ocfs2_xattr_entry),
4424 * sort all the entries by their offset.
4428 sort(entries, le16_to_cpu(xh->xh_count),
4469 /* sort the entries by their name_hash. */
4470 sort(entries, le16_to_cpu(xh->xh_count),
H A Ddir.c28 #include <linux/sort.h>
3493 * It is not strictly necessary to sort by minor
3768 * This block is changing anyway, so we can sort it in place.
3770 sort(dx_leaf->dl_list.de_entries, num_used,
/linux-master/tools/testing/selftests/bpf/
H A Dtest_offload.py386 ifnames.sort()
/linux-master/fs/bcachefs/
H A Dsuper-io.c25 #include <linux/sort.h>
H A Dalloc_background.c30 #include <linux/sort.h>
/linux-master/drivers/gpu/drm/i915/selftests/
H A Di915_request.c27 #include <linux/sort.h>
1942 sort(a, TF_COUNT, sizeof(*a), cmp_u32, NULL);
/linux-master/drivers/usb/gadget/function/
H A Duvc_configfs.c15 #include <linux/sort.h>
2095 sort(ch->dw_frame_interval, n, sizeof(*ch->dw_frame_interval),
/linux-master/fs/ceph/
H A Dinode.c15 #include <linux/sort.h>
499 sort(fragtree->splits, nsplits, sizeof(fragtree->splits[0]),
/linux-master/drivers/md/
H A Ddm-thin.c23 #include <linux/sort.h>
2276 sort(pool->cell_sort_array, count, sizeof(cell), cmp_cells, NULL);
3043 *error = "Error allocating cell sort array";
/linux-master/drivers/perf/
H A Darm-cmn.c19 #include <linux/sort.h>
2085 sort(cmn->dns, cmn->num_dns, sizeof(cmn->dns[0]), arm_cmn_node_cmp, NULL);
/linux-master/mm/
H A Dswapfile.c41 #include <linux/sort.h>
1435 * nr_swapfiles isn't absolutely correct, but the overhead of sort() is
1439 sort(entries, n, sizeof(entries[0]), swp_entry_cmp, NULL);
H A Dmemcontrol.c53 #include <linux/sort.h>
4294 /* Universal VM events cgroup1 shows, original sort order */
4545 sort(new->entries, size, sizeof(*new->entries),
/linux-master/tools/perf/util/
H A Dsort.c10 #include "sort.h"
107 /* --sort pid */
143 /* --sort simd */
189 /* --sort comm */
230 /* --sort dso */
294 /* --sort symbol */
422 /* --sort symoff */
468 /* --sort srcline */
527 /* --sort srcline_from */
580 /* --sort srcline_t
[all...]
/linux-master/drivers/cxl/core/
H A Dregion.c10 #include <linux/sort.h>
1782 sort(p->targets, p->nr_targets, sizeof(p->targets[0]),
1785 dev_dbg(&cxlr->dev, "region sort %s\n", rc ? "failed" : "successful");
1874 * sort the devices into their relative region decode position.
/linux-master/fs/nfs/
H A Dpnfs.c33 #include <linux/sort.h>
176 sort(fsinfo->layouttype, fsinfo->nlayouttypes,
/linux-master/arch/x86/net/
H A Dbpf_jit_comp.c13 #include <linux/sort.h>
3142 sort(funcs, num_funcs, sizeof(funcs[0]), cmp_ips, NULL);
/linux-master/drivers/net/wireless/rsi/
H A Drsi_91x_mgmt.c1404 sort(selected_rates, jj, sizeof(u16), &rsi_compare, NULL);
/linux-master/fs/btrfs/
H A Dsuper.c1528 /* Used to sort the devices by max_avail(descending sort) */
1542 * sort the devices by max_avail, in which max free extent size of each device
1549 sort(devices, nr_devices, sizeof(struct btrfs_device_info),
/linux-master/drivers/net/ethernet/rocker/
H A Drocker_main.c15 #include <linux/sort.h>
/linux-master/drivers/vhost/
H A Dvhost.c26 #include <linux/sort.h>
/linux-master/sound/pci/hda/
H A Dhda_generic.c13 #include <linux/sort.h>
4879 /* sort the am_entry in the order of attr so that the pin with a
4882 sort(spec->am_entry, num_pins, sizeof(spec->am_entry[0]),
/linux-master/drivers/gpu/drm/display/
H A Ddrm_dp_mst_topology.c36 #include <linux/sort.h>
1611 /* First, sort the list so that it goes from oldest to newest
1614 sort(history->entries, history->len, sizeof(*history->entries),

Completed in 455 milliseconds

<<111213