Home | History | Annotate | Download | only in gas

Lines Matching refs:logicals_allocated

250 static unsigned int logicals_allocated = 0;
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));
685 (logicals_allocated - old) * sizeof (struct logicals_entry));