Lines Matching refs:g
24 struct re_guts *g = r->re_g; local
29 fprintf(d, "%ld states", (long)g->nstates);
30 fprintf(d, ", first %ld last %ld", (long)g->firststate,
31 (long)g->laststate);
32 if (g->iflags&USEBOL)
34 if (g->iflags&USEEOL)
36 if (g->iflags&BAD)
38 if (g->nsub > 0)
39 fprintf(d, ", nsub=%ld", (long)g->nsub);
40 if (g->must != NULL)
41 fprintf(d, ", must(%ld) `%*s'", (long)g->mlen, (int)g->mlen,
42 g->must);
43 if (g->backrefs)
45 if (g->nplus > 0)
46 fprintf(d, ", nplus %ld", (long)g->nplus);
48 s_print(g, d);
56 s_print(g, d) in s_print() argument
57 struct re_guts *g; in s_print()
81 if (OP(g->strip[0]) != OEND)
83 for (s = &g->strip[1]; !done; s++) {
114 cs = &g->sets[opnd];
116 for (i = 0; i < g->csetsize+1; i++) /* +1 flushes */
117 if (CHIN(cs, i) && i < g->csetsize) {