Home
last modified time | relevance | path

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

/linux-5.19.10/tools/perf/util/
Dannotate.c104 size_t new_nr_allocated; in arch__grow_instructions() local
109 new_nr_allocated = arch->nr_instructions_allocated + 128; in arch__grow_instructions()
110 new_instructions = realloc(arch->instructions, new_nr_allocated * sizeof(struct ins)); in arch__grow_instructions()
116 arch->nr_instructions_allocated = new_nr_allocated; in arch__grow_instructions()
120 new_nr_allocated = arch->nr_instructions + 128; in arch__grow_instructions()
121 new_instructions = calloc(new_nr_allocated, sizeof(struct ins)); in arch__grow_instructions()