Searched refs:utf16_lo (Results 1 – 2 of 2) sorted by relevance
/PHP-7.3/ext/json/ |
H A D | json_scanner.re | 326 int utf32, utf16_hi, utf16_lo; 328 utf16_lo = php_json_ucs2_to_int_ex(s, 4, 7); 329 utf32 = ((utf16_lo & 0x3FF) << 10) + (utf16_hi & 0x3FF) + 0x10000;
|
H A D | json_scanner.c | 1353 int utf32, utf16_hi, utf16_lo; in php_json_scan() local 1355 utf16_lo = php_json_ucs2_to_int_ex(s, 4, 7); in php_json_scan() 1356 utf32 = ((utf16_lo & 0x3FF) << 10) + (utf16_hi & 0x3FF) + 0x10000; in php_json_scan() 1645 int utf32, utf16_hi, utf16_lo; in php_json_scan() local 1647 utf16_lo = php_json_ucs2_to_int_ex(s, 4, 7); in php_json_scan() 1648 utf32 = ((utf16_lo & 0x3FF) << 10) + (utf16_hi & 0x3FF) + 0x10000; in php_json_scan()
|
Completed in 8 milliseconds