Searched defs:imap_b64enc (Results 1 - 1 of 1) sorted by relevance

/dovecot/src/lib-imap/
H A Dimap-utf7.c8 static const char imap_b64enc[] = variable
36 str_append_c(dest, imap_b64enc[in[0] >> 2]);
37 str_append_c(dest, imap_b64enc[((in[0] & 3) << 4) |
39 str_append_c(dest, imap_b64enc[((in[1] & 0x0f) << 2) |
41 str_append_c(dest, imap_b64enc[in[2] & 0x3f]);
46 str_append_c(dest, imap_b64enc[in[0] >> 2]);
48 str_append_c(dest, imap_b64enc[(in[0] & 0x03) << 4]);
50 str_append_c(dest, imap_b64enc[((in[0] & 0x03) << 4) |
52 str_append_c(dest, imap_b64enc[(in[1] & 0x0f) << 2]);

Completed in 7 milliseconds