Lines Matching refs:g
71 #define CLEAR(v) memset(v, 0, m->g->nstates)
75 #define ASSIGN(d, s) memcpy(d, s, m->g->nstates)
76 #define EQ(a, b) (memcmp(a, b, m->g->nstates) == 0)
78 #define STATESETUP(m, nv) { (m)->space = malloc((nv)*(m)->g->nstates); \
82 #define SETUP(v) ((v) = &m->space[m->vn++ * m->g->nstates])
120 register struct re_guts *g = preg->re_g; variable
127 if (preg->re_magic != MAGIC1 || g->magic != MAGIC2)
129 assert(!(g->iflags&BAD));
130 if (g->iflags&BAD) /* backstop for no-debug case */
134 if (g->nstates <= CHAR_BIT*sizeof(states1) && !(eflags®_LARGE))
135 return(smatcher(g, (unsigned char *)string, nmatch, pmatch, eflags));
137 return(lmatcher(g, (unsigned char *)string, nmatch, pmatch, eflags));