Lines Matching refs:strip
25 sop *strip; /* malloced strip */ member
129 p->strip = (sop *)malloc(p->ssize * sizeof(sop));
131 if (p->strip == NULL) {
517 assert(OP(p->strip[p->pbegin[i]]) == OLPAREN);
518 assert(OP(p->strip[p->pend[i]]) == ORPAREN);
1365 (void) memcpy((char *)(p->strip + p->slen),
1366 (char *)(p->strip + start), (size_t)len*sizeof(sop));
1398 p->strip[p->slen++] = SOP(op, opnd);
1423 s = p->strip[sn];
1436 memmove((char *)&p->strip[pos+1], (char *)&p->strip[pos],
1438 p->strip[pos] = s;
1456 p->strip[pos] = OP(p->strip[pos]) | value;
1473 sp = (sop *)realloc(p->strip, size*sizeof(sop));
1478 p->strip = sp;
1492 g->strip = (sop *)realloc((unsigned char *)p->strip, p->slen * sizeof(sop));
1493 if (g->strip == NULL) {
1495 g->strip = p->strip;
1528 scan = g->strip + 1;
1608 scan = g->strip + 1;