Home
last modified time | relevance | path

Searched refs:restlen (Results 1 – 2 of 2) sorted by relevance

/third_party/cups-filters/filter/foomatic-rip/
Dutil.c703 size_t restlen = ds->alloc - ds->len; in dstrcatf() local
707 srclen = vsnprintf(&ds->data[ds->len], restlen, src, ap); in dstrcatf()
710 if (srclen >= restlen) { in dstrcatf()
713 restlen = ds->alloc - ds->len; in dstrcatf()
714 } while (srclen >= restlen); in dstrcatf()
718 srclen = vsnprintf(&ds->data[ds->len], restlen, src, ap); in dstrcatf()
/third_party/mksh/
Dedit.c5676 size_t restlen; in x_operate_region() local
5705 restlen = xep - rgend; in x_operate_region()
5707 if (rgbeg + newlen + restlen >= xend) in x_operate_region()
5712 xep = xcp + restlen; in x_operate_region()
5713 memmove(xcp, rgend, restlen + /* NUL */ 1); in x_operate_region()