Home | History | Annotate | Download | only in Support

Lines Matching refs:strip

68 	sop *strip;		/* malloced strip */
69 sopno ssize; /* malloced strip size (allocated) */
70 sopno slen; /* malloced strip length (used) */
195 p->strip = (sop *)calloc(p->ssize, sizeof(sop));
197 if (p->strip == NULL) {
400 assert(OP(p->strip[p->pbegin[backrefnum]]) != OLPAREN);
401 assert(OP(p->strip[p->pend[backrefnum]]) != ORPAREN);
599 assert(OP(p->strip
600 assert(OP(p->strip[p->pend[i]]) == ORPAREN);
984 sopno start, /* operand from here to end of strip */
1333 (void) memmove((char *)(p->strip + p->slen),
1334 (char *)(p->strip + start), (size_t)len*sizeof(sop));
1340 - doemit - emit a strip operator
1356 /* deal with undersized strip */
1362 p->strip[p->slen++] = SOP(op, opnd);
1366 - doinsert - insert a sop into the strip
1382 s = p->strip[sn];
1395 memmove((char *)&p->strip[pos+1], (char *)&p->strip[pos],
1397 p->strip[pos] = s;
1411 p->strip[pos] = OP(p->strip[pos]) | value;
1415 - enlarge - enlarge the strip
1430 sp = (sop *)realloc(p->strip, size*sizeof(sop));
1435 p->strip = sp;
1440 - stripsnug - compact the strip
1447 g->strip = p->strip;
1452 g->strip = (sop *)realloc((char *)p->strip, p->slen * sizeof(sop));
1453 if (g->strip == NULL) {
1455 g->strip = p->strip;
1483 /* find the longest OCHAR sequence in strip */
1485 scan = g->strip + 1;
1557 scan = g->strip + 1;