Home
last modified time | relevance | path

Searched refs:stripdata (Results 1 – 4 of 4) sorted by relevance

/netbsd/src/external/bsd/nvi/dist/regex/
Dregcomp.c73 RCHAR_T *stripdata; /* malloced stripdata */ member
232 p->stripdata = (RCHAR_T *)malloc(p->ssize * sizeof(RCHAR_T)); in regcomp()
233 if (p->stripdata == NULL) { in regcomp()
1461 (void) memcpy((char *)(p->stripdata + p->slen), in dupl()
1462 (char *)(p->stripdata + start), (size_t)len*sizeof(RCHAR_T)); in dupl()
1492 p->stripdata[p->slen] = opnd; in doemit()
1516 d = p->stripdata[sn]; in doinsert()
1531 memmove((char *)&p->stripdata[pos+1], (char *)&p->stripdata[pos], in doinsert()
1534 p->stripdata[pos] = d; in doinsert()
1549 p->stripdata[pos] = value; in dofwd()
[all …]
Dengine.c337 es += m->g->stripdata[es];
341 es += m->g->stripdata[es];
444 esub = ss + m->g->stripdata[ss] - 1;
454 esub += m->g->stripdata[esub];
472 i = m->g->stripdata[ss];
477 i = m->g->stripdata[ss];
526 d = m->g->stripdata[ss];
584 d = m->g->stripdata[ss];
589 d = m->g->stripdata[ss];
608 d = m->g->stripdata[ss];
[all …]
Dregfree.c78 if (g->stripdata != NULL) in regfree()
79 free((char *)g->stripdata); in regfree()
Dregex2.h141 RCHAR_T *stripdata; /* malloced area for stripdata */ member