Lines Matching defs:table_size
123 /* TABLE_SIZE is the allocated size of both TABLE and CHECK. We start
126 static int table_size = 32768;
149 int old_size = table_size;
151 while (table_size <= desired)
152 table_size *= 2;
156 old_size, table_size);
158 table = xnrealloc (table, table_size, sizeof *table);
159 conflict_table = xnrealloc (conflict_table, table_size,
161 check = xnrealloc (check, table_size, sizeof *check);
163 for (/* Nothing. */; old_size < table_size; ++old_size)
683 assert (j < table_size);
688 if (table_size <= loc)
757 table = xcalloc (table_size, sizeof *table);
758 conflict_table = xcalloc (table_size, sizeof *conflict_table);
759 check = xnmalloc (table_size, sizeof *check);
767 for (i = 0; i < table_size; i++)