Home
last modified time | relevance | path

Searched refs:hexchars (Results 1 – 3 of 3) sorted by relevance

/PHP-7.3/ext/standard/
H A Durl.c468 static unsigned char hexchars[] = "0123456789ABCDEF"; variable
495 to[1] = hexchars[c >> 4]; in php_url_encode()
496 to[2] = hexchars[c & 15]; in php_url_encode()
502 to[1] = hexchars[os_toascii[c] >> 4]; in php_url_encode()
503 to[2] = hexchars[os_toascii[c] & 15]; in php_url_encode()
600 ret[y++] = hexchars[(unsigned char) c >> 4];
601 ret[y] = hexchars[(unsigned char) c & 15];
605 ret[y++] = hexchars[os_toascii[(unsigned char) c] >> 4];
606 ret[y] = hexchars[os_toascii[(unsigned char) c] & 15];
H A Dformatted_print.c53 static const char hexchars[] = "0123456789abcdef"; variable
613 hexchars, expprec); in php_formatted_print()
620 hexchars, expprec); in php_formatted_print()
634 hexchars, expprec); in php_formatted_print()
/PHP-7.3/ext/filter/
H A Dsanitizing_filters.c56 static const unsigned char hexchars[] = "0123456789ABCDEF"; variable
96 *p++ = hexchars[(unsigned char) *s >> 4]; in php_filter_encode_url()
97 *p++ = hexchars[(unsigned char) *s & 15]; in php_filter_encode_url()

Completed in 14 milliseconds