Home
last modified time | relevance | path

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

/toolchain/binutils/binutils-2.25/gas/
Ddwarf2dbg.c250 static unsigned int logicals_allocated = 0; variable
667 if (logicals_allocated == 0) in make_logical()
669 logicals_allocated = 4; in make_logical()
671 xcalloc (logicals_allocated, sizeof (struct logicals_entry)); in make_logical()
673 if (logical > logicals_allocated) in make_logical()
675 unsigned int old = logicals_allocated; in make_logical()
677 logicals_allocated *= 2; in make_logical()
678 if (logical > logicals_allocated) in make_logical()
679 logicals_allocated = logical; in make_logical()
682 logicals_allocated * sizeof (struct logicals_entry)); in make_logical()
[all …]
/toolchain/binutils/binutils-2.25/binutils/
Ddwarf.c402 static unsigned int logicals_allocated = 0; variable
409 logicals_allocated = 0; in free_logicals()
417 if (logicals_allocated == 0) in append_logical()
419 logicals_allocated = 4; in append_logical()
420 logicals_table = (SMR *) xmalloc (logicals_allocated * sizeof (SMR)); in append_logical()
422 if (logicals_count >= logicals_allocated) in append_logical()
424 logicals_allocated *= 2; in append_logical()
426 xrealloc (logicals_table, logicals_allocated * sizeof (SMR)); in append_logical()