Lines Matching refs:strip
88 sop *strip; /* malloced strip */ member
251 p->strip = (sop *)malloc(p->ssize * sizeof(sop)); in regcomp_internal()
253 if (p->strip == NULL) { in regcomp_internal()
510 assert(OP(p->strip[p->pbegin[i]]) == OLPAREN); in p_ere_exp()
511 assert(OP(p->strip[p->pend[i]]) == ORPAREN); in p_ere_exp()
930 assert(OP(p->strip[p->pbegin[i]]) == OLPAREN); in p_simp_re()
931 assert(OP(p->strip[p->pend[i]]) == ORPAREN); in p_simp_re()
1727 (void) memcpy((char *)(p->strip + p->slen),
1728 (char *)(p->strip + start), (size_t)len*sizeof(sop));
1757 p->strip[p->slen++] = SOP(op, opnd);
1778 s = p->strip[sn];
1791 memmove((char *)&p->strip[pos+1], (char *)&p->strip[pos],
1793 p->strip[pos] = s;
1808 p->strip[pos] = OP(p->strip[pos]) | value;
1823 sp = reallocarray(p->strip, size, sizeof(sop));
1828 p->strip = sp;
1841 g->strip = reallocarray((char *)p->strip, p->slen, sizeof(sop));
1842 if (g->strip == NULL) {
1844 g->strip = p->strip;
1889 scan = g->strip + 1;
2244 scan = g->strip + 1;