Home | History | Annotate | Download | only in make-3.81

Lines Matching refs:sl

2410   register struct stringlist *sl;
2476 sl = *(struct stringlist **) cs->value_ptr;
2477 if (sl == 0)
2479 sl = (struct stringlist *)
2481 sl->max = 5;
2482 sl->idx = 0;
2483 sl->list = (char **) xmalloc (5 * sizeof (char *));
2484 *(struct stringlist **) cs->value_ptr = sl;
2486 else if (sl->idx == sl->max - 1)
2488 sl->max += 5;
2489 sl->list = (char **)
2490 xrealloc ((char *) sl->list,
2491 sl->max * sizeof (char *));
2493 sl->list[sl->idx++] = optarg;
2494 sl->list[sl->idx] = 0;
2772 struct stringlist *sl = *(struct stringlist **) cs->value_ptr;
2773 if (sl != 0)
2778 register unsigned int i = sl->idx;
2780 ADD_FLAG (sl->list[i], strlen (sl->list[i]));