reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Support/regcomp.c
 1575 		g->strip = p->strip;
 1580 	g->strip = (sop *)realloc((char *)p->strip, p->slen * sizeof(sop));
 1581 	if (g->strip == NULL) {
 1583 		g->strip = p->strip;
 1613 	scan = g->strip + 1;
 1685 	scan = g->strip + 1;
lib/Support/regengine.inc
  316 		switch (OP(m->g->strip[es])) {
  319 			es += OPND(m->g->strip[es]);
  322 			while (OP(m->g->strip[es]) != O_CH)
  323 				es += OPND(m->g->strip[es]);
  329 		switch (OP(m->g->strip[ss])) {
  429 			esub = ss + OPND(m->g->strip[ss]) - 1;
  439 				esub += OPND(m->g->strip[esub]);
  440 				if (OP(m->g->strip[esub]) == OOR2)
  460 			i = OPND(m->g->strip[ss]);
  465 			i = OPND(m->g->strip[ss]);
  505 		switch (OP(s = m->g->strip[ss])) {
  561 			s = m->g->strip[ss];
  565 			} while (OP(s = m->g->strip[ss]) != O_CH);
  581 	s = m->g->strip[ss];
  598 		while (m->g->strip[ss] != SOP(O_BACK, i))
  634 			if (OP(m->g->strip[esub]) == O_CH)
  639 			esub += OPND(m->g->strip[esub]);
  640 			if (OP(m->g->strip[esub]) == OOR2)
  864 		s = g->strip[pc];
  936 						OP(s = g->strip[pc+look]) != O_CH;
  944 			if (OP(g->strip[pc+OPND(s)]) != O_CH) {
lib/Support/regfree.c
   63 	if (g->strip != NULL)
   64 		free((char *)g->strip);