Home | History | Annotate | Download | only in utils

Lines Matching refs:olen

34 	size_t olen;
37 olen = len * 4 / 3 + 4; /* 3-byte blocks to 4-byte */
38 olen += olen / 72; /* line feeds */
39 olen++; /* nul termination */
40 if (olen < len)
42 out = os_malloc(olen);
101 size_t i, count, olen;
118 olen = count / 4 * 3;
119 pos = out = os_malloc(olen);