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.c56 struct sort_datum { struct
724 const struct sort_datum *d1 = (const struct sort_datum *)left; in btf_type_compare()
725 const struct sort_datum *d2 = (const struct sort_datum *)right; in btf_type_compare()
740 static struct sort_datum *sort_btf_c(const struct btf *btf) in sort_btf_c()
742 struct sort_datum *datums; in sort_btf_c()
746 datums = malloc(sizeof(struct sort_datum) * n); in sort_btf_c()
751 struct sort_datum *d = datums + i; in sort_btf_c()
761 qsort(datums, n, sizeof(struct sort_datum), btf_type_compare); in sort_btf_c()
769 struct sort_datum *datums = NULL; in dump_btf_c()