Lines Matching refs:base64

498 static uint32_t* handle_base64_end(unsigned char n, uint32_t *out, bool *base64, bool abrupt, uint1…  in handle_base64_end()  argument
505 *base64 = false; in handle_base64_end()
522 bool base64 = *state & 1; in mb_utf7imap_to_wchar() local
526 if (base64) { in mb_utf7imap_to_wchar()
534 out = handle_base64_end(n1, out, &base64, false, &surrogate1); in mb_utf7imap_to_wchar()
537 out = handle_base64_end(n1, out, &base64, true, &surrogate1); in mb_utf7imap_to_wchar()
542 out = handle_base64_end(n2, out, &base64, true, &surrogate1); in mb_utf7imap_to_wchar()
547 out = handle_base64_end(n3, out, &base64, true, &surrogate1); in mb_utf7imap_to_wchar()
561 out = handle_base64_end(n4, out, &base64, n3 & 0x3, &surrogate1); in mb_utf7imap_to_wchar()
564 out = handle_base64_end(n4, out, &base64, true, &surrogate1); in mb_utf7imap_to_wchar()
569 out = handle_base64_end(n5, out, &base64, true, &surrogate1); in mb_utf7imap_to_wchar()
574 out = handle_base64_end(n6, out, &base64, true, &surrogate1); in mb_utf7imap_to_wchar()
586 out = handle_base64_end(n7, out, &base64, n6 & 0xF, &surrogate1); in mb_utf7imap_to_wchar()
589 out = handle_base64_end(n7, out, &base64, true, &surrogate1); in mb_utf7imap_to_wchar()
594 out = handle_base64_end(n8, out, &base64, true, &surrogate1); in mb_utf7imap_to_wchar()
606 base64 = true; in mb_utf7imap_to_wchar()
616 if (p == e && base64) { in mb_utf7imap_to_wchar()
622 *state = (surrogate1 << 1) | base64; in mb_utf7imap_to_wchar()
628 #define SAVE_CONVERSION_STATE() buf->state = (cache << 4) | (nbits << 1) | base64
629 #define RESTORE_CONVERSION_STATE() base64 = (buf->state & 1); nbits = (buf->state >> 1) & 0x7; cach…
650 bool base64; in mb_wchar_to_utf7imap() local
656 if (base64) { in mb_wchar_to_utf7imap()
662 base64 = false; in mb_wchar_to_utf7imap()
714 base64 = true; in mb_wchar_to_utf7imap()
724 if (base64) { in mb_wchar_to_utf7imap()
751 bool base64 = false; in mb_check_utf7imap() local
755 if (base64) { in mb_check_utf7imap()
762 base64 = false; in mb_check_utf7imap()
789 base64 = false; in mb_check_utf7imap()
816 base64 = false; in mb_check_utf7imap()
844 base64 = true; in mb_check_utf7imap()
853 return !base64; in mb_check_utf7imap()