Lines Matching refs:ssize
66 sopno ssize; /* malloced strip size (allocated) */ member
173 (p)->ssize * sizeof(sop))
209 p->ssize = len/(size_t)2*(size_t)3 + (size_t)1; /* ugh */ in regcomp()
210 p->strip = (sop *)malloc(p->ssize * sizeof(sop)); in regcomp()
215 p->stripdata = (RCHAR_T *)malloc(p->ssize * sizeof(RCHAR_T)); in regcomp()
1352 if (!enlarge(p, p->ssize + len)) /* this many unexpected additions */ in dupl()
1354 assert(p->ssize >= p->slen + len); in dupl()
1381 if (p->slen >= p->ssize) in doemit()
1382 if (!enlarge(p, (p->ssize+1) / 2 * 3)) /* +50% */ in doemit()
1455 if (p->ssize >= size) in enlarge()
1458 osize = p->ssize; in enlarge()
1459 p->ssize = size; in enlarge()
1462 sp = realloc(p->strip, p->ssize * sizeof(sop)); in enlarge()
1466 dp = realloc(p->stripdata, p->ssize * sizeof(RCHAR_T)); in enlarge()
1469 p->ssize = osize; in enlarge()