Searched refs:n4 (Results 1 – 3 of 3) sorted by relevance
/PHP-8.3/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_utf7imap.c | 559 unsigned char n4 = decode_base64(*p++); in mb_utf7imap_to_wchar() local 560 if (is_base64_end(n4)) { 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() 577 out = handle_utf16_cp((n3 << 14) | (n4 << 8) | (n5 << 2) | ((n6 & 0x30) >> 4), out, &surrogate1); in mb_utf7imap_to_wchar() 784 unsigned char n4 = decode_base64(*p++); in mb_check_utf7imap() local 785 if (is_base64_end(n4)) { in mb_check_utf7imap() 786 if (!is_base64_end_valid(n4, n3 & 0x3, is_surrogate)) { in mb_check_utf7imap() 802 uint16_t cp2 = (n3 << 14) | (n4 << 8) | (n5 << 2) | ((n6 & 0x30) >> 4); in mb_check_utf7imap()
|
H A D | mbfilter_utf7.c | 547 unsigned char n4 = decode_base64(*p++); in mb_utf7_to_wchar() local 548 if (is_base64_end(n4)) { in mb_utf7_to_wchar() 549 out = handle_base64_end(n4, &p, out, &base64, n3 & 0x3, &surrogate1); in mb_utf7_to_wchar() 552 out = handle_base64_end(n4, &p, out, &base64, true, &surrogate1); in mb_utf7_to_wchar() 565 out = handle_utf16_cp((n3 << 14) | (n4 << 8) | (n5 << 2) | ((n6 & 0x30) >> 4), out, &surrogate1); in mb_utf7_to_wchar() 773 unsigned char n4 = decode_base64(*p++); in mb_check_utf7() local 774 if (is_base64_end(n4)) { in mb_check_utf7() 775 if (!is_base64_end_valid(n4, n3 & 0x3, is_surrogate)) { in mb_check_utf7() 791 uint16_t cp2 = (n3 << 14) | (n4 << 8) | (n5 << 2) | ((n6 & 0x30) >> 4); in mb_check_utf7()
|
/PHP-8.3/ext/oci8/tests/ |
H A D | bind_misccoltypes.phpt | 82 . " :n4, " 101 $n4 = "123456.023"; 115 oci_bind_by_name($s, ":n4", $n4);
|
Completed in 13 milliseconds