Home | History | Annotate | Download | only in utils

Lines Matching defs:olen

28 	size_t olen;
33 olen = len * 4 / 3 + 4; /* 3-byte blocks to 4-byte */
35 olen += olen / 72; /* line feeds */
36 olen++; /* nul termination */
37 if (olen < len)
39 out = os_malloc(olen);
91 size_t i, count, olen;
110 olen = (count + extra_pad) / 4 * 3;
111 pos = out = os_malloc(olen);