Lines Matching refs:strip
60 sop *strip; /* malloced strip */
61 sopno ssize; /* malloced strip size (allocated) */
62 sopno slen; /* malloced strip length (used) */
187 p->strip = (sop *)calloc(p->ssize, sizeof(sop));
189 if (p->strip == NULL) {
392 assert(OP(p->strip[p->pbegin[backrefnum]]) != OLPAREN);
393 assert(OP(p->strip[p->pend[backrefnum]]) != ORPAREN);
591 assert(OP(p->strip[p->pbegin[i]]) == OLPAREN);
592 assert(OP(p->strip[p->pend[i]]) == ORPAREN);
976 sopno start, /* operand from here to end of strip */
1323 (void) memmove((char *)(p->strip + p->slen),
1324 (char *)(p->strip + start), (size_t)len*sizeof(sop));
1330 - doemit - emit a strip operator
1346 /* deal with undersized strip */
1352 p->strip[p->slen++] = SOP(op, opnd);
1356 - doinsert - insert a sop into the strip
1372 s = p->strip[sn];
1385 memmove((char *)&p->strip[pos+1], (char *)&p->strip[pos],
1387 p->strip[pos] = s;
1401 p->strip[pos] = OP(p->strip[pos]) | value;
1405 - enlarge - enlarge the strip
1415 sp = (sop *)realloc(p->strip, size*sizeof(sop));
1420 p->strip = sp;
1425 - stripsnug - compact the strip
1431 g->strip = (sop *)realloc((char *)p->strip, p->slen * sizeof(sop));
1432 if (g->strip == NULL) {
1434 g->strip = p->strip;
1462 /* find the longest OCHAR sequence in strip */
1464 scan = g->strip + 1;
1536 scan = g->strip + 1;