Home
last modified time | relevance | path

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

/linux/tools/perf/util/
H A Dmaps.c738 static int __maps__insert_sorted(struct maps *maps, unsigned int first_after_index, in __maps__insert_sorted() argument
748 assert(first_after_index == nr_maps || in __maps__insert_sorted()
749 map__end(new1) <= map__start(maps_by_address[first_after_index])); in __maps__insert_sorted()
751 assert(first_after_index == nr_maps || !new2 || in __maps__insert_sorted()
752 map__end(new2) <= map__start(maps_by_address[first_after_index])); in __maps__insert_sorted()
775 memmove(&maps_by_address[first_after_index+to_add], in __maps__insert_sorted()
776 &maps_by_address[first_after_index], in __maps__insert_sorted()
777 (nr_maps - first_after_index) * sizeof(new1)); in __maps__insert_sorted()
778 maps_by_address[first_after_index] = map__get(new1); in __maps__insert_sorted()
782 maps_by_address[first_after_index in __maps__insert_sorted()
[all...]