Home
last modified time | relevance | path

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

/scripts/mod/
Dsymsearch.c26 unsigned int table_size; member
70 unsigned int table_size) in symsearch_populate() argument
76 if (table_size-- == 0) in symsearch_populate()
94 if (table_size != 0) in symsearch_populate()
113 static void symsearch_fixup(struct syminfo *table, unsigned int table_size) in symsearch_fixup() argument
116 for (unsigned int i = 1; i < table_size; i++) { in symsearch_fixup()
126 unsigned int table_size = symbol_count(elf); in symsearch_init() local
129 sizeof(struct syminfo) * table_size)); in symsearch_init()
130 elf->symsearch->table_size = table_size; in symsearch_init()
132 symsearch_populate(elf, elf->symsearch->table, table_size); in symsearch_init()
[all …]
/scripts/
Dkallsyms.c63 static unsigned int table_size, table_cnt; variable
277 if (table_cnt >= table_size) { in read_map()
278 table_size += 10000; in read_map()
279 table = realloc(table, sizeof(*table) * table_size); in read_map()