Home
last modified time | relevance | path

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

/PHP-5.5/ext/standard/
H A Durl.c483 static unsigned char hexchars[] = "0123456789ABCDEF"; variable
508 to[1] = hexchars[c >> 4]; in php_url_encode()
509 to[2] = hexchars[c & 15]; in php_url_encode()
515 to[1] = hexchars[os_toascii[c] >> 4]; in php_url_encode()
516 to[2] = hexchars[os_toascii[c] & 15]; in php_url_encode()
614 str[y++] = hexchars[(unsigned char) s[x] >> 4];
615 str[y] = hexchars[(unsigned char) s[x] & 15];
619 str[y++] = hexchars[os_toascii[(unsigned char) s[x]] >> 4];
620 str[y] = hexchars[os_toascii[(unsigned char) s[x]] & 15];
H A Dformatted_print.c55 static char hexchars[] = "0123456789abcdef"; variable
633 hexchars, expprec); in php_formatted_print()
641 hexchars, expprec); in php_formatted_print()
657 hexchars, expprec); in php_formatted_print()
/PHP-5.5/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 14 milliseconds