Lines Matching refs:strip
60 sop *strip; /* malloced strip */ member
187 p->strip = (sop *)calloc(p->ssize, sizeof(sop)); in llvm_regcomp()
189 if (p->strip == NULL) { in llvm_regcomp()
392 assert(OP(p->strip[p->pbegin[backrefnum]]) != OLPAREN); in p_ere_exp()
393 assert(OP(p->strip[p->pend[backrefnum]]) != ORPAREN); in p_ere_exp()
591 assert(OP(p->strip[p->pbegin[i]]) == OLPAREN); in p_simp_re()
592 assert(OP(p->strip[p->pend[i]]) == ORPAREN); in p_simp_re()
1323 (void) memmove((char *)(p->strip + p->slen), in dupl()
1324 (char *)(p->strip + start), (size_t)len*sizeof(sop)); in dupl()
1352 p->strip[p->slen++] = SOP(op, opnd); in doemit()
1372 s = p->strip[sn]; in doinsert()
1385 memmove((char *)&p->strip[pos+1], (char *)&p->strip[pos], in doinsert()
1387 p->strip[pos] = s; in doinsert()
1401 p->strip[pos] = OP(p->strip[pos]) | value; in dofwd()
1415 sp = (sop *)realloc(p->strip, size*sizeof(sop)); in enlarge()
1420 p->strip = sp; in enlarge()
1431 g->strip = (sop *)realloc((char *)p->strip, p->slen * sizeof(sop)); in stripsnug()
1432 if (g->strip == NULL) { in stripsnug()
1434 g->strip = p->strip; in stripsnug()
1464 scan = g->strip + 1; in findmust()
1536 scan = g->strip + 1; in pluscount()