Home | History | Annotate | Download | only in config

Lines Matching defs:n_max

7433   size_t n_max;
7441 size_t n_max;
7449 size_t n_max;
7561 if (idx->n_entries == idx->n_max)
7563 idx->n_max = (idx->n_entries + 1) * 2;
7565 sizeof (*idx->entry) * idx->n_max);
7800 if (tc->n_entries == tc->n_max)
7802 tc->n_max = (tc->n_max + 1) * 2;
7803 tc->entry = xrealloc (tc->entry, sizeof (*tc->entry) * tc->n_max);
7819 if (idx->n_entries == idx->n_max)
7821 idx->n_max = (idx->n_max + 1) * 2;
7823 sizeof (*idx->entry) * idx->n_max);
7831 tc->n_max = 0;