Home | History | Annotate | Download | only in Support

Lines Matching defs: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) {
563 assert(OP(p->strip[p->pbegin[i]]) == OLPAREN);
564 assert(OP(p->strip[p->pend[i]]) == ORPAREN);
948 sopno start, /* operand from here to end of strip */
1295 (void) memmove((char *)(p->strip + p->slen),
1296 (char *)(p->strip + start), (size_t)len*sizeof(sop));
1302 - doemit - emit a strip operator
1318 /* deal with undersized strip */
1324 p->strip[p->slen++] = SOP(op, opnd);
1328 - doinsert - insert a sop into the strip
1344 s = p->strip[sn];
1357 memmove((char *)&p->strip[pos+1], (char *)&p->strip[pos],
1359 p->strip[pos] = s;
1373 p->strip[pos] = OP(p->strip[pos]) | value;
1377 - enlarge - enlarge the strip
1387 sp = (sop *)realloc(p->strip, size*sizeof(sop));
1392 p->strip = sp;
1397 - stripsnug - compact the strip
1403 g->strip = (sop *)realloc((char *)p->strip, p->slen * sizeof(sop));
1404 if (g->strip == NULL) {
1406 g->strip = p->strip;
1434 /* find the longest OCHAR sequence in strip */
1436 scan = g->strip + 1;
1508 scan = g->strip + 1;