Searched refs:logicals_allocated (Results 1 – 2 of 2) sorted by relevance
250 static unsigned int logicals_allocated = 0; variable667 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 …]
402 static unsigned int logicals_allocated = 0; variable409 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()