Lines Matching refs:i

74 	register size_t i;  local
152 for (i = 1; i <= m->g->nsub; i++)
153 m->pmatch[i].rm_so = m->pmatch[i].rm_eo = -1;
184 for (i = 1; i <= m->g->nsub; i++) {
185 assert(m->pmatch[i].rm_so == -1);
186 assert(m->pmatch[i].rm_eo == -1);
209 for (i = 1; i < nmatch; i++)
210 if (i <= m->g->nsub)
211 pmatch[i] = m->pmatch[i];
213 pmatch[i].rm_so = -1;
214 pmatch[i].rm_eo = -1;
239 register int i; local
395 i = OPND(m->g->strip[ss]);
396 assert(0 < i && i <= m->g->nsub);
397 m->pmatch[i].rm_so = sp - m->offp;
400 i = OPND(m->g->strip[ss]);
401 assert(0 < i && i <= m->g->nsub);
402 m->pmatch[i].rm_eo = sp - m->offp;
428 register int i; local
526 i = OPND(s);
527 assert(0 < i && i <= m->g->nsub);
528 if (m->pmatch[i].rm_eo == -1)
530 assert(m->pmatch[i].rm_so != -1);
531 len = m->pmatch[i].rm_eo - m->pmatch[i].rm_so;
535 ssp = m->offp + m->pmatch[i].rm_so;
538 while (m->g->strip[ss] != SOP(O_BACK, i))
587 i = OPND(s);
588 assert(0 < i && i <= m->g->nsub);
589 offsave = m->pmatch[i].rm_so;
590 m->pmatch[i].rm_so = sp - m->offp;
594 m->pmatch[i].rm_so = offsave;
598 i = OPND(s);
599 assert(0 < i && i <= m->g->nsub);
600 offsave = m->pmatch[i].rm_eo;
601 m->pmatch[i].rm_eo = sp - m->offp;
605 m->pmatch[i].rm_eo = offsave;
639 register int i; local
657 i = 0;
661 i = m->g->nbol;
666 i += m->g->neol;
668 if (i != 0) {
669 for (; i > 0; i--)
730 register int i; local
746 i = 0;
750 i = m->g->nbol;
755 i += m->g->neol;
757 if (i != 0) {
758 for (; i > 0; i--)
825 register long i; local
873 i = ISSETBACK(aft, OPND(s));
875 if (!i && ISSETBACK(aft, OPND(s))) {
942 register int i; local
951 for (i = 0; i < g->nstates; i++)
952 if (ISSET(st, i)) {
953 fprintf(d, "%s%d", (first) ? "\t" : ", ", i);