Home
last modified time | relevance | path

Searched refs:n6 (Results 1 – 2 of 2) sorted by relevance

/PHP-8.2/ext/mbstring/libmbfl/filters/
H A Dmbfilter_utf7imap.c572 unsigned char n6 = decode_base64(*p++); in mb_utf7imap_to_wchar() local
573 if (is_base64_end(n6)) { in mb_utf7imap_to_wchar()
574 out = handle_base64_end(n6, out, &base64, true, &surrogate1); in mb_utf7imap_to_wchar()
579 if ((n6 & 0xF) || surrogate1) in mb_utf7imap_to_wchar()
586 out = handle_base64_end(n7, out, &base64, n6 & 0xF, &surrogate1); in mb_utf7imap_to_wchar()
597 out = handle_utf16_cp((n6 << 12) | (n7 << 6) | n8, out, &surrogate1); in mb_utf7imap_to_wchar()
798 unsigned char n6 = decode_base64(*p++); in mb_check_utf7imap() local
799 if (is_base64_end(n6)) { in mb_check_utf7imap()
802 uint16_t cp2 = (n3 << 14) | (n4 << 8) | (n5 << 2) | ((n6 & 0x30) >> 4); in mb_check_utf7imap()
813 if (!is_base64_end_valid(n7, n6 & 0xF, is_surrogate)) { in mb_check_utf7imap()
[all …]
H A Dmbfilter_utf7.c558 unsigned char n6 = decode_base64(*p++); in mb_utf7_to_wchar() local
559 if (is_base64_end(n6)) { in mb_utf7_to_wchar()
560 out = handle_base64_end(n6, &p, out, &base64, true, &surrogate1); in mb_utf7_to_wchar()
565 if ((n6 & 0xF) || surrogate1) in mb_utf7_to_wchar()
572 out = handle_base64_end(n7, &p, out, &base64, n6 & 0xF, &surrogate1); in mb_utf7_to_wchar()
583 out = handle_utf16_cp((n6 << 12) | (n7 << 6) | n8, out, &surrogate1); in mb_utf7_to_wchar()
778 unsigned char n6 = decode_base64(*p++); in mb_check_utf7() local
779 if (is_base64_end(n6)) { in mb_check_utf7()
788 return !((n6 & 0xF) || is_surrogate); in mb_check_utf7()
793 if (!is_base64_end_valid(n7, n6 & 0xF, is_surrogate)) { in mb_check_utf7()
[all …]

Completed in 10 milliseconds