Searched refs:oldsz (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/groff/src/libs/libgroff/
H A Dstring.cpp46 static char *sfree_alloc(char *ptr, int oldsz, int len, int *sizep) argument
48 if (oldsz >= len) {
49 *sizep = oldsz;
61 static char *srealloc(char *ptr, int oldsz, int oldlen, int newlen, int *sizep) argument
63 if (oldsz >= newlen) {
64 *sizep = oldsz;
/freebsd-11-stable/lib/libedit/
H A Dhist.c199 hist_enlargebuf(EditLine *el, size_t oldsz, size_t newsz) argument
207 (void) memset(&newbuf[oldsz], '\0', (newsz - oldsz) * sizeof(*newbuf));
/freebsd-11-stable/contrib/mdocml/
H A Droff.c3027 size_t oldsz, newsz, valsz; local
3038 oldsz = roff_getname(r, &end, ln, oldn - buf->buf);
3039 if (oldsz == 0)
3043 (int)oldsz, oldn);
3175 size_t oldsz, newsz; local
3182 oldsz = roff_getname(r, &newn, ln, pos);
3183 if (oldn[oldsz] == '\\' || *newn == '\0')
3192 value = roff_getstrn(r, oldn, oldsz, &deftype);
3196 roff_setstrn(&r->strtab, oldn, oldsz, NULL, 0, 0);
3205 roff_setstrn(&r->rentab, oldn, oldsz, NUL
[all...]

Completed in 102 milliseconds