Lines Matching refs:out

175 	uint32_t *out = buf, *limit = buf + bufsize;  in mb_uuencode_to_wchar()  local
180 while (p < e && (limit - out) >= 3) { in mb_uuencode_to_wchar()
212 *out++ = ((a << 2) | (b >> 4)) & 0xFF; in mb_uuencode_to_wchar()
216 *out++ = ((b << 4) | (c >> 2)) & 0xFF; in mb_uuencode_to_wchar()
220 *out++ = ((c << 6) | d) & 0xFF; in mb_uuencode_to_wchar()
236 return out - buf; in mb_uuencode_to_wchar()
250 unsigned char *out, *limit; in mb_wchar_to_uuencode() local
251 MB_CONVERT_BUF_LOAD(buf, out, limit); in mb_wchar_to_uuencode()
257 …MB_CONVERT_BUF_ENSURE(buf, out, limit, ((len + 2) * 4 / 3) + (((len + 44) / 45) * 2) + (buf->state… in mb_wchar_to_uuencode()
268 out = mb_convert_buf_add(out, *s); in mb_wchar_to_uuencode()
270 out = mb_convert_buf_add(out, MIN(len, 45) + 32); in mb_wchar_to_uuencode()
276 buf->out--; in mb_wchar_to_uuencode()
286 unsigned char *len_byte = out - (bytes_encoded * 4 / 3) - 1; in mb_wchar_to_uuencode()
305out = mb_convert_buf_add3(out, uuencode_six_bits((w << 4) + ((w2 >> 4) & 0xF)), uuencode_six_bits(… in mb_wchar_to_uuencode()
313out = mb_convert_buf_add2(out, uuencode_six_bits((w2 << 2) + ((w3 >> 6) & 0x3)), uuencode_six_bits… in mb_wchar_to_uuencode()
326 out = mb_convert_buf_add(out, uuencode_six_bits((w >> 2) & 0x3F)); in mb_wchar_to_uuencode()
339out = mb_convert_buf_add2(out, uuencode_six_bits((w >> 2) & 0x3F), uuencode_six_bits(((w & 0x3) <<… in mb_wchar_to_uuencode()
350out = mb_convert_buf_add4(out, uuencode_six_bits((w >> 2) & 0x3F), uuencode_six_bits(((w & 0x3) <<… in mb_wchar_to_uuencode()
356 out = mb_convert_buf_add(out, '\n'); in mb_wchar_to_uuencode()
358 out = mb_convert_buf_add(out, MIN(len, 45) + 32); in mb_wchar_to_uuencode()
365 out = mb_convert_buf_add(out, '\n'); in mb_wchar_to_uuencode()
369 MB_CONVERT_BUF_STORE(buf, out, limit); in mb_wchar_to_uuencode()