Home | History | Annotate | Download | only in lint1

Lines Matching refs:s_next

439 		*mem = (*mem)->s_next;
458 mem != NULL; mem = mem->s_next) {
875 * Concatenate two lists of symbols by s_next. Used by declarations of
885 while (l->s_next != NULL)
886 l = l->s_next;
887 l->s_next = l2;
1358 for (sym_t *arg = args; arg != NULL; arg = arg->s_next) {
1360 !(arg == args && arg->s_next == NULL)) {
1401 for (const sym_t *p = params.first; p != NULL; p = p->s_next)
1430 * list of the parameters (concatenated by s_next) is stored in
1735 mem != NULL; mem = mem->s_next) {
1906 for (const sym_t *p = old_params; p != NULL; p = p->s_next)
1909 for (const sym_t *p = proto_params; p != NULL; p = p->s_next)
1930 arg = arg->s_next;
1931 parg = parg->s_next;
2227 for (; p1 != NULL && p2 != NULL; p1 = p1->s_next, p2 = p2->s_next) {
2245 for (const sym_t *p = tp->u.params; p != NULL; p = p->s_next) {
2466 for (const sym_t *p = dcs->d_func_params; p != NULL; p = p->s_next)
2497 param = param->s_next;
2553 for (sym_t *arg = old_params; arg != NULL; arg = arg->s_next) {
2573 for (const sym_t *p = proto_params; p != NULL; p = p->s_next)
2575 for (const sym_t *p = old_params; p != NULL; p = p->s_next)
2586 proto_param = proto_param->s_next;
2587 old_param = old_param->s_next;