Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/nvi/regex/
Dregcomp.c65 RCHAR_T *stripdata; /* malloced stripdata */ member
215 p->stripdata = (RCHAR_T *)malloc(p->ssize * sizeof(RCHAR_T)); in regcomp()
216 if (p->stripdata == NULL) { in regcomp()
1357 (void) memcpy((char *)(p->stripdata + p->slen), in dupl()
1358 (char *)(p->stripdata + start), (size_t)len*sizeof(RCHAR_T)); in dupl()
1387 p->stripdata[p->slen] = opnd; in doemit()
1410 d = p->stripdata[sn]; in doinsert()
1425 memmove((char *)&p->stripdata[pos+1], (char *)&p->stripdata[pos], in doinsert()
1428 p->stripdata[pos] = d; in doinsert()
1442 p->stripdata[pos] = value; in dofwd()
[all …]
Dregfree.c69 if (g->stripdata != NULL) in regfree()
70 free((char *)g->stripdata); in regfree()
Dengine.c317 es += m->g->stripdata[es]; in dissect()
321 es += m->g->stripdata[es]; in dissect()
423 esub = ss + m->g->stripdata[ss] - 1; in dissect()
433 esub += m->g->stripdata[esub]; in dissect()
451 i = m->g->stripdata[ss]; in dissect()
456 i = m->g->stripdata[ss]; in dissect()
498 d = m->g->stripdata[ss]; in backref()
556 d = m->g->stripdata[ss]; in backref()
561 d = m->g->stripdata[ss]; in backref()
580 d = m->g->stripdata[ss]; in backref()
[all …]
Dregex2.h138 RCHAR_T *stripdata; /* malloced area for stripdata */ member