Home | History | Annotate | Download | only in utils

Lines Matching refs:olen

40 	size_t olen;
43 olen = len * 4 / 3 + 4; /* 3-byte blocks to 4-byte */
44 olen += olen / 72; /* line feeds */
45 olen++; /* nul termination */
46 if (olen < len)
48 out = os_malloc(olen);
107 size_t i, count, olen;
123 olen = count / 4 * 3;
124 pos = out = os_malloc(olen);