Lines Matching refs:strip
59 sop *strip; /* malloced strip */
60 sopno ssize; /* malloced strip size (allocated) */
61 sopno slen; /* malloced strip length (used) */
179 p->strip = (sop *)calloc(p->ssize, sizeof(sop));
181 if (p->strip == NULL) {
555 assert(OP(p->strip[p->pbegin[i]]) == OLPAREN);
556 assert(OP(p->strip[p->pend[i]]) == ORPAREN);
940 sopno start, /* operand from here to end of strip */
1287 (void) memcpy((char *)(p->strip + p->slen),
1288 (char *)(p->strip + start), (size_t)len*sizeof(sop));
1294 - doemit - emit a strip operator
1310 /* deal with undersized strip */
1316 p->strip[p->slen++] = SOP(op, opnd);
1320 - doinsert - insert a sop into the strip
1336 s = p->strip[sn];
1349 memmove((char *)&p->strip[pos+1], (char *)&p->strip[pos],
1351 p->strip[pos] = s;
1365 p->strip[pos] = OP(p->strip[pos]) | value;
1369 - enlarge - enlarge the strip
1379 sp = (sop *)realloc(p->strip, size*sizeof(sop));
1384 p->strip = sp;
1389 - stripsnug - compact the strip
1395 g->strip = (sop *)realloc((char *)p->strip, p->slen * sizeof(sop));
1396 if (g->strip == NULL) {
1398 g->strip = p->strip;
1426 /* find the longest OCHAR sequence in strip */
1428 scan = g->strip + 1;
1500 scan = g->strip + 1;