Home
last modified time | relevance | path

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

/linux/tools/bpf/bpftool/
H A Dbtf.c55 struct sort_datum { struct
729 const struct sort_datum *d1 = (const struct sort_datum *)left; in btf_type_compare()
730 const struct sort_datum *d2 = (const struct sort_datum *)right; in btf_type_compare()
745 static struct sort_datum *sort_btf_c(const struct btf *btf) in sort_btf_c()
747 struct sort_datum *datums; in sort_btf_c()
751 datums = malloc(sizeof(struct sort_datum) * n); in sort_btf_c()
756 struct sort_datum *d = datums + i; in sort_btf_c()
766 qsort(datums, n, sizeof(struct sort_datum), btf_type_compare); in sort_btf_c()
774 struct sort_datum *datums = NULL; in dump_btf_c()