Lines Matching refs:strip
64 sop *strip; /* malloced strip */ member
210 p->strip = (sop *)malloc(p->ssize * sizeof(sop)); in regcomp()
211 if (p->strip == NULL) { in regcomp()
217 free((char *)p->strip); in regcomp()
600 assert(p->strip[p->pbegin[i]] == OLPAREN); in p_simp_re()
601 assert(p->strip[p->pend[i]] == ORPAREN); in p_simp_re()
1355 (void) memcpy((char *)(p->strip + p->slen), in dupl()
1356 (char *)(p->strip + start), (size_t)len*sizeof(sop)); in dupl()
1386 p->strip[p->slen] = op; in doemit()
1409 s = p->strip[sn]; in doinsert()
1423 memmove((char *)&p->strip[pos+1], (char *)&p->strip[pos], in doinsert()
1427 p->strip[pos] = s; in doinsert()
1462 sp = realloc(p->strip, p->ssize * sizeof(sop)); in enlarge()
1465 p->strip = sp; in enlarge()
1484 g->strip = (sop *)realloc((char *)p->strip, in stripsnug()
1486 if (g->strip == NULL) { in stripsnug()
1488 g->strip = p->strip; in stripsnug()
1528 scans = g->strip + 1; in findmust()
1612 scan = g->strip + 1; in pluscount()