Home | History | Annotate | Download | only in src

Lines Matching defs:table_size

121 /* TABLE_SIZE is the allocated size of both TABLE and CHECK.  We start
124 static int table_size = 32768;
147 int old_size = table_size;
149 while (table_size <= desired)
150 table_size *= 2;
154 old_size, table_size);
156 table = xnrealloc (table, table_size, sizeof *table);
157 conflict_table = xnrealloc (conflict_table, table_size,
159 check = xnrealloc (check, table_size, sizeof *check);
161 for (/* Nothing. */; old_size < table_size; ++old_size)
693 aver (j < table_size);
698 if (table_size <= loc)
767 table = xcalloc (table_size, sizeof *table);
768 conflict_table = xcalloc (table_size, sizeof *conflict_table);
769 check = xnmalloc (table_size, sizeof *check);
777 for (i = 0; i < table_size; i++)