Home
last modified time | relevance | path

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

/PHP-5.3/ext/standard/
H A Durl.c480 static unsigned char hexchars[] = "0123456789ABCDEF"; variable
505 to[1] = hexchars[c >> 4]; in php_url_encode()
506 to[2] = hexchars[c & 15]; in php_url_encode()
512 to[1] = hexchars[os_toascii[c] >> 4]; in php_url_encode()
513 to[2] = hexchars[os_toascii[c] & 15]; in php_url_encode()
611 str[y++] = hexchars[(unsigned char) s[x] >> 4];
612 str[y] = hexchars[(unsigned char) s[x] & 15];
616 str[y++] = hexchars[os_toascii[(unsigned char) s[x]] >> 4];
617 str[y] = hexchars[os_toascii[(unsigned char) s[x]] & 15];
H A Dformatted_print.c53 static char hexchars[] = "0123456789abcdef"; variable
619 hexchars, expprec); in php_formatted_print()
627 hexchars, expprec); in php_formatted_print()
643 hexchars, expprec); in php_formatted_print()
/PHP-5.3/ext/filter/
H A Dsanitizing_filters.c59 static const unsigned char hexchars[] = "0123456789ABCDEF"; variable
97 *p++ = hexchars[(unsigned char) *s >> 4]; in php_filter_encode_url()
98 *p++ = hexchars[(unsigned char) *s & 15]; in php_filter_encode_url()

Completed in 10 milliseconds