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

  /toolchain/binutils/binutils-2.25/gas/
dwarf2dbg.c 250 static unsigned int logicals_allocated = 0; variable
668 if (logicals_allocated == 0)
670 logicals_allocated = 4;
672 xcalloc (logicals_allocated, sizeof (struct logicals_entry));
674 if (logical > logicals_allocated)
676 unsigned int old = logicals_allocated;
678 logicals_allocated *= 2;
679 if (logical > logicals_allocated)
680 logicals_allocated = logical;
683 logicals_allocated * sizeof (struct logicals_entry))
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
dwarf.c 402 static unsigned int logicals_allocated = 0; variable
409 logicals_allocated = 0;
417 if (logicals_allocated == 0)
419 logicals_allocated = 4;
420 logicals_table = (SMR *) xmalloc (logicals_allocated * sizeof (SMR));
422 if (logicals_count >= logicals_allocated)
424 logicals_allocated *= 2;
426 xrealloc (logicals_table, logicals_allocated * sizeof (SMR));
    [all...]

Completed in 242 milliseconds