HomeSort by relevance Sort by last modified time
    Searched refs:logicals_allocated (Results 1 - 2 of 2) sorted by null

  /toolchain/binutils/binutils-2.27/gas/
dwarf2dbg.c 250 static unsigned int logicals_allocated = 0; variable
663 if (logicals_allocated == 0)
665 logicals_allocated = 4;
667 xcalloc (logicals_allocated, sizeof (struct logicals_entry));
669 if (logical > logicals_allocated)
671 unsigned int old = logicals_allocated;
673 logicals_allocated *= 2;
674 if (logical > logicals_allocated)
675 logicals_allocated = logical;
678 logicals_allocated * sizeof (struct logicals_entry))
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
dwarf.c 429 static unsigned int logicals_allocated = 0; variable
436 logicals_allocated = 0;
444 if (logicals_allocated == 0)
446 logicals_allocated = 4;
447 logicals_table = (SMR *) xmalloc (logicals_allocated * sizeof (SMR));
449 if (logicals_count >= logicals_allocated)
451 logicals_allocated *= 2;
453 xrealloc (logicals_table, logicals_allocated * sizeof (SMR));
    [all...]

Completed in 119 milliseconds