Home
last modified time | relevance | path

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

/linux/tools/perf/util/
H A Dmaps.c437 unsigned int nr_allocate = RC_CHK_ACCESS(maps)->nr_maps_allocated; in __maps__insert() local
439 if (nr_maps + 1 > nr_allocate) { in __maps__insert()
440 nr_allocate = !nr_allocate ? 32 : nr_allocate * 2; in __maps__insert()
442 maps_by_address = realloc(maps_by_address, nr_allocate * sizeof(new)); in __maps__insert()
448 maps_by_name = realloc(maps_by_name, nr_allocate * sizeof(new)); in __maps__insert()
458 RC_CHK_ACCESS(maps)->nr_maps_allocated = nr_allocate; in __maps__insert()
744 unsigned int nr_allocate = RC_CHK_ACCESS(maps)->nr_maps_allocated; in __maps__insert_sorted() local
754 if (nr_maps + to_add > nr_allocate) { in __maps__insert_sorted()
[all...]