Home | History | Annotate | Download | only in src

Lines Matching refs:alloc

4473   size_t alloc;
4485 table->n = table->alloc = 0;
4495 if (table->n == table->alloc)
4497 if (table->alloc == 0)
4498 table->alloc = 128;
4500 table->alloc *= 2;
4502 table->alloc * sizeof table->table[0]);